| <telerik:GridTemplateColumn HeaderText="Campus"> |
| <ItemTemplate> |
| <%#Eval("Campus") %> |
| </ItemTemplate> |
| <EditItemTemplate> |
| <telerik:RadComboBox ID="CampusCombo" runat="server" DataSourceID="CampusData" |
| DataTextField="CampusName" DataValueField="CampusName" |
| Selectedvalue='<%#Bind("Campus")%>'> |
| </telerik:RadComboBox> |
| </EditItemTemplate> |
| </telerik:GridTemplateColumn> |
Hi ,
We are using RadTabStrip and RadMultiPage to show 9 tabs. All tabs are user controls. Whenever user clicks any tab , the request should go to the database to fetch the data. All the tab should be loaded on demand and with partial post back. Could you pls let me know how to write the code for this. If would be great help if you could send me some sample code.I'm new to this telerik controls.
I am working on an AJAX page with two radgrid controls.
The update response times for the two controls are very different, one short , one very long.
No matter how I hook up grids the ajax update of both controls is determined by the longest delay.
I have the controls on two separate RadAjaxPanels and I have created two buttons to use javascript to separately fire an ajaxManager.ajaxRequestWithTarget for one or the other RadAjaxPanel.
ie button 1 fires panel 1 holding grid 1
button 2 fires panel 2 holding grid 2
No matter which panel is fired, both data requests are made and the page waits for the longest to complete before updating anything. Oddly, only the appropriate grid actually updates, but the data for the other grid must be cached, since clicking the other button updates the page without another data request.
I need these controls to be truly independent, or else why bother with Ajax at all.
Does anyone have an example of page where the controls are truly independent?
| <asp:CheckBox ID="CheckBoxCreateDefaultPage" runat="server" Checked="true" onclick="CheckCreateDefaultPage(this)" /> |
| <telerik:RadColorPicker ID="RadColorPicker1" runat="server" ShowIcon="true" ShowEmptyColor="false" /> |
| function CheckCreateDefaultPage(sender) { |
| var state = sender.checked; |
| var colorPicker = $find("<%= RadColorPicker1.ClientID %>"); |
| colorPicker.set_enabled(!state); |
| } |