我需要获取数据并更改Telerik上所选列的单元格的颜色,但是遇到了麻烦。
我尝试使用事件args失败。我的代码在下面
<ClientSettings><ClientEvents OnRowClick="RowClick" /></ClientSettings>
<script>
function RowClick(sender, eventArgs) {
alert("Click on row instance: " + eventArgs.get_itemIndexHierarchical());
}
</script>```
I want to get the date from the select row and change the color as well, how can I do this?