Is it possible to display multiple checkboxes as a list or a list with checkboxes

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ramapv
    New Member
    • Oct 2006
    • 28

    Is it possible to display multiple checkboxes as a list or a list with checkboxes

    can i highlight a checkbox from a group of checkbox with particular name which is given as a search key.

    I am having a list of checkboxes and i have to select some of them and form a group.but i'm having a huge list of names , so i want to keep a function so that i can go to (scroll) the name which starts with a particular alphabet & i can check it for selecting components to form a group. both are in different frames.

    Thanks in advance.Any other suggestions would be appreciated.
    -Ram
  • ramapv
    New Member
    • Oct 2006
    • 28

    #2
    Is it possible to display multiple checkboxes as a list or a list with checkboxes

    I have a doubt?

    Is it possible to display multiple checkboxes as a list or a list with checkboxes for multiple selection.

    Comment

    • rajbala
      New Member
      • Oct 2006
      • 58

      #3
      Originally posted by ramapv
      can i highlight a checkbox from a group of checkbox with particular name which is given as a search key.

      I am having a list of checkboxes and i have to select some of them and form a group.but i'm having a huge list of names , so i want to keep a function so that i can go to (scroll) the name which starts with a particular alphabet & i can check it for selecting components to form a group. both are in different frames.

      Thanks in advance.Any other suggestions would be appreciated.
      -Ram
      I also having same problem.. I waiting for your suggestion

      -Raju

      Comment

      • ronverdonk
        Recognized Expert Specialist
        • Jul 2006
        • 4259

        #4
        I don't quite understand what you mean. What do you mean by "a list of checkboxes"? Checkboxes ordered under each other or is it something else?

        Ronald :cool:

        Comment

        • AricC
          Recognized Expert Top Contributor
          • Oct 2006
          • 1885

          #5
          You mean like this:
          [html]<html>
          <body>

          <form>
          Yes:
          <input type="checkbox" checked="true" name="Yes">
          No:
          <input type="checkbox" name="No">
          Maybe:
          <input type="checkbox" name="Maybe">
          Sometimes:
          <input type="checkbox" name="Sometimes ">
          Often:
          <input type="checkbox" name="Often">
          Never:
          <input type="checkbox" name="Never">


          </form>

          </body>
          </html>[/html]

          You can check as many as you want.

          Comment

          Working...