|
版本: |
其它(帖子中说明) |
小版本号: |
3.9 |
|
|
数据库: |
MS SQLServer |
服务器操作系统: |
Windows |
应用服务器: |
Tomcat |
客户端操作系统: |
其它(帖子中说明) |
浏览器: |
Chrome |
|
|
本帖最后由 badnjcf 于 2021-8-12 09:42 编辑
grid 设列样式,多于30行后就看不到...效果应该是有的..
问题在于:height...height设为auto就可以...但是下滚动条就在很底下不好用.要滚好久才找到滚动条..
求解决:
30行后可以看到效果或有没办法height:auto下滚动条显示在上面..
Model.prototype.setNameCellColor = function(row){
var style;
// if(row.val('YOURCOLOR11').length > 3)
style = {borderBottom:'1px dashed #ff0000'};
// else
// style = {color:'#00ff00'};
var taskGrid1=this.comp('grid1');
taskGrid1.setCell(row.getID(),'REMARK',style);
taskGrid1.setCell(row.getID(),'QTY',style);
taskGrid1.setCell(row.getID(),'QTY4',style);
taskGrid1.setCell(row.getID(),'QTY5',style);
taskGrid1.setCell(row.getID(),'UNIT_PRICE',style);
taskGrid1.setCell(row.getID(),'P3',style);
taskGrid1.setCell(row.getID(),'STATUS_DESC',style);};
|
|