Start Building Professional
Web Apps Today


 
Categories Question details Back To List
Question  posted by Steve Wyatt on Jan 28, 2008 11:41
open dhtmlx forum
Grid footer

Using the xml below to attach a footer to a 7 column grid, but only the column with the link displays. Is this the correct approach?

<call command='attachFooter'>
<param><![CDATA[<a href='http://www.dhtmlx.com'>DHTMLX</a>]]>,#cspan,#cspan,#cspan,#cspan,#cspan,#cspan</param>    <param>text-align:left,text-align:left,text-align:left,text-align:left,text-align:left,text-align:left,text-align:left</param>
</call>
Answer posted by Support on Jan 29, 2008 01:48
You need to enclose all content of param tag in CDATA section

<call command='attachFooter'>
    <param><![CDATA[<a href='http://www.dhtmlx.com'>DHTMLX</a>,#cspan,#cspan,#cspan,#cspan,#cspan,#cspan]]></param>   
    <param>text-align:left,text-align:left,text-align:left,text-align:left,text-align:left,text-align:left,text-align:left</param>
</call>