


Hi,
I've a dialog selection box. What I need to check if the default value I've provided using the property defaultValue and value I'll get from the selection box are equal or not!
So, to get selected value, we can get like this :
function(dialog){ var selection = dialog.getField("<property name>"); var selectedValue = selection.value; }
Now, how can I get value in java script using the defaultValue property as name?
Thanks,
Himanshu
Views
Replies
Sign in to like this content
Total Likes
Try using function
Views
Replies
Sign in to like this content
Total Likes
get path till your dialog nodes
i.e. path = /apps/../items/<property name>/defaultValue.infinity.json
and from this Json you can get the default value.
sample snippet
var infinityjson = CQ.HTTP.noCaching(CQ.HTTP.getPath()+<property name>+'/defaultValue.infinity.json'); var infinityjsonObject = CQ.HTTP.eval(infinityjson); var defValue = infinityjsonObject.defaultValue;
Views
Replies
Sign in to like this content
Total Likes