- 注册时间
- 2012-9-28
- 最后登录
- 2014-1-3
- 阅读权限
- 10
- 积分
- 608
- 精华
- 0
- 帖子
- 155

|
<html>
<body>
<div id="detail" showFooter="false" sortMode="client" class="mini-datagrid" style="width: 100%;height: 100%;" >
<div property="columns">
<div width="100" name="itemName" field="itemName" headerAlign="center" allowSort="true" header="品名">
<input property="editor" class="mini-textbox" style="width:100%;"/>
</div>
<div width="100" name="oldPrice" field="oldPrice" headerAlign="center" allowSort="true" header="原进价">
<input property="editor" class="mini-textbox" style="width:100%;"/>
</div>
</div>
</div>
<script type="text/javascript">
mini.parse();
var detail = mini.get("detail");
detail.on("selectionchanged",function(e){
detail.commitEdit();
detail.beginEditRow(e.selected);
})
detail.addRow({},0)
detail.addRow({},0)
detail.addRow({},0)
detail.addRow({},0)
</script>
</body>
</html>
|
|