Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
490
set row in xamlwebgrid to read only based on a cell's value
posted

Hi,

can you please tell me how can I set row in xamlwebgrid to  read only based on a cell's value.

I want to do something like this

foreach (Row row in dataGrid.Rows)
                    {

if(row.Cells["abc"].Value == "Yes")

set the only the selected row to read only

}

Thanks for the help.