Presently the setHint method of a FormItem encapsulates the hint, and its FormItem, within in a table, where the first <td> holds the form item, and the second <td> holds the hint. So the hint always displays to the right and not even a CSS workaround can fix that, unless you get really crazy with absolute positioning.
I've seen some requests to allow the hint to be displayed below the form item, such as below a text box or text area.
This is a request to add a method like .setHintLocation() that accepts an enum of locations such as ABOVE, BELOW, RIGHT, LEFT.
For example, if setHintDirection is BELOW you could add a <div> that encapsulates the hint allowing it to appear below the text item. LEFT would simply move the order of the <td> elements, and ABOVE would move the <div>...
Thanks!
-Becky
I've seen some requests to allow the hint to be displayed below the form item, such as below a text box or text area.
This is a request to add a method like .setHintLocation() that accepts an enum of locations such as ABOVE, BELOW, RIGHT, LEFT.
For example, if setHintDirection is BELOW you could add a <div> that encapsulates the hint allowing it to appear below the text item. LEFT would simply move the order of the <td> elements, and ABOVE would move the <div>...
Thanks!
-Becky
Comment