I have the following RadGrid and I am Inserting new records inline.
My problem is that once the grid is in Insert Mode, I need to create a Confirmation Dialog on the Insert Button that is generated by Telerik. How do I find that control and add the javascript?
Thanks in advance.
Chase
| <telerik:RadGrid AllowAutomaticInserts="false" |
| OnInsertCommand="RadGrid1_ItemInserted" |
| OnRowDrop="RadGrid1_RowDrop" |
| OnNeedDataSource="RadGrid1_NeedDataSource" |
| ID="RadGrid1" |
| runat="server" |
| AutoGenerateColumns="False" |
| Skin="Telerik" |
| AllowPaging="False" |
| GridLines="None"> |
| <MasterTableView TableLayout="Auto" |
| DataKeyNames="ID" |
| CommandItemDisplay="TopAndBottom"> |
| <Columns> |
| <telerik:GridBoundColumn |
| DataField="Category" |
| HeaderText="Category" |
| UniqueName="Category" /> |
| </Columns> |
| </MasterTableView> |
| <ClientSettings AllowRowsDragDrop="True"> |
| <Selecting AllowRowSelect="True" /> |
| </ClientSettings> |
| </telerik:RadGrid> |
My problem is that once the grid is in Insert Mode, I need to create a Confirmation Dialog on the Insert Button that is generated by Telerik. How do I find that control and add the javascript?
Thanks in advance.
Chase