- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-28-2016 04:49 AM
Hi All,
I have a customized table ,users can enter a value in string field those values has to be copied in another field which is of choice datatype in the same table .
Please provide your suggestions.
Thanks in advance.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-05-2016 02:12 AM
Hi Kalpesh,
My Requirement is a customized table ,users can enter a value in string field those values has to be copied in another field which is of choice datatype in the same table .
I used script include and client script to do this .
Script Include will insert data into the choice table and returns value .
Return value will be added in client script as an option in current table.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-05-2016 01:41 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-05-2016 02:12 AM
Hi Kalpesh,
My Requirement is a customized table ,users can enter a value in string field those values has to be copied in another field which is of choice datatype in the same table .
I used script include and client script to do this .
Script Include will insert data into the choice table and returns value .
Return value will be added in client script as an option in current table.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-13-2016 11:09 PM
Hello,
Please share the code for this.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-14-2016 04:18 AM
I have created two field A(u_a) as string and B (u_b) as Choice Type ,
Client-Script: onChange
On-field : A(u_a)
function onChange(control, oldValue, newValue, isLoading, isTemplate) {
if (isLoading || newValue === '') {
return;
}
var getFieldValue = g_form.getValue('u_a');
g_form.addOption('u_b', abbc, abbc);
}
Regards
Ankit Badola
PS: Hit like, Helpful or Correct depending on the impact of the response