how to pass value from one variable to other on change of value
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2024 02:07 AM
I have form in scope. It also has a field activity team in scope. Now I want to pass the value in this , each time the selection changes to a global task field assignment group , so that I can use it in my reference qualifier parameter.
How to pass the value ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2024 04:48 AM
Try this
javascript : new global.ScriptIncludeName().functionName(current.field_name);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-02-2024 04:55 AM
javascript : new global.ScriptIncludeName().functionName(current.field_name);
didnt work as well, current.field_name is not passing the value due to scope
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-03-2024 02:22 AM
Hi Anna,
Define your script include as a class and when you call it, call it with scope.Name.Classname().functionName()