1. Alexey Zimarev07/16/2008 11:41:28 PM
I am sure you're the great developer, but please don't use constructions like:
if (confirm('text')) {
return true;
} else {
return false;
}
Simple
return confirm('text");
would do and in general is better programming practice
2. John Mackey07/18/2008 06:09:46 AM
Alexey,
It makes for a clearer example as to how the client side and server side events work together, which is the goal of this posting.
Thanks,
John
3. Harris Huckabee07/22/2008 09:48:37 PM
John, thanks for your examples. I was just mixing javascript and @Formula in Computed Text yesterday... nice to see more ways to do it in 8.5.
I am trying to understand how xPages with their ability to bind to multiple datasources might also be able to help me validate many "rows" of data which are being saved to separate documents. Being brand new to xPages, I will do your multiple datasources example and see if that leads to a better understanding.
Note: You can access all downloads here