1

編集モードで動作しているときに、通常モードで Javascript エラー (Object Expected) の問題が発生します。以下に示す最後の行で失敗しています。

 $(document).ready(function() { updateListItem(); });

      function updateListItem() {

        var siteUrl = ‘/sites2/sppwgrqy/DashboardTest/’; alert(‘now to get siteUrl’ + siteUrl );

        var clientContext = new SP.ClientContext(siteUrl ); //fails hereNo hidden components.

   }

編集モードで正常に動作します。jquery 1.8.3 にアップグレードしてから 1.9.0 に変更せずにアップグレードしました。

4

1 に答える 1

0

正直なところ、このアプローチが編集モードでのみ機能する理由がわかりませんでした。そのため、SPServices オプションを使用しました。

<script type="text/javascript">
//Wrapping your script in $(document).ready(function()means 
//that the calls will be made once the page is fully loaded,
// i.e., the page is "ready". 

$(document).ready(function() {
   updateReleaseSelected();
});

function updateReleaseSelected()
{    
   var relID = document.getElementById('ReleaseID').value;
   //  alert('RelID:' +  relID );
   updateItems(relID );
};

function updateItems(relID)
{  
  $().SPServices(
  {
      operation: 'UpdateListItems',
      webURL: '/sites2/sppwgrqy/DashboardTest/',
      listName: 'ReleaseSelected',
      updates: '<Batch OnError="Continue" PreCalc="True">' + 
         '<Method ID="1" Cmd="Update">' +
         '<Field Name="ReleaseValue">' + relID + '</Field>' +
         '<Field Name="ID">2</Field>' +
         '</Method>' +
         '</Batch>',
      completefunc: function(xData, Status)
      {
          //alert('successfully updated');      
      }
  });
}
</script>
于 2013-02-01T23:49:02.363 に答える