中文字幕一区二区人妻电影,亚洲av无码一区二区乱子伦as ,亚洲精品无码永久在线观看,亚洲成aⅴ人片久青草影院按摩,亚洲黑人巨大videos

jEasyUI 表單的 CRUD 應用

當切換數(shù)據(jù)網格視圖(datagrid view)到 'detailview',用戶可以展開一行來顯示一些行的明細在行下面。這個功能允許您為防止在明細行面板(panel)中的編輯表單(form)提供一些合適的布局(layout)。在本教程中,我們使用數(shù)據(jù)網格(datagrid)組件來減小編輯表單(form)所占據(jù)空間。

步驟 1:在 HTML 標簽中定義數(shù)據(jù)網格(DataGrid)

<table id="dg" title="My Users" style="width:550px;height:250px"
????????url="get_users.php"
????????toolbar="#toolbar"
????????fitColumns="true" singleSelect="true">
????<thead>
????????<tr>
????????????<th field="firstname" width="50">First Name</th>
????????????<th field="lastname" width="50">Last Name</th>
????????????<th field="phone" width="50">Phone</th>
????????????<th field="email" width="50">Email</th>
????????</tr>
????</thead>
</table>
<div id="toolbar">
????<a href="#" class="easyui-linkbutton" iconCls="icon-add" plain="true" onclick="newItem()">New</a>
????<a href="#" class="easyui-linkbutton" iconCls="icon-remove" plain="true" onclick="destroyItem()">Destroy</a>
</div>

步驟 2:為數(shù)據(jù)網格(DataGrid)應用明細視圖

$('#dg').datagrid({
????view: detailview,
????detailFormatter:function(index,row){
????????return '<div class="ddv"></div>';
????},
????onExpandRow: function(index,row){
????????var ddv = $(this).datagrid('getRowDetail',index).find('div.ddv');
????????ddv.panel({
????????????border:false,
????????????cache:true,
????????????href:'show_form.php?index='+index,
????????????onLoad:function(){
????????????????$('#dg').datagrid('fixDetailRowHeight',index);
????????????????$('#dg').datagrid('selectRow',index);
????????????????$('#dg').datagrid('getRowDetail',index).find('form').form('load',row);
????????????}
????????});
????????$('#dg').datagrid('fixDetailRowHeight',index);
????}
});

為了為數(shù)據(jù)網格(DataGrid)應用明細視圖,在 html 頁面頭部引入 'datagrid-detailview.js' 文件。

我們使用 'detailFormatter' 函數(shù)來生成行明細內容。 在這種情況下,我們返回一個用于放置編輯表單(form)的空的 <div>。 當用戶點擊行展開按鈕('+')時,'onExpandRow' 事件將被觸發(fā),我們將通過 ajax 加載編輯表單(form)。 調用 'getRowDetail' 方法來得到行明細容器,所以我們能查找到行明細面板(panel)。 在行明細中創(chuàng)建面板(panel),加載從 'show_form.php' 返回的編輯表單(form)。

步驟 3:創(chuàng)建編輯表單(Form)

編輯表單(form)是從服務器加載的。

show_form.php
<form method="post">
????<table class="dv-table" style="width:100%;background:#fafafa;padding:5px;margin-top:5px;">
????????<tr>
????????????<td>First Name</td>
????????????<td><input name="firstname" class="easyui-validatebox" required="true"></input></td>
????????????<td>Last Name</td>
????????????<td><input name="lastname" class="easyui-validatebox" required="true"></input></td>
????????</tr>
????????<tr>
????????????<td>Phone</td>
????????????<td><input name="phone"></input></td>
????????????<td>Email</td>
????????????<td><input name="email" class="easyui-validatebox" validType="email"></input></td>
????????</tr>
????</table>
????<div style="padding:5px 0;text-align:right;padding-right:30px">
????????<a href="#" class="easyui-linkbutton" iconCls="icon-save" plain="true" onclick="saveItem(&lt;?php echo $_REQUEST['index'];?&gt;)">Save</a>
????????<a href="#" class="easyui-linkbutton" iconCls="icon-cancel" plain="true" onclick="cancelItem(&lt;?php echo $_REQUEST['index'];?&gt;)">Cancel</a>
????</div>
</form>

步驟 4:保存或取消編輯

調用 'saveItem' 函數(shù)來保存一個用戶或者調用 'cancelItem' 函數(shù)來取消編輯。

function saveItem(index){
????var row = $('#dg').datagrid('getRows')[index];
????var url = row.isNewRecord ? 'save_user.php' : 'update_user.php?id='+row.id;
????$('#dg').datagrid('getRowDetail',index).find('form').form('submit',{
????????url: url,
????????onSubmit: function(){
????????????return $(this).form('validate');
????????},
????????success: function(data){
????????????data = eval('('+data+')');
????????????data.isNewRecord = false;
????????????$('#dg').datagrid('collapseRow',index);
????????????$('#dg').datagrid('updateRow',{
????????????????index: index,
????????????????row: data
????????????});
????????}
????});
}

決定要回傳哪一個 URL,然后查找表單(form)對象,并調用 'submit' 方法來提交表單(form)數(shù)據(jù)。當保存數(shù)據(jù)成功時,折疊并更新行數(shù)據(jù)。

function cancelItem(index){
????var row = $('#dg').datagrid('getRows')[index];
????if (row.isNewRecord){
????????$('#dg').datagrid('deleteRow',index);
????} else {
????????$('#dg').datagrid('collapseRow',index);
????}
}

當取消編輯動作時,如果該行是新行而且還沒有保存,直接刪除該行,否則折疊該行。