1. ListView question?

I suspect ListView can't do this, but I thought I'd ask:

I'd like to be able to let a user add items to a list of items, and have
associated with each item a couple of check boxes, with each column of check
boxes having a label describing what action on the main item checking the
box could cause.

Don't know if this will come through email clearly, but like this:

ITEMS     |     ACTION1  |   ACTION2  |
------------------------------------------------ |
an item    |           x         |                   |
2nd item  |           x         |          x        |
3rd item   |                     |          x        |
------------------------------------------------ |
Then when the user clicks on some other button, the list will be perused,
and actions will be taken on each item depending on what was checked.

Can anyone suggest a way I could do something like this?


Dan Moyer

new topic     » topic index » view message » categorize

2. Re: ListView question?

Jonas,

Ok, I'll take a look, but seems likely it wouldn't allow for the same kind
of "dynamic" expansion that a list would (ie, user action adds new item to
list, which also adds associated check-boxes in same row).

Dan

----- Original Message -----
From: "Jonas Temple" <jktemple at yhti.net>
To: "EUforum" <EUforum at topica.com>
Subject: RE: ListView question?


>
> Dan,
>
> I don't think you can do this with a list view (with the exception of
> having a check box in the first column).
>
> I would suggest taking a look at the latest release of Phil Russel's
> grid control, where you can define a column as a checkbox column.
>
> Jonas
> Dan Moyer wrote:
> > I suspect ListView can't do this, but I thought I'd ask:
> >
> > I'd like to be able to let a user add items to a list of items, and have
> > associated with each item a couple of check boxes, with each column of
> > check
> > boxes having a label describing what action on the main item checking
> > the
> > box could cause.
> >
> > Don't know if this will come through email clearly, but like this:
> >
> > ITEMS     |     ACTION1  |   ACTION2  |
> > ------------------------------------------------ |
> > an item    |           x         |                   |
> > 2nd item  |           x         |          x        |
> > 3rd item   |                     |          x        |
> > ------------------------------------------------ |
> > Then when the user clicks on some other button, the list will be
> > perused,
> > and actions will be taken on each item depending on what was checked.
> >
> > Can anyone suggest a way I could do something like this?
> >
> >
> > Dan Moyer
> >
> >
>
>
> TOPICA - Start your own email discussion group. FREE!
>

new topic     » goto parent     » topic index » view message » categorize

3. Re: ListView question?

or maybe it does allow adding additional rows :)

Dan
----- Original Message -----
From: "Dan Moyer" <DANIELMOYER at prodigy.net>
To: "EUforum" <EUforum at topica.com>
Subject: Re: ListView question?


>
> Jonas,
>
> Ok, I'll take a look, but seems likely it wouldn't allow for the same kind
> of "dynamic" expansion that a list would (ie, user action adds new item to
> list, which also adds associated check-boxes in same row).
>
> Dan
>
> ----- Original Message -----
> From: "Jonas Temple" <jktemple at yhti.net>
> To: "EUforum" <EUforum at topica.com>
> Sent: Friday, February 07, 2003 9:26 PM
> Subject: RE: ListView question?
>
>
> > Dan,
> >
> > I don't think you can do this with a list view (with the exception of
> > having a check box in the first column).
> >
> > I would suggest taking a look at the latest release of Phil Russel's
> > grid control, where you can define a column as a checkbox column.
> >
> > Jonas
> > Dan Moyer wrote:
> > > I suspect ListView can't do this, but I thought I'd ask:
> > >
> > > I'd like to be able to let a user add items to a list of items, and
have
> > > associated with each item a couple of check boxes, with each column of
> > > check
> > > boxes having a label describing what action on the main item checking
> > > the
> > > box could cause.
> > >
> > > Don't know if this will come through email clearly, but like this:
> > >
> > > ITEMS     |     ACTION1  |   ACTION2  |
> > > ------------------------------------------------ |
> > > an item    |           x         |                   |
> > > 2nd item  |           x         |          x        |
> > > 3rd item   |                     |          x        |
> > > ------------------------------------------------ |
> > > Then when the user clicks on some other button, the list will be
> > > perused,
> > > and actions will be taken on each item depending on what was checked.
> > >
> > > Can anyone suggest a way I could do something like this?
> > >
> > >
> > > Dan Moyer
> > >
> > >
> > TOPICA - Start your own email discussion group. FREE!
> >
>
>
>
> TOPICA - Start your own email discussion group. FREE!
>

new topic     » goto parent     » topic index » view message » categorize

4. Re: ListView question?

Al,

Thanks, a nice idea & I'll bear it in mind, but for the moment I'm looking
into Jonas' suggestion to use EuGrid, as it looks "pretty".

Dan

----- Original Message -----
From: "Al Getz" <Xaxo at aol.com>
To: "EUforum" <EUforum at topica.com>
Subject: RE: ListView question?


>
> Hello there Dan,
>
> Another idea would be to create several rows of check boxes
> and several rows of text.
> Have a single vert scroll bar control all the rows of text
> such that they scroll one full row at a time.
> You dont really have to scroll the check boxes.
> As each line changes, the associated check boxes apply to
> the different rows that scroll into view, so you have to keep track
> of the top row.
> Shouldnt be too hard really, and depending on how you draw the
> check boxes it might appear to be one complete page rather then
> several columns.
>
> Now that i think about it, maybe you could change the text associated
> with each check box and have the 'static' text change with the
> scroll action.
> In this way you would be using only check box controls and a scroll
> bar control.
> You'd still have to keep track of the top row, but i bet it
> would be fairly easy to do.
>
> Take care,
> Al
>
>
>
> TOPICA - Start your own email discussion group. FREE!
>

new topic     » goto parent     » topic index » view message » categorize

5. Re: ListView question?

Al,

Sent you a screen shot direct, as topica refused to accept the .doc
attachment with a screen shot.

It looks pretty much like a listview control, with columns, column headers,
can optionally have individual row id (can be row number, can be other
things too), can have check boxes as items in "cells", can have invisible
cells for spreadsheet like reference (put something in an invisible cell,
have another cell operate on it & report in a visible cell), can be added to
like a list, and seems to have a built in scroll like a list or list view.

Dan Moyer

----- Original Message -----
From: "Al Getz" <Xaxo at aol.com>
To: "EUforum" <EUforum at topica.com>
Sent: Sunday, February 09, 2003 5:17 AM
Subject: RE: ListView question?


>
> Hello again Dan,
>
> Ok sure, it does sound interesting!
>
> When you say "pretty" i assume you are talking about some
> graphical aspect of the screen.  Do you think you could
> describe this to some degree to give us an idea what it
> looks like without having to actually try it out ourselves?
>
> Take care,
> Al
>
>
>
> TOPICA - Start your own email discussion group. FREE!
>

new topic     » goto parent     » topic index » view message » categorize

Search



Quick Links

User menu

Not signed in.

Misc Menu