• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
0

Formatting for Checkboxes

LEGEND ,
Feb 22, 2007 Feb 22, 2007

Copy link to clipboard

Copied

I have a flash form that the second tab contains query generated checkboxes. No matter what I do, they all stack vertical; is there a way to make it format as a two-column and x rows of checkboxes?

Thanks,

^_^

Views

410

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Feb 23, 2007 Feb 23, 2007

Copy link to clipboard

Copied

Anyone know of anyway to prevent the checkboxes from going all vertical, one column with each checkbox residing in its own row?

^_^

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Enthusiast ,
Feb 25, 2007 Feb 25, 2007

Copy link to clipboard

Copied

LATEST
Posting some of your code would help, but

The following should do what you want

<cfformgroup type="HORIZONTAL">
<cfformgroup type="REPEATER" query="myQuery">
<cfformgroup type="HORIZONTAL">
<cfinput type="Checkbox" name="name" value="value" visible="Yes" enabled="Yes">
</cfformgroup>
</cfformgroup>
</cfformgroup>

Ken

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources
Documentation