Which IIQ version are you inquiring about?
[8.3]
Hi
I have created a plugin that displays a message on an existing page in IIQ based on the value in Plugin Configuration using a snippet. I have two files mainly for this update:
- manifest.xml : Added the below setting
<entry key="settings">
<value>
<List>
<Setting dataType="int" helpText="The maximum number of objects to search. If there are 1000s or more objects of the type to search, the server could get overloaded" label="Max Objects to Search" name="maxSearchObjectCount" defaultValue="200"/>
</List>
</value>
</entry>
- snippet.js
Question: 1. How can I read the value of “maxSearchObjectCount” in snippet.js?
2. If the value of “maxSearchObjectCount” is updated in plugin configuration, would snippet.js be able to read the updated value automatically or the value would be cached and a server restart would be needed?
Thank you!