- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-09-2017 07:38 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-09-2017 07:52 AM
I prefer to use a Display Business Rule and put the property in to a g_scratchpad variable. You can then use it in an onLoad script.
BR:
g_scratchpad.my_property = gs.getProperty('my.property');
CS:
var myProperty = g_scratchpad.my_property
I believe we covered this in episode 5 of TechNow.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-09-2017 07:40 AM
I don't think there is one, i think you'll have to create the property in a script include and then call it from the client side using a GlideAjax.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-09-2017 07:41 AM
Hi Peter,
Create a script include and call it by using glideajax in client script.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-09-2017 07:51 AM
Nothing in the client side that can do this as far as I know. But,
- If it is a table, display business rule + g_scratchpad to store the system property to be used in client side scripts.
- If it is a catalog, then a plain glideajax to read it.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎08-09-2017 07:52 AM
I prefer to use a Display Business Rule and put the property in to a g_scratchpad variable. You can then use it in an onLoad script.
BR:
g_scratchpad.my_property = gs.getProperty('my.property');
CS:
var myProperty = g_scratchpad.my_property
I believe we covered this in episode 5 of TechNow.