Hello ,
i have a radtagcloud item , i want use it like shopping - basket.
user select a row from RadGrid in Client , and i want to add "ID" value on grid into RadTagCloud via Java Script. How can i do that ?
here is the code below :
function
OnRowSelected(sender, eventArgs) {
// add into radtagcloud
var colIndex = 0;
var rowIndex = eventArgs._itemIndexHierarchical;
if (rowIndex > -1) {
var value = sender._selection._masterTable.children[rowIndex].cells[colIndex].innerText;
if (value != null) {
// add this item into cloud.
??
}
}
}
}
thanks