Hi Isomorphic,
Shouldn't the below code disable dynamic contents for the message on the Dialog?
It would appear to still be evaluating the JavaScript in this case.
Thanks
Shouldn't the below code disable dynamic contents for the message on the Dialog?
It would appear to still be evaluating the JavaScript in this case.
Code:
Dialog dialog = new Dialog(); dialog.setAutoSize(autoSize); Label messageProps = new Label(); messageProps.setDynamicContents(false); dialog.setAutoChildProperties("messageLabel", messageProps); dialog.setTitle("Some Title"); dialog.setIcon(IconConstants.CONFIRM); dialog.setMessage("${[JavaScript to evaluate]}");
Comment