or
MasterTable.clearSelectedItems();
MasterTable.set_currentPageIndex(NextPageIndex,
true);
MasterTable.rebind();
MasterTable.selectItem(0);
set_currentPageIndex, doesn't make the function
GridReport_PageIndexChanged
to be fired.
The rebind calls need data source and there I check the pageIndex, and I get the index before the change..
Do you have any idea what am I doing wrong?
How can I change the page index using java script?
Thanks.
RadAsyncUpload
at Client end only?
<rad:RadScriptManager ID="RadScriptManager1" runat="server"> |
</rad:RadScriptManager> |
<script type="text/javascript" > |
if (!progressArea.confirmed && |
args.get_progressData().RadUpload.RequestSize > 1000000) |
{ |
if (confirm("The total size of the selected files" + |
" is more than the limit." + |
" Do you want to cancel the upload?")) |
{ |
progressArea.cancelRequest(); |
} |
else |
{ |
progressArea.confirmed = "confirmed"; |
} |
} |
</script> |
<rad:RadProgressManager ID="RadProgressManager1" runat="server" /> |
<rad:RadUpload ID="rupDocTempFile" runat="server" Skin="Telerik"></rad:RadUpload> |
<rad:RadProgressArea ID="RadProgressArea1" runat="server" OnClientProgressUpdating="checkUploadedFilesSize"> |
</rad:RadProgressArea> |
<asp:Button ID="btnSave" runat="server" Text="SAVE" OnClick="btnSave_Click" AccessKey="v" ToolTip="Save(v)" /> |