Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2019
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. function onChange(control, oldValue, newValue, isLoading, isTemplate) {
  2.  
  3. if (isLoading || newValue === '') {
  4. //This script is designed to check if it is loading. If it is loading than return the statment.
  5. //If the newValue is blank then also return the return value
  6. //Once it is done loading and there is a newValue selected, then it will be false and execute the bottom value
  7. return;
  8. }
  9. g_form.addInfoMessage(g_form.getValue('start_date'));
  10. //Type appropriate comment here, and begin script below
  11.  
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement