3

我想知道如何重置(清除)RadAsyncUpload 并使组件保持初始状态

在代码后面提交之后呢?


我的 aspx ::

<telerik:RadAsyncUpload runat="server" ID="rada_attach" OnClientFileUploaded="onClientFileUploaded"
MultipleFileSelection="Disabled" InitialFileInputsCount="1" MaxFileInputsCount="1"
Width="100%" />
4

2 回答 2

3

尝试将下面的代码添加到提交按钮的 Click 事件处理程序(未测试)

ScriptManager.RegisterStartupScript(this, this.GetType(), "clearUpload", String.Format("$find('{0}').deleteAllFileInputs()", rada_attach.ClientID), true);
于 2013-02-25T12:51:39.917 回答
2

您想在上传后清除项目列表吗?如果是的话,根据这个链接你可以这样做:

<script type="text/javascript">
   function clientFileUploaded(sender, args) {
       var count = sender._getRowCount();

       if (count > 2) {
           Array.removeAt(sender._uploadedFiles, 0);
           sender.deleteFileInputAt(0);
           sender.updateClientState();
       }
   }

于 2013-02-25T12:50:25.033 回答