Hi,
I have radtoolbar positioned in a Radgrid and generally it is functioning fine.
I have radtoolbar positioned in a Radgrid and generally it is functioning fine.
<CommandItemTemplate> |
<telerik:RadToolBar ID="RadToolBar1" OnButtonClick="RadToolBar1_ButtonClick" runat="server" OnClientButtonClicking="onToolBarClientButtonClicking"> |
<Items> |
<telerik:RadToolBarButton Text="Add Record" CommandName="InitInsert" ImageUrl="../../_images/icons/mini_icons/add.png"></telerik:RadToolBarButton> |
<telerik:RadToolBarButton Text="Edit Record" CommandName="EditSelected" ImageUrl="../../_Images/Icons/mini_icons/page_edit.png"></telerik:RadToolBarButton> |
<telerik:RadToolBarButton Text="Delete Record" CommandName="DeleteSelected" ImageUrl="../../_Images/Icons/mini_icons/page_delete.png"></telerik:RadToolBarButton> |
<telerik:RadToolBarButton Text="Refresh Records" CommandName="RebindGrid" ImageUrl="../../_images/icons/mini_icons/arrow_refresh.png"></telerik:RadToolBarButton> |
<telerik:RadToolBarButton Text="Export" CommandName="ExportToExcel" ImageUrl="../../_images/icons/mini_icons/page_excel.png"></telerik:RadToolBarButton> |
</Items> |
</telerik:RadToolBar> |
</CommandItemTemplate> |
However, I jave 2 questions;
1) Is it possible to disable the toolbar when a user is adding or editing a record
2) Can i disable Ajax just on the click of the Export button in the toolbar. I have been able to disable Ajax for the whole toolbar, but I would like to disable it just for one of the buttons within the toolbar i.e The export button.
Thanks a lot.