inputMaxWidth
sets the maximum width of the input
number inputMaxWidth;
Example
webix.ui ({
view:"querybuilder",
inputMaxWidth: 200
});
Default value:
210
Details
- The input can't take the width bigger than the specified value.
- If there is not enough space for the specified width - the input will shrink down.
- During resizing the input can't take the size bigger than the value set by inputMaxWidth.
Back to top