iSeller Commerce
iSeller POS Retail
iSeller POS F&B
iSeller POS Express
Crosslight
WebUI
ClientUI
What's New
Download Trial
Web Solution
Mobile Solution
Enterprise Solution
Custom Development
Blog
Community
Latest Development Blogs
ForumPostTopic
Browse By Tag
Hi All,
I want to open the Edit Form when someone double clicked on a empty cell. Can any one help on this ?
Thanks in advance.
Thanks
srikant
Hello Srikant,
Please use the code below. It should help you to achieve your scenario.
function WebScheduler1_OnCallOutShow(controlId, action) { var s = ISGetObject(controlId); var el = WebScheduler1.GetCallOutElement(); if (el != null) if (el.style.display == "") el.style.display = "none"; return true; } function WebScheduler1_OnCellDoubleClicked(controlId, startDate, endDate, isAllDay, resource) { var s = ISGetObject(controlId); var mode = 0; switch (s.ViewSettings.SelectedViewMode) { case "Day": case "Week": var area = s.SelectedDateArea; if (area != null && area.attributes["type"] && area.attributes["type"].value == "AllDayEventArea") mode = 1; break; case "Month": mode = 1; break; case "Timeline": var timelineMode = s.ViewSettings.SelectedTimelineViewMode; if (timelineMode == "Week" || timelineMode == "Month" || timelineMode == "Quarter" || s.ViewSettings.TimelineView.IsQuarterView) mode = 1; break; } s.ShowEditingForm("New", mode); return true; }
Regards,Handy
Hi Handy,
Thanks for your replay.
Srikant
or
Choose this if you're already a member of Intersoft Community Forum. You can link your OpenID account to your existing Intersoft Social ID.
Choose this if you don't have an Intersoft account yet. Your authenticated OpenID will be automatically linked to your new Intersoft account.
Enter your Wordpress Blogname