Hi, I have a grid in which the first column is of type checkbox and the next column is of type buttons.
What I'm trying to do is enabling the buttons when and only when the checkbox for that row is checked.
I am able to get the event for the checkbox update and check the value of it but I can't seem to find a way to diable the button for that specific row.
I just want to disbale one button individually depending on the value of the checkbox in that row.
Any help would be greatly appreciated.
I have looked in
(http://devcenter.infragistics.com/Support/KnowledgeBaseArticle.Aspx?ArticleID=6156)
here and there is no "actvation" property in this grid so please help.
BTW. This is a web-based.. I am not sure if that makes a difference and it's the reason that the "activation" porperty doesn't appear.
Are you trying to do this server side or client side?
client side you could use this to hide the button:
cell.getElement.style.display='none';
server side you could do something similar to this to hide the button:
grid.Rows[0].Cells[0].Style.CustomRules="display='none';"
Server side.
So hiding it is the only way? Can't disable the cell itself so the button does appear but is unsuable?