Login
Latest Development Blogs
Forum Topics Post
Browse By Tag
Hi,
I set my WebScheduler to MyCustomEditingForm.aspx. How can i set the size of the dialog box shown?
Thanks!
If you would like to resize the EditingForm size you could set the EditingForm container height and/or width during OnEditingFormShow client side event handler. Here is the snippet:
function WebScheduler1_OnEditingFormShow(controlId, action, eventView, eventType, newType) { var s = ISGetObject(controlId); var editWindow = s.GetEditingFormWindow(); s.EditingDialogBox.Height = "550px"; s.EditingDialogBox.Width = "750px"; return true;}
The snippet will resize the EditingForm with a 750px width and 550px height.
ok thanks!