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,
You can provide a simple working sample that uses the existing database such as WebSchedulerData.mdb. A runable sample that replicates your issue.
You can attach the sample in this post in zip file, or you can send to my email: martin@intersoftpt.com.
Ensure that the sample is working, so that I can directly test the sample on my end.
Thank you.
Regards,-Martin-
Could you provide a simple working sample that replicates this issue?
Unfortunately, I couldn't replicate your issue on my end. If you try to run FirstExperience.aspx, everything works fine in IE9.
It would be helpful if you can provide a sample, so that I can directly run a test on your given sample.
Hello Jim,
You can detect whether the value in the dropdownlist has changed by using OnExitEditMode client-side event in WebGrid.
When you add new handler in OnAfterExitEditMode, the code will look like following:
function WebGrid1_OnAfterExitEditMode(controlId, tableName, editObject) { var WebGrid1 = ISGetObject(controlId); return true; }
editObject is the parameter that you can use to get the type of the edited object, which is dropdownlist.
Then, you can determine the text selected from downdownlist by using editObject.cellElement.innerText. For example:
function WebGrid1_OnAfterExitEditMode(controlId, tableName, editObject) { var WebGrid1 = ISGetObject(controlId); alert(editObject.cellElement.innerText); return true; }
With this way, you can determine the changes that you have made in the dropdownlist.
Hope this helps. Thank you.
Unfortunately, the issue doesn't happen on my end.
I'm currently using IE9 browser and as you can see in the screenshot attached, the dropdown works fine.
Try to run our live sample in here and see how it goes on your end.
The bug has been fixed by the developer team and it is scheduled to be shipped together in 2011 R1 SP1 release.
Please forgive me for lack of understanding about the reported problem.
Could you explain what do you mean by clicking the dropdown arrows?
Are you trying to enable paging in detail box? Or, you want to implement client paging in timeline view?
Have you run WebScheduler samples on CarRental.aspx and DetailBox_EnablePaging.aspx? Try to run these samples and see whether you still encounter the same issue.
I couldn't see the attached screenshot. There must be some errors when you try to upload the screenshot. Please re-attach the error screenshot.
Have you successfully downloaded the full installer of 2011 R1? The installer size should be around 600 MB.
You can download the full installer in here.
It seems that the developer team is still investigating this issue as I haven't received any fix for this one.
They are still working on it and I'm sure the hotfix will be ready as soon as possible.
The developer team has given me the update of this issue.
This Feature Request has been noted by the team and will be added in the next release, which means that this culture setting will be applied in the 2011 R2.
You can set the selected date to today's date by using the following code in page_load event:
protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { WebScheduler1.ViewSettings.SelectedDate = DateTime.Now; } }
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