I currently have a RadGrid that has two PushButtons...
| <telerik:GridButtonColumn CommandName="Complete_Select" ConfirmDialogType="RadWindow" |
| Text="Complete" UniqueName="completeSelect" CommandArgument="ID" AutoPostBackOnFilter="True" |
| ButtonType="PushButton" ButtonCssClass="btn" ItemStyle-Font-Bold="True"> |
| </telerik:GridButtonColumn> |
| <telerik:GridButtonColumn CommandName="Split_Select" ConfirmDialogType="RadWindow" |
| Text="Input to Appraisal" UniqueName="splitSelect" CommandArgument="ID" AutoPostBackOnFilter="True" |
| HeaderText="Appraisal Form" ButtonType="PushButton" ButtonCssClass="btn" ItemStyle-Font-Bold="True"> |
| </telerik:GridButtonColumn> |
Based on the "OnItemCommand" I run some codeBehind.
What I would like to do is make the PushButtons for that row disappear and replace them with text once the "completeSelect" has been pressed.
Any help would be appreciated.