
Protected Sub docExplorer_ItemCommand(ByVal sender As Object, ByVal e As RadFileExplorerEventArgs) Handles docExplorer.ItemCommand Select Case e.Command Case "MoveFile" Dim oldExt As String = System.IO.Path.GetExtension(e.Path) Dim newExt As String = System.IO.Path.GetExtension(e.NewPath) If Not oldExt = newExt Then e.Cancel = True End If Exit Select End Select
i have RadAsyncUpload that upload multi files when files uploaded complete in
FileUploaded event should rebind radgrid which display the files
the problem is radgid1.Databind(); dosen't fire
here is my code
this ajaxmanger code
<telerik:RadAjaxManager ID="RadAjaxManagerFileUpload" runat="server">
<AjaxSettings >
<telerik:AjaxSetting AjaxControlID="tlkasycupMultipleFile">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="tlkasycupMultipleFile" />
<telerik:AjaxUpdatedControl ControlID="radgSupAcctFileUploads" />
</UpdatedControls>
</telerik:AjaxSetting>
<telerik:AjaxSetting AjaxControlID="radgSupAcctFileUploads">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="radgSupAcctFileUploads" />
</UpdatedControls>
</telerik:AjaxSetting>
</AjaxSettings>
</telerik:RadAjaxManager>
Here is code behind
protected void tlkasycupMultipleFile_FileUploaded(object sender, Telerik.Web.UI.FileUploadedEventArgs e)
{
//here code to save files in DB and its works fine
// after that bind the RadGrid
radgSupAcctFileUploads.DataSourceID = odsFileUploads.ID;
radgSupAcctFileUploads.DataBind();
}
This is my scenarioi have configured a radsplitter as below, on IE it is working on other browsers it is not (Mozilla, Opera, Safari, Chrome)
<telerik:RadSplitter runat="server" ID="RadSplitter1" Width="100%" BorderSize="0"
BorderStyle="None" PanesBorderSize="0" Height="100%" Orientation="Horizontal">
