how can i access individual table column and label in form ?
for example to change label 5 to right align.
also field column 5 to right align.
how can i access individual table column and label in form ?
for example to change label 5 to right align.
also field column 5 to right align.
getting frustrated waiting for reply.
form really not so productive and not really flexible.
wasting my time try to figure out just a simple thing....
nobody knows how to do it ?
not even the laserfiche team ?
Hi, Lee!
While the Laserfiche employees and community try to answer all questions, we cannot guarantee a response time.
It's not clear to me what you're asking for. I'm guessing you meant accessing fields through JavaScript? If that's the case, please see the help file. If that's not what you meant, please clarify your question.
Hi Lee,
You can do it with custom CSS.
First give the field a CSS class name like "column_5" on field options of this field, then go to CSS and Javascript page of your form, you could see the preview panel like this:
Check the label id (it's q7 in the screenshot,) then add CSS like this:
#q7 { text-align: right; } .column_5 input{ float: right; }
Sorry for the late response.