UltraWebGrid如果有嵌套子表,且子表内容里面存在中文字符,会导致其内置的ajax刷新数据失效,请问有其他的解决办法没?

解决方案 »

  1.   

    刚学了点ajax的东西,到了这里以后才发现什么都不是帮不上什么忙
    给楼主顶一个
      

  2.   

    文件->高级保存->UTF-8带签名 试试
      

  3.   

    楼主 我想获取子接点选择行数据怎么获取呀 劳驾了
     <script id="igClientScript" type="text/javascript">
    <!--function UltraWebGrid1_InitializeLayoutHandler(gridName){
    //Add code to handle your event here.
    _grid = igtbl_getGridById(gridName);
    }function UltraWebGrid1_RowSelectorClickHandler(gridName, rowId, button){
    //Add code to handle your event here.
    var selectedRow = null;               
      selectedRow = _grid.getActiveRow();
      if (selectedRow == null)
      {
         // alert("请选择行");
         // oEvent.cancel=true;
      }
      else
      {
      document.getElementById("city").value=selectedRow.getCell(2).getValue().toString();
      alert(selectedRow.getCell(2).getValue().toString());
      }
    }
    // -->
    </script> 这个老师获取的父接点数据 给我看看谢谢