or
RadGrid1.DataBind()
RadGrid1.ExportSettings.OpenInNewWindow =
True
RadGrid1.ExportSettings.ExportOnlyData =
False
RadGrid1.ExportSettings.HideStructureColumns =
False
RadGrid1.ExportSettings.IgnorePaging =
True
RadGrid1.MasterTableView.ExportToExcel()
<
telerik:RadWindow
ID
=
"Details"
runat
=
"server"
Title
=
"Details"
Width
=
"450"
Height
=
"536"
VisibleOnPageLoad
=
"false"
Behaviors
=
"Move, Close"
Left
=
"580"
EnableShadow
=
"true"
RegisterWithScriptManager
=
"false"
>
<
ContentTemplate
>
<
telerik:RadTextBox
ID
=
"Test"
runat
=
"server"
>
</
telerik:RadTextBox
>
</
ContentTemplate
>
</
telerik:RadWindow
>
function refreshRadGrid() {
var masterTable = $find("<%=RadGrid2.ClientID%>").get_masterTableView();
masterTable.rebind();
}
Protected
Sub
RadGrid2_NeedDataSource(sender
As
Object
, e
As
Telerik.Web.UI.GridNeedDataSourceEventArgs)
Handles
RadGrid2.NeedDataSource
' MATERIALS FOR DAYSHEET
Dim
dt
As
New
DataTable
If
lblHeaderID.Text <> 0
Then
Dim
itm
As
New
dbrcOrdItems(Session(
"ConnectionString"
))
Dim
HeaderID
As
Integer
= lblHeaderID.Text
dt = itm.ListforDaySheet(HeaderID)
RadGrid2.DataSource = dt
End
If
RadGrid2.DataSource = dt
End
Sub
<
telerik:RadWindowManager
ID
=
"RadWindowManager1"
runat
=
"server"
ShowContentDuringLoad
=
"false"
Width
=
"638px"
Height
=
"323px"
Top
=
"80px"
Left
=
"80px"
VisibleStatusbar
=
"False"
BorderStyle
=
"None"
BorderWidth
=
"1px"
InitialBehaviors
=
"Close, Move"
Animation
=
"None"
Behaviors
=
"Close, Move"
EnableViewState
=
"false"
InitialBehavior
=
"Close"
>
</
telerik:RadWindowManager
>
//Show RadWindow with
function
ShowWindow(Document) {
//Popup Window
top.radopen(Document,
"RadWindow1"
);
//Window within the Iframe
//window.radopen(Document, "RadWindow1");
return
false
;
}
With the RadFileExplorer, we are seeking a way to multi select files, click a context item, then fire a client side event with the itemPaths for the selected files.
I can add a RadMenuItem to the context menu, and fire an event client side event. However it only fires once, and passes in the first selected file itemPath.
Thanks
-Matt