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
I couldn't fine any problem with your scenario on my environment.
I have attached a video of my sample. Be sure to check it.
Thank you and have a nice day.
regards,
Niven.
Hi Vince,
Yes, I believe the default timeout behaviour is set to 60 seconds. You may use TimeoutInterval property as much as you required in your project/scenario.
Should you have any further questions regarding the issue, please do not hesitate to contact us.
Regards,Niven
I'm sorry, what I meant was a reproducable sample that I can try. I have tried your code but didn't manage to get the same issue like yours. Do you have specific info about the issue? i.e the issue happened after some times, could you give me more specific information such as after what certain amount of time the timeout error occured or how many process you had to run before the error occured?
Please check the attached sample.
Best regards,
Niven Prasetya
That's strange, it's should be only one event invoked. Please provide me a sample of yours that I can try on my side.
Thanks.
Hi Maged,
There is no update on HTML5 at the moment due to incompatibility on most web browser. Maybe you can tell us any specific features of HTML5 are you looking for?
I have tried a scenario based on your steps, but I still could not replicate your issue.
I have attached a video of your scenario on my side.
The delay when update can be derived by many factors. Maybe a simple sample of your code and database can help me investigate your issue.
EDIT:
A new video has been posted. I have checked the video twice and change the format before uploading.
I have try your scenario on my side but couldn't see any problem, all the changes was succesfully updated. Even on BatchUpdate or not, it works perfect on my side.
Could you describe more about your issue or maybe provide me a sample and I will investigate much further for the issue.=)
Thank you and have a nice weekend.
Hai Nick,
I have attach my simple sample of your scenario. On my sample, I'm using OnEnterEditMode event to handle your scenario. Please describe what kind of event did you use to invoke the calender.
If you find my sample is different with yours, please replicate your issue on my sample and send it back to me.
Hi Frank,
As I have said in the previous post, I can't give you a scenario since this is not considered as a bug. Most of our customer find this behaviour is not an issue, I'm afraid this could affect most of our customer if we are implementing this behaviour.
Hello Johnny,
I have figured what went wrong with the tab.
When you use a listener event, it will invoke the listener event first handed before the tab default behaviour. This is why when you press tab button it will run the listener event to wiFRecepcion and then run the tab default behaviour, which is lead to txtMontoNeto.
For the first workaround you can use setTimeout function.
if (event.keyCode == 9) { var objeto = ISGetObject("WebInput3"); objeto.SetValueData("10/10/2010"); setTimeout(function() { objeto.SetFocus(); }, 1); return false; }
Or you can use the cancel bubble function, this function will cancel the tab default behaviour.
if (event.keyCode == 9) { event.returnValue = false; event.cancelBubble = false; var objeto = ISGetObject("WebInput3"); objeto.SetValueData("10/10/2010"); objeto.SetFocus(); return false; }
objeto.SetFocus(); return false; }
Hope this solves your issue.
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