Commit b4870101 authored by Medicean's avatar Medicean

db: 调整 asp, custom 返回结果显示

parent d8cad384
...@@ -525,8 +525,10 @@ class ASP { ...@@ -525,8 +525,10 @@ class ASP {
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();
// 添加数据 // 添加数据
......
...@@ -525,8 +525,10 @@ class CUSTOM { ...@@ -525,8 +525,10 @@ class CUSTOM {
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