Re: vertical Scroll Bar with CheckBoxList in ASP.NET



Patrick,

I've tried it like you suggested, but the vertical bar didn't show up (both
in IE and Netscape 7.1). My co-worker developed a window application with
VB.NET and used CheckedListBox control to display databound by database; it
had the vertical scroll bar. In ASP.NET with web development, it does not
have CheckedListBox control and I have to use CheckboxList control.

Here is my code:

<div style="width: 200px; height: 100px; scroll: auto;">
<asp:CheckBoxList id="Field_CheckList"
OnSelectedIndexChanged="Field_CheckedAll_Changed" runat="server"
AutoPostBack="true" CellPadding="5" CellSpacing="5" RepeatColumns="1"
RepeatDirection="Vertical" RepeatLayout="Flow" TextAlign="Right"
></asp:CheckBoxList>
</div>

Any suggestions ? Thanks again.
=========================================
"Patrick" <Patrick@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
news:52850334-B107-441B-B7DB-539BF6DF7128@xxxxxxxxxxxxxxxx
> Hi Kevin,
>
> first of all: Before you want to develop a Web-based application make
sure
> you know enough about web-standards! Like you would do when trying to
> develop a windows application (you must know about drawing controls).
>
> A "scrolling div" is a html-tag wrapped around your control.
>
> <div style="width: 200px; height: 100px; scroll: auto;">
> ... here comes your list-control ...
> </div>
>
> Be aware that this does not work for every browser!
>
> Regards
> Patrick
>
> "bienwell" wrote:
>
> > Kevin,
> >
> > Is "scrolling div" a property of CheckBoxList ? How do I put the
> > CheckBoxList in it ? I don't see this property for CheckBoxList ?
> > =========================================
> > "Kevin Spencer" <kevin@xxxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
> > news:uA5jhMnRFHA.580@xxxxxxxxxxxxxxxxxxxxxxx
> > > Put it into a scrolling div.
> > >
> > > --
> > > HTH,
> > >
> > > Kevin Spencer
> > > Microsoft MVP
> > > .Net Developer
> > > What You Seek Is What You Get.
> > >
> > > "bienwell" <bienwell@xxxxxxxxxxx> wrote in message
> > > news:eo6LbAnRFHA.3560@xxxxxxxxxxxxxxxxxxxxxxx
> > > > Hi,
> > > >
> > > > I'm using the CheckBoxList control in ASP.NET for Web development.
This
> > > > checkboxlist is bound by the database. If we have more items for
this
> > > > checkbox list, it takes space on the page. I want to have vertical
> > scroll
> > > > bar (like CheckedListBox in Window development) to save space. Can
we do
> > > > that in ASP.NET ?
> > > > Please give me your suggestions ? Thanks in advance.
> > > >
> > > >
> > >
> > >
> >
> >
> >


.



Relevant Pages

  • CheckedListBox control to Database
    ... anyone could pls help me with CheckedListBox control on a window form... ... Person table (PersonID, Name, InterestID(FK)), and Interest table. ...
    (microsoft.public.dotnet.languages.csharp)
  • CheckedListBox control to Database
    ... anyone could pls help me with CheckedListBox control on a window form... ... Person table (PersonID, Name, InterestID(FK)), and Interest table. ...
    (microsoft.public.data.ado)