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 scenario