G
Guest
As far as I can see there is no way to add any attribute to an object it has
to be one that is part of the control collection.
In a datagrid I would like to be able to give each row a unique id
(id="tr"+count)
For instance in javascript you can do this:
var myTD = document.createElement("tr");
myTD.setAttribute("id","td"+count);
Does anyone know if anything like this is available in v2 or even is
available and its something i have missed.
to be one that is part of the control collection.
In a datagrid I would like to be able to give each row a unique id
(id="tr"+count)
For instance in javascript you can do this:
var myTD = document.createElement("tr");
myTD.setAttribute("id","td"+count);
Does anyone know if anything like this is available in v2 or even is
available and its something i have missed.