1 minute read

DesignTime Product Update #3

Next Article
Past Webinars

Past Webinars

Revision 2623 and RunTime revision 1226: Static Textbox Title

A new property has been added to the Textbox control called SlidingTitle. Setting it to "False" will always keep the title at the top of the Textbox. This property defaults to "True". In order to utilize this property, the style.css file in the application needs to be updated. Find this existing sectionCODE: SELECT ALL

.text-field-wrap.field-active input + .label-text,

.text-field-wrap input:focus + .label-text,

.text-field-wrap.field-active textarea + .label-text,

.text-field-wrap textarea:focus + .label-text,

.text-field-wrap.field-active select + .label-text,

.text-field-wrap select:focus + .label-text { top: -0.75em; left: 16px; display: block; padding-left: 6px; padding-right: 6px; font-weight: bold; font-size: 0.86em; opacity: 1; color: #175E8E; background-color: #FFFFFF;}

This section needs to be updated with 3 additional selectors to look like thisCODE: SELECT ALL

.text-field-wrap.field-active input + .label-text,

.text-field-wrap input:focus + .label-text,

.text-field-wrap.field-active textarea + .label-text,

.text-field-wrap textarea:focus + .label-text,

.text-field-wrap.field-active select + .label-text,

.text-field-wrap select:focus + .label-text,

.text-field-wrap.static-title input + .label-text,

.text-field-wrap.static-title textarea + .label-text,

.text-field-wrap.static-title select + .label-text { top: -0.75em; left: 16px; display: block; padding-left: 6px; padding-right: 6px; font-weight: bold; font-size: 0.86em; opacity: 1; color: #175E8E; background-color: #FFFFFF; }

This article is from: