The documentation here:
https://www.smartclient.com/smartcli...imumCellHeight
... indicates that we should be able to use "minimumCellHeight" on a ListGrid to set the row height.
I have tried this and does not seem to work.
I also tried to change this Showcase example:
https://www.smartclient.com/smartcli...ultilineValues
... to use this slight change to the example provided:
ie. changed "cellHeight: 56. to minimumCellHeight: 100
That does not work either. Is there something I need to addd to this?
Also, is there a way to set the default minimum cell height globally for all ListGrids?
https://www.smartclient.com/smartcli...imumCellHeight
... indicates that we should be able to use "minimumCellHeight" on a ListGrid to set the row height.
I have tried this and does not seem to work.
I also tried to change this Showcase example:
https://www.smartclient.com/smartcli...ultilineValues
... to use this slight change to the example provided:
Code:
data: countryData, fields:[ {name:"countryName", title:"Country", width:120}, {name:"background", title:"Background"}, {name:"countryCode", title:"Flag", align:"center", width:50, type:"image", imageSize:24, imageURLPrefix:"flags/24/", imageURLSuffix:".png"} ], wrapCells: true, minimumCellHeight: 100 })
That does not work either. Is there something I need to addd to this?
Also, is there a way to set the default minimum cell height globally for all ListGrids?
Comment