Hello Angel,
in my webdatagrid on page load how to set particular rows read only and based on dropdown values how to set that read only rows false.
i am trying to do this in cell entering edit mode client side event but it sets all rows read only.
please tell me how to do..
Thanks
Reshma
hey Reshma,
could you show me how you're trying to do that right now ?
the following forum post could be useful for you:
http://es.infragistics.com/community/forums/t/59560.aspx
Angel
hey Angel,
if (sender.get_rows().get_row(rowIdx).get_cellByColumnKey("colservice").get_value() == "2")
{
eventArgs.set_cancel(true)
}
by this way i am setting rows read only but it by this all rows are read only