Hi, I have been researching some drag and drop stuff with the radgrid and wanted to see if the concepts would work in Prometheus (since all the examples I have found on the forums have been for the old version).
Frequently in the code, the following javascript is used:
function RowCreated(rowObject)
{
...your code etc.
}
and the rowObject is an instance of the RadGridTableRow class if I am not mistaken.
My question is how do I access all the elements (especially ItemType and Control) that were in the RadGridTableRow class such as:
from the event handler as it works in Prometheus?
function RowCreated(sender, eventArgs)
{
...your code etc.
}
Thanks
Frequently in the code, the following javascript is used:
function RowCreated(rowObject)
{
...your code etc.
}
and the rowObject is an instance of the RadGridTableRow class if I am not mistaken.
My question is how do I access all the elements (especially ItemType and Control) that were in the RadGridTableRow class such as:
Type |
String |
ItemType |
String |
Owner |
RadGridTable Object |
Control |
HTML TableRow element |
Index |
Array |
Display |
Boolean |
RealIndex |
Integer |
KeyValues |
Array |
Expanded |
Boolean |
function RowCreated(sender, eventArgs)
{
...your code etc.
}
Thanks