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
340
display button in a column when condition is met
posted

I have filled the ultrgrid with 3 columns.

sno    value   button

1          a        Accept

2           b          

3           a         Accept

 

If value is a in a row i want to display the accept button otherwise null should be there in that row from button column.

 

Thanks,

swetha.

Parents
  • 340
    posted

    Sorry i have solve it,

    In initialiserow event,

       If e.Row.Cells("column_name").Value = "a Then

                e.Row.Cells("column_name").Hidden = True

            End If

     

    Thanks

Reply Children
No Data