User Profile & Activity

Niven Prasetya Member
Page
of 25
Posted: October 13, 2010 12:14 AM

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

Hi Vince,

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

Hi Vince,

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.

Regards,
Niven

Posted: October 10, 2010 10:55 PM

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?

Thank you and have a nice day.

 

Best regards,

Niven Prasetya

Posted: October 10, 2010 10:50 PM

Hi Maged,

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.

Thank you and have a nice day.

 

Best regards,

Niven Prasetya

 

 EDIT:

A new video has been posted. I have checked the video twice and change the format before uploading.

Posted: October 8, 2010 1:10 AM

Hi Maged,

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.

Best regards,

Niven Prasetya

Posted: October 8, 2010 12:38 AM

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.

Thank you and have a nice day.

 

Best regards,

Niven Prasetya

Posted: October 7, 2010 11:25 PM

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.

 

Thank you and have a nice day.

Best regards,

Niven Prasetya

Posted: October 7, 2010 12:27 AM

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; }

Hope this solves your issue.

Thank you and have a nice day.

 

Best regards,

Niven Prasetya

All times are GMT -5. The time now is 3:20 PM.
Previous Next