If I want to get the current position of radwindows, which could be draged and droped anywhere in the window , I add the onclientdragend in radwindowmanager like following.
<telerik:RadWindowManager ID="RadWindowManager1" runat="server" Skin="Mac" | ||||||||
VisibleStatusbar="False" VisibleOnPageLoad="True" | ||||||||
onclientdragend="SaveState" > | ||||||||
</telerik:RadWindowManager> then I implenent the savestate function as following.
My question is how to write the clientSaveState.PerformCallback ? how does every radwindow under the radwindow manager update its bounds.x and bounds.y immediately after moving? Thanks |