support for squared select inputs

This commit is contained in:
rlx 2016-01-13 14:17:31 +05:30
parent 1a0c5aeab5
commit 3f4fa3b1fe

View file

@ -34,6 +34,7 @@ Ox.SelectInput = function(options, self) {
labelWidth: self.options.labelWidth, labelWidth: self.options.labelWidth,
max: self.options.max, max: self.options.max,
min: self.options.min, min: self.options.min,
style: self.options.style,
title: getTitle(), title: getTitle(),
value: self.options.value, value: self.options.value,
width: self.options.width width: self.options.width
@ -47,6 +48,7 @@ Ox.SelectInput = function(options, self) {
self.$input = Ox.Input({ self.$input = Ox.Input({
placeholder: self.options.placeholder, placeholder: self.options.placeholder,
style: self.options.style,
width: self.options.inputWidth, width: self.options.inputWidth,
value: self.options.inputValue value: self.options.inputValue
}) })