SmartClient Version: v9.0p_2013-10-24/LGPL Development Only (built 2013-10-24)
Browser: IE9
I think something broke in recently. I have code that overrides the defaults for many of the FormItem controls. This was working fine with the build from 10/5. I have not made any changes to this code, but recently my title disappeared on all of my TextItems after I rolled to the 10/24 build. In the debugger I can see that TextItem instances have a value of true for getShowTitle() until I call TextItem.setDefaultProperties(). After that call, showTitle is false.
During my startup I call
I've attached the source for PMDarkTextItem - it is very simple.
I also just noticed that I am having the same issue with SelectItem. I do the same thing with CombBoxItem, but it is working fine.
Browser: IE9
I think something broke in recently. I have code that overrides the defaults for many of the FormItem controls. This was working fine with the build from 10/5. I have not made any changes to this code, but recently my title disappeared on all of my TextItems after I rolled to the 10/24 build. In the debugger I can see that TextItem instances have a value of true for getShowTitle() until I call TextItem.setDefaultProperties(). After that call, showTitle is false.
During my startup I call
Code:
TextItem.setDefaultProperties(new PMDarkTextItem());
I also just noticed that I am having the same issue with SelectItem. I do the same thing with CombBoxItem, but it is working fine.
Comment