:: Forum >>

Form Elements in XMLGrid

I need a way to call events from a Grid that is loaded from a XML doc. Ideally I'd have a radio button as the first column which has triggers an onclick event, however the XML doc is just the data and therefore all the cells are just data. Is there anyway to include a radio button for each row as it is rendered?

Thanks in advance.
Nic
Thursday, April 28, 2005
Hi Nic,

Try coding the HTML elements in your XML data. Here's an example of some XML with an onclick event handler on a radio button in the first column.

<row>
<col>&lt;input type=&quot;radio&quot; name=&quot;selectedReferral&quot; value=&quot;195684&quot; checked onclick=&quot;document.forms[1].action='/afs/TaskManagementSummary.do?subAction=Select&amp;updateClient=true&amp;referralNumber=195684';form.submit();&quot; &gt;</col>
<col tooltip="JOHNSON,YOLANDA NMN">JOHNSON,YOLANDA NMN</col>
<col tooltip=""></col>
<col tooltip="05/02/2005 14:29:00">05/02/2005&lt;br&gt;14:29:00</col>
</row>


Note that the HTML is encoded using HtmlEncoder.encode on the text just before each COL tag is written to the page.

Hope that helps.
Craig
Monday, May 2, 2005

This topic is archived.


Back to support forum

Forum search