Commit d8cad384 authored by Medicean's avatar Medicean

db(php mysql): 调整返回结果集长度

parent 16649927
...@@ -1379,8 +1379,10 @@ class PHP { ...@@ -1379,8 +1379,10 @@ class PHP {
const grid = this.manager.result.layout.attachGrid(); const grid = this.manager.result.layout.attachGrid();
grid.clearAll(); grid.clearAll();
grid.setHeader(header_arr.join(',').replace(/,$/, '')); grid.setHeader(header_arr.join(',').replace(/,$/, ''));
grid.setColTypes("txt,".repeat(header_arr.length).replace(/,$/,''));
grid.setColSorting(('str,'.repeat(header_arr.length)).replace(/,$/, '')); grid.setColSorting(('str,'.repeat(header_arr.length)).replace(/,$/, ''));
grid.setInitWidths('*'); grid.setColumnMinWidth(100, header_arr.length-1);
grid.setInitWidths(("100,".repeat(header_arr.length-1)) + "*");
grid.setEditable(true); grid.setEditable(true);
grid.init(); grid.init();
// 添加数据 // 添加数据
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment