Multiple columns data control

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Cezar

    Multiple columns data control

    Hi,

    I need to display the content of an ArrayList on multiple columns, like

    data1 data2 data3 data4
    data5 data6 data7 data8
    ----
    or

    data1 data3 data5 data7
    data2 data4 data6 data8
    ----
    doesn't really matter.

    There is out there a web control that let me do this and have control over
    the number of rows and columns, ideally autoevaluate the available space and set the
    number of columns ?

    With a DataGrid I get only one column that using paging I can have it spread over
    multiple pages but not spreading over the rows, if you understand what I
    mean.

    I looked over couple of books but I couldn't find a similar one.

    Thank you,
    Cezar
  • Alvin Bruney

    #2
    Re: Multiple columns data control

    If i understand you correct, you ideally want to flip the columns?
    If so, follow this link:
    About NetworkIP NetworkIP is an international voice “Service Provider” with over 25 years of experience, specializing in high-quality international calling services. We enable MNOs and Mobile Virtual Network Operators (MVNOs) to outsource international calling offerings with minimal risk and significant regulatory savings. NetworkIP supports direct dialing through its exclusive connections with the major US MNOs,


    regards

    --


    -----------
    Got TidBits?
    Get it here: www.networkip.net/tidbits
    "Cezar" <cezar.nasui@po lymtl.ca> wrote in message
    news:pan.2003.1 1.22.20.19.17.8 78570@polymtl.c a...[color=blue]
    > Hi,
    >
    > I need to display the content of an ArrayList on multiple columns, like
    >
    > data1 data2 data3 data4
    > data5 data6 data7 data8
    > ----
    > or
    >
    > data1 data3 data5 data7
    > data2 data4 data6 data8
    > ----
    > doesn't really matter.
    >
    > There is out there a web control that let me do this and have control over
    > the number of rows and columns, ideally autoevaluate the available space[/color]
    and set the[color=blue]
    > number of columns ?
    >
    > With a DataGrid I get only one column that using paging I can have it[/color]
    spread over[color=blue]
    > multiple pages but not spreading over the rows, if you understand what I
    > mean.
    >
    > I looked over couple of books but I couldn't find a similar one.
    >
    > Thank you,
    > Cezar[/color]


    Comment

    • Sonali.NET[MVP]

      #3
      Re: Multiple columns data control

      Use Datalist Control And set RepeatColumns Property to number of times you want the colums to be repeated
      -Sushila

      "Cezar" <cezar.nasui@po lymtl.ca> wrote in message news:pan.2003.1 1.22.20.19.17.8 78570@polymtl.c a...[color=blue]
      > Hi,
      >
      > I need to display the content of an ArrayList on multiple columns, like
      >
      > data1 data2 data3 data4
      > data5 data6 data7 data8
      > ----
      > or
      >
      > data1 data3 data5 data7
      > data2 data4 data6 data8
      > ----
      > doesn't really matter.
      >
      > There is out there a web control that let me do this and have control over
      > the number of rows and columns, ideally autoevaluate the available space and set the
      > number of columns ?
      >
      > With a DataGrid I get only one column that using paging I can have it spread over
      > multiple pages but not spreading over the rows, if you understand what I
      > mean.
      >
      > I looked over couple of books but I couldn't find a similar one.
      >
      > Thank you,
      > Cezar[/color]

      Comment

      • Cezar

        #4
        Re: Multiple columns data control

        On Sun, 23 Nov 2003 07:22:08 -0500, Sonali.NET[MVP] wrote:
        [color=blue]
        > Use Datalist Control And set RepeatColumns Property to number of times you want the colums to be repeated
        > -Sushila
        >[/color]
        thank you Sushila

        Comment

        • Cezar

          #5
          Re: Multiple columns data control

          On Sat, 22 Nov 2003 21:10:14 -0600, Alvin Bruney wrote:
          [color=blue]
          > If i understand you correct, you ideally want to flip the columns?
          > If so, follow this link:
          > http://www.networkip.net/tidbits/flip.htm
          >[/color]
          Interesting one. I'll keep this solution in mind.

          I use a DataList for now.
          Thank you
          Cezar

          Comment

          Working...