SmartClient Version: v9.1p_2015-09-16/Pro Development Only (built 2015-09-16)
Browser Chrome: Version 47.0.2526.111 m
We would like to edit the DateChooser to have the TimeItem items display horizontally. The items consist of the hour item and minute item. Currently the hour title and minute title are above their respective combo box. The desired outcome would be to have them displayed side-by-side. When attempting to change the hourItem's titleOrientation property to "left", the following error pops up:
I suspect it should be using getTitleAlign if left-oriented, instead of getTitleVAlign? Would this be considered a bug?
Browser Chrome: Version 47.0.2526.111 m
We would like to edit the DateChooser to have the TimeItem items display horizontally. The items consist of the hour item and minute item. Currently the hour title and minute title are above their respective combo box. The desired outcome would be to have them displayed side-by-side. When attempting to change the hourItem's titleOrientation property to "left", the following error pops up:
Error evaluating your changes:
ErrorType: TypeError
ErrorMessage: this.getTitleVAlign is not a function
ErrorType: TypeError
ErrorMessage: this.getTitleVAlign is not a function
Code:
isc.DateChooser.create({ showTimeItem: true, timeItemProperties:{hourItemProperties:{titleOrientation:"left"}}, });
Comment