Trying to update from v11.0p_2016-08-13 to v11.0p_2017-02-09
The context of the update is to get Chrome support back in our product as efficiently as possible.
The columns in the table are no longer built the same way and causes unnecessary wrapping.
Feels like the table column reserved to the icon now hosts the icon and the message and the space reserved for the message is now empty.
The context of the update is to get Chrome support back in our product as efficiently as possible.
The columns in the table are no longer built the same way and causes unnecessary wrapping.
Feels like the table column reserved to the icon now hosts the icon and the message and the space reserved for the message is now empty.
Code:
var form = isc.DynamicForm.create({ showErrorText : true, showErrorIcons : true, numCols : 1, width : 300, fields : [{ name : 'message', editorType : 'StaticTextItem', errorIconSrc : 'feedback/error.png', showTitle : false }] }); form.addFieldErrors('message', 'Please select at least one item in the below list', true); form.show();
Comment