protected
void btnExportExcel_Click(object sender, EventArgs e)
{
grvAnimalDetl.ExportSettings.ExportOnlyData =
true;
grvAnimalDetl.ExportSettings.IgnorePaging =
true;
grvAnimalDetl.ExportSettings.OpenInNewWindow =
true;
grvAnimalDetl.MasterTableView.ExportToExcel();
}
| function updateGrid(result) { |
| tableView.set_dataSource(result.Data); |
| tableView.set_virtualItemCount(result.rowCount); |
| tableView.dataBind(); |
| } |
Hi, I followed the instruction / tutorial on this page http://www.telerik.com/help/aspnet/grid/ongroupexpanded.html but I am not able to get it work. rowObj.ItemIndex is returning "undefined". Any idea?
This event is fired after a group is expanded and when MasterTableView.GroupLoadMode="client".
|
Fired by |
RadGrid |
|
Arguments |
N/A |
|
Can be canceled |
No |
|
Examples |
ascx/aspx <ClientEvents OnGroupExpanded="GroupExpanded" <script> function GroupExpanded(rowObj) { alert("Expanded row with index: " + rowObj.ItemIndex); } </script> |
| <link href="Styles/layout.css" rel="Stylesheet" type="text/css" /> |
| <!--[if lte IE 7]> |
| <link href="Styles/ie7.css" media="screen" rel="Stylesheet" type="text/css" /> |
| <![endif]--> |
| <!--[if IE 6]> |
| <link href="Styles/ie6.css" media="screen" rel="Stylesheet" type="text/css" /> |
| <![endif]--> |

Hi using the example http://demos.telerik.com/aspnet-ajax/combobox/examples/functionality/multiplecomboboxes/defaultcs.aspx I want to extend this to about 10 combbox's where the value of each preceding box is populated based on parameters from all other preceding selections (the example just uses one parameter). This way my 10th box will be populated based on the 9 preceding selections. How would I pass each parameter to the next box?
Any pointers would be great!
Is it possible to deploy two Web applications using different Telerik.Web.UI.dll versions?
I'd use 2008-Q3 and 2009-Q1 installed on server GAC.
I'm still migrating to Telerik an application, because an user control doesn't work properly. Meanwhile I'm using RadScriptManager as a workaround, which seems not to work on 2009-Q1.
| <telerik:RadAjaxManager ID="RadAjaxManager1" runat="server"> |
| <AjaxSettings> |
| <telerik:AjaxSetting AjaxControlID="PanelBar"> |
| <UpdatedControls> |
| <telerik:AjaxUpdatedControl ControlID="PanelBar" /> |
| <telerik:AjaxUpdatedControl ControlID="litContent" /> |
| <telerik:AjaxUpdatedControl ControlID="litComment" /> |
| </UpdatedControls> |
| </telerik:AjaxSetting> |
| </AjaxSettings> |
| </telerik:RadAjaxManager> |