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
Is there a way to disable the recurring events feature? I don't want users to be able to create recurring events.
In order to prevent users to be able to create recurring events, we need to disable following things as shown in the following list.
Hide/remove “New Recurring Event” from WebScheduler’s context menu
One possible way to add new recurring event is by using the context menu. By hiding this menu from WebScheduler’s context menu, there is no way that user would be able to add new recurring event into WebScheduler.
This step can be achieved using WebScheduler OnContextMenu client-side event. The OnContextMenu is the event handler when the context menu is being shown or about to be displayed.
The snippet code below can be used to hide/remove the “New Recurring Event” menu object from WebScheduler’s context menu.
function WebScheduler1_OnContextMenu(controlId, type, menuObj, el, eventView) { var WebScheduler1 = ISGetObject(controlId); menuObj.Items.GetNamedItem("mnuNewRecurringEvent").Hide(); return true; }
Hide/remove “Recurrence” section from WebScheduler’s editing form
Another possible way to add new recurring event is by using the editing form. By removing this section from WebScheduler’s editing form, there is no way that user would be able to add new recurring event into WebScheduler.
Assume that the default editing form of WebScheduler is used, and then we can simply remove the “Recurrence” section by selecting following row and comment out the selected lines (as shown in the following snippet code).
<%--<tr> <td> <span class="header" onclick="WS_HideShowContent('recurrenceImg', 'recurrenceContent')"> <img id="recurrenceImg" src="ISRes.axd?S/arrow_right.gif" align="absmiddle" /> Recurrence </span> </td> </tr>--%>
Remove the RecurringEventsBinding from WebScheduler
Remove the RecurrenceBinding from WebScheduler
Hope this helps.
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