Dear All/Support Team,
I have requirement to display record in a telerik grid with one column as View with Icon. on click view icon it open the edit form and render the required control with two button as per the code given below. ie Inser/Update and Cancel button.
Now I am bale to either disable and enable the control on load, but I want to enable all the control in edit form on clicking the buttons(ie adding Edit button in the form). if I have to add Edit button as per my requirement in the following code, how to enable all control with client side code and avoid server side post back. How Edit button command event is set to none instead of CommandName='<%# (Container is GridEditFormInsertItem) ? "PerformInsert" : "Update" %>' or
Kindly guide me on the same
With Regards
Palanivelrajan
I have requirement to display record in a telerik grid with one column as View with Icon. on click view icon it open the edit form and render the required control with two button as per the code given below. ie Inser/Update and Cancel button.
Now I am bale to either disable and enable the control on load, but I want to enable all the control in edit form on clicking the buttons(ie adding Edit button in the form). if I have to add Edit button as per my requirement in the following code, how to enable all control with client side code and avoid server side post back. How Edit button command event is set to none instead of CommandName='<%# (Container is GridEditFormInsertItem) ? "PerformInsert" : "Update" %>' or
/ CommandName="Cancel"<td align="left" colspan="3"> <asp:ImageButton ID="btnInsert" runat="server" CommandName='<%# (Container is GridEditFormInsertItem) ? "PerformInsert" : "Update" %>' ImageUrl="~/Images/Update.gif" Text='<%# (Container is GridEditFormInsertItem) ? "Insert" : "Update" %>' ToolTip="Save To Grid" ValidationGroup="ValDecision" /> <asp:ImageButton ID="btnCancel" runat="server" CausesValidation="False" CommandName="Cancel" ImageUrl="~/Images/Cancel.gif" ToolTip="Cancel" /></td>Kindly guide me on the same
With Regards
Palanivelrajan