when i use a button to this script it worked fine
var mytext = Row1.Cell1.value.exData.saveXML();
Row2.Cell1.value.exData.loadXML(mytext,1,1);
but when i use it in calculate event of Row2.Cell1 it not worked
var mytext = Row1.Cell1.value.exData.saveXML();
Row2.Cell1.value.exData.loadXML(mytext,1,1);
why ?
plz help
Solved! Go to Solution.
Views
Replies
Total Likes
Hi,
We might need to know more about what your form is doing, but you could try moving the calculate event code up the form hierarchy, so maybe on Row2
Regards
Bruce
Views
Replies
Total Likes
Hi,
I would suspect that doing the Row2.Cell1.value.exData.loadXML() will rebuild the Form DOM for that field. This would include the calculate event, so having the effect of interrupting the execution.
Bruce
Views
Replies
Total Likes
Any solution?
Views
Replies
Total Likes
Hi,
We might need to know more about what your form is doing, but you could try moving the calculate event code up the form hierarchy, so maybe on Row2
Regards
Bruce
Views
Replies
Total Likes
Good its worked Fine after moving the calculate event code up the form hierarchy.
Thanks a lot
Sirrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrrr.
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies