or
Hi,
I am using a custom Inline Edit in the scheduler. Iam able to open the Inline pop-up window add the required information and whenclicking on Insert (Button), it saves the information to the database but doesnot close the pop-up window and refresh the scheduler. I am doing this usingthe onappoinmentcommand event.
While trying to edit an appointment the customInline Edit pop-up window comes up and I am able to save the changes. Thepop-up window also closes appropriately but, the changes made to theappointment do not reflect in the scheduler.
I need help in this so that the pop-up window closesand the changes are reflected immediately on the scheduler.
Thanks
Sabarish
| function GetRadWindow() { |
| var oWindow = null; |
| if (window.radWindow) |
| oWindow = window.radWindow; |
| else if (window.frameElement.radWindow) |
| oWindow = window.frameElement.radWindow; |
| return oWindow; |
| } |
| textBox.ClientEvents.OnButtonClick = "OpenLookupResultsWindow(0, 8)"; |
| <td class="riBtn"><a href="#" onclick="return false;" id="HeaderGridDock_C_HeaderGrid1_radGrid_ctl00_ctl04_HeaderGridTextBox-0-0_GoButton"><span>Button</span></a></td> |
| Sys.Application.add_init(function() { |
| $create(Telerik.Web.UI.RadTextBox, {"_focused":false,"clientStateFieldID":"HeaderGridDock_C_HeaderGrid1_radGrid_ctl00_ctl04_HeaderGridTextBox-8-0_ClientState","enabled":true,"showButton":true,"styles":{HoveredStyle: ["width:97px;", "riTextBox riHover"],InvalidStyle: ["width:97px;", "riTextBox riError"],DisabledStyle: ["width:97px;", "riTextBox riDisabled"],FocusedStyle: ["width:97px;", "riTextBox riFocused"],EmptyMessageStyle: ["width:97px;", "riTextBox riEmpty"],ReadOnlyStyle: ["width:97px;", "riTextBox riRead"],EnabledStyle: ["width:97px;", "riTextBox riEnabled"]}}, {"buttonClick":OpenLookupResultsWindow(0,8)}, null, $get("HeaderGridDock_C_HeaderGrid1_radGrid_ctl00_ctl04_HeaderGridTextBox-8-0")); |