SmartClient Version: v9.1p_2016-04-15/Pro Development Only (built 2016-04-15)
All browsers
When the user has an error validation on a input field (i.e., text field, combo box), the field seems to grow width-wise. In the case below, the width grows by 2px (146px to 148px) when the field is validated as an error. How do we prevent the input field width from increasing its with when it is in the error state?
http://www.smartclient.com/docs/9.1/...ValidationType
All browsers
When the user has an error validation on a input field (i.e., text field, combo box), the field seems to grow width-wise. In the case below, the width grows by 2px (146px to 148px) when the field is validated as an error. How do we prevent the input field width from increasing its with when it is in the error state?
http://www.smartclient.com/docs/9.1/...ValidationType
Code:
isc.DynamicForm.create({ ID: "boundForm", dataSource: "type", showErrorIcons: false, errorOrientation: "bottom", showErrorText: true, titleOrientation: "top" }); isc.Button.create({ top: 60, title: "Validate", click: "boundForm.validate()" });
Comment