How to display checkbox in list-detail_view in 1 line?

Hi,

i have a bit sophisticated custom template for my form1 and i need to display field checkbox in list-detail_view in 1 line.
my checkbox is field:
{ccjom_cc_kk_karta_rejestr___ip_pusta_kratka}

Now in details_view it looks like this:
Red Box
ETH Front
Can Bus


I would need a look like this:
Red Box, ETH Front, Can Bus


How to solve this?
 

Attachments

  • Zaznaczenie_107.png
    Zaznaczenie_107.png
    46.7 KB · Views: 401
  • Zaznaczenie_108.png
    Zaznaczenie_108.png
    32 KB · Views: 401
  • Zaznaczenie_109.png
    Zaznaczenie_109.png
    56.8 KB · Views: 396
  • Zaznaczenie_106.png
    Zaznaczenie_106.png
    231.7 KB · Views: 399
Elements like radios are displayed in detail view as "fabrikRepeatData" in unnumbered lists, <ul><li>...</li><li>...</li><ul>. You'd have to add some custom CSS to set the li's to display inline.

Code:
#your___element_ro ul li {
   display: inline;
   padding: 5px;
}

... you'd have to set padding and margins how you need them. Note the _ro on the end of the element ID, we add that to element ID's in detail view.

-- hugh
 
Last edited:
We are in need of some funding.
More details.

Thank you.

Members online

Back
Top