Hi -
Wonder if someone know how to extract the value from a child control of a TemplateDataField. This must be able to be performed at client-side.
Thanks for any help.
Hi epimienta,
Once you have access to the cell JavaScript object, you can get its JavaScript html element and find your control within that.
var cellObj = cell.get_element();
Use cellObj.firstChild or lastChild or search childNodes. The exact code would depend on the html of the template control. Let us know if you need help with that.
regards,
David Young