• <menu id="w2i4a"></menu>
  • logo jQuery EasyUI使用教程

    文檔首頁>>jQuery EasyUI使用教程>>jQuery EasyUI使用教程:數(shù)據(jù)網(wǎng)格中的列運算

    jQuery EasyUI使用教程:數(shù)據(jù)網(wǎng)格中的列運算


    Kendo UI for jQuery——創(chuàng)建現(xiàn)代Web應(yīng)用程序的最完整UI庫!查看詳情>>>

    <jQuery EasyUI最新試用版免費下載>

    在本教程中,您將學習如何在可編輯的數(shù)據(jù)網(wǎng)格中包含一個運算列。計算列一般含有一個或多個其他列計算的值。

    數(shù)據(jù)網(wǎng)格中的列運算

    首先創(chuàng)建可編輯的數(shù)據(jù)網(wǎng)格。在這里我們創(chuàng)建了一些可編輯的列,'listprice'、'amount'和'unitcost'列被定義為numberbox編輯類型。運算列是'unitcost'字段,將是listprice乘以amount列的結(jié)果。

    <table id="tt" style="width:600px;height:auto"
    title="Editable DataGrid with Calculated Column" iconCls="icon-edit" singleSelect="true"
    idField="itemid" url="data/datagrid_data.json">
    <thead>
    <tr>
    <th field="itemid" width="80">Item ID</th>
    <th field="listprice" width="80" align="right" editor="{type:'numberbox',options:{precision:1}}">List Price</th>
    <th field="amount" width="80" align="right" editor="{type:'numberbox',options:{precision:0}}">Amount</th>
    <th field="unitcost" width="80" align="right" editor="numberbox">Unit Cost</th>
    <th field="attr1" width="150" editor="text">Attribute</th>
    <th field="status" width="60" align="center" editor="{type:'checkbox',options:{on:'P',off:''}}">Status</th>
    </tr>
    </thead>
    </table>

    當用戶點擊一行時,我們開始一個編輯操作。

    var lastIndex;
    $('#tt').datagrid({
    onClickRow:function(rowIndex){
    if (lastIndex != rowIndex){
    $(this).datagrid('endEdit', lastIndex);
    $(this).datagrid('beginEdit', rowIndex);
    }
    lastIndex = rowIndex;
    },
    onBeginEdit:function(rowIndex){
    var editors = $('#tt').datagrid('getEditors', rowIndex);
    var n1 = $(editors[0].target);
    var n2 = $(editors[1].target);
    var n3 = $(editors[2].target);
    n1.add(n2).numberbox({
    onChange:function(){
    var cost = n1.numberbox('getValue')*n2.numberbox('getValue');
    n3.numberbox('setValue',cost);
    }
    })
    }
    });

    下載EasyUI示例:easyui-datagrid-demo.zip

    購買jQuery EasyUI最新正版授權(quán)!詳情請"咨詢在線客服"
    掃碼咨詢


    添加微信 立即咨詢

    電話咨詢

    客服熱線
    023-68661681

    TOP
    三级成人熟女影院,欧美午夜成人精品视频,亚洲国产成人乱色在线观看,色中色成人论坛 (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })();