Categories | Question details Back To List | ||
how to give column span in the xml. We have a row which should display the text for the whole row not only to a column. How to do it in XML File Answer posted on Oct 09, 2007 12:46 You need to enable colspans in js code mygrid.enableCollSpan(true); and after that in XML you can use <row id="1"><cell>1</cell><cell>2</cell><cell>3</cell></row> <row id="2"><cell colspan="3">1 - 2 - 3 /cell><cell></cell><cell></cell></row> |