how to set cell height
I have a project to need to set cell can hold three lines of data at most
how should I set the height of the cell?
You can use multi line mode:
mygrid.enableMultilin(true);
In such mode row height will automatically adjust depending on content of the cell.
Also you can insert any html into the cell:
<![CDATA[
line one
line two
]]>Thank you for your answer
According to your answer, my problem has already been solved.