jquery easyui中treegrid用法的簡單一實例

來源:互聯網
上載者:User

項目需求如,在服務端返回的json資料中,要經過JS處理,添加複選框,並且複選框需響應JS操作。

在easyui 的treegrid中,沒有找到現成的外掛程式,自己需要修改整理,代碼如下
複製代碼 代碼如下:
<table class="easyui-treegrid" style="width:700px;height:250px"  url='control_node_json?group_id=$info[id]&access_node=$_REQUEST[access_node]"' idField="id" treeField="title" fit="true" toolbar="#control_node_toolbar_{$info[id]}">
        <thead> 
          <tr>
            <th field="title" width="200px" data-options="formatter:title_formatter">名稱</th>
            <th field="name" width="200px">節點</th>
            <th field="status" width="50px">狀態</th>
            <th field="remark">備忘</th>
          </tr>
          <thead> 
        </table>
        <div id="control_node_toolbar_{$info[id]}">
            <a href="javascript:alert('test');" class="easyui-linkbutton" iconCls="icon-add" plain="true">控制</a>
        </div>

上面是整個HTML代碼,其中在easyui的好處是,JS調用的各種屬性都可以直接寫在table的屬性裡,直觀易懂。接下來就把checkbox加進去。
複製代碼 代碼如下:
//對名稱列資料進行格式華
var access_node='{$_REQUEST[access_node]}'.split(',');
function title_formatter(value,node){ 
 var content='<input name="set_power" id="set_power_'+node.id+'" onclick="set_power_status('+node.id+')" class="set_power_status" type="checkbox" value="'+node.id+'" />'+value;
 return content;
}
function set_power_status(menu_id){
 alert('要調用的函數和操作方法寫這裡');
}

其中用checkbox用$(set_power_1")這種方法是響應不了的,估計是因為easyui經過處理的原因。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.