Replacing 'None' with 'Please Select' in select box : Catalog Item
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2016 07:34 AM
I have a variable in Catalog item "e-transfer Inquiry type" which is select box type and mandatory field.
When I tick check box" Include None" that option is added in select box(as shown above )
That I want is: I want to replace "--None--" With "--Please Select--" option
can someone help.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2016 07:43 AM
Unselect "inlcude none' checkbox and add this in any onload script.
g_form.addOption('variablename', '', '--Please Select--');
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2016 07:55 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2016 07:57 AM
g_form.addOption('variablename', '', '--Please Select--', 0);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-19-2016 08:02 AM