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
Hello,
When I use the OnEventBound function my page loads very slow and is showing only the first event.
Do you know what might be the cause?
Thank you.
We can use the Network tool in F12 developer tools (Internet Explorer browser) to analyze why the page loads very slow. We can easily find which requests that takes time. Is it the data retrieval or other client process?
There are two types of event: events; and recurring events. Please try to check the retrieved events in ISDataSource OnSelected server side event. You can try to use following snippet code to determine the amount of returned events.
protected void ISDataSource1_Selected(object sender, ISNet.WebUI.DataSource.ISDataSourceStatusEventArgs e) { if (e.ReturnValue.ToString()=="RecurringEvents") { WebScheduler_PersonalTrainee.RecurringEventsDataTable receventdt = e.ReturnValue as WebScheduler_PersonalTrainee.RecurringEventsDataTable; int RecurringEventsCount = receventdt.Count; } if (e.ReturnValue.ToString() == "Events") { WebScheduler_PersonalTrainee.EventsDataTable eventdt = e.ReturnValue as WebScheduler_PersonalTrainee.EventsDataTable; int RecurringEventsCount = eventdt.Count; } }
Hope this help.
Glad to hear the good news.
Should you need further assistance or run into any problems regarding our controls, feel free to post it into our forum. We would be happy to assist you again.
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