Wrox Home  
Search P2P Archive for: Go

  Return to Index  

aspx_beginners thread: DropDownList problem


Message #1 by "maciej" <maciej_ty@p...> on Mon, 23 Dec 2002 22:41:32
Hi

I need control that should look like DropDownList but it must allow to 
edit selected item. Is it available in .Net Web Controls or should I 
create it on my own (if yes -  where ? if not - how ?)

Thx for any support

Maciej
Message #2 by "maciej" <maciej_ty@p...> on Sun, 29 Dec 2002 21:17:19
Is there anybody who can help me ???
Please answer my questions.

Maciej
Message #3 by "Kim Holman" <onemorecybergeek@y...> on Mon, 30 Dec 2002 01:54:55
Hi,

It sounds like you're looking for some help. I'm just a beginner and 
probably don't have the answer to your question. However, it might help 
if you elaborate on what you're trying to do. When you say it must allow 
to edit selected item, do you mean you want to be able to update the list 
from a database? Who do you want to give the editing power to? Are you 
looking for code to populate the drop down list as opposed to manually 
inputing the items with a list item control? If you elaborate on what it 
is you need, some of the more advanced users out there could probably 
help.

Kim


> Hi

> I need control that should look like DropDownList but it must allow to 
e> dit selected item. Is it available in .Net Web Controls or should I 
c> reate it on my own (if yes -  where ? if not - how ?)

> Thx for any support

> Maciej
Message #4 by "Alex Smotritsky" <alex.smotritsky@v...> on Sun, 29 Dec 2002 22:06:16 -0500
I think he means changing the text of the items displayed in the list, I
don't believe such a control exists. Editing any given Item would have
to be done in a more round about way like thru an associated text box,
etc..., not right in the list like I think you mean.


-----Original Message-----
From: Kim Holman [mailto:onemorecybergeek@y...] 
Sent: Monday, December 30, 2002 1:55 AM
To: aspx_beginners
Subject: [aspx_beginners] Re: DropDownList problem


Hi,

It sounds like you're looking for some help. I'm just a beginner and 
probably don't have the answer to your question. However, it might help 
if you elaborate on what you're trying to do. When you say it must allow

to edit selected item, do you mean you want to be able to update the
list 
from a database? Who do you want to give the editing power to? Are you 
looking for code to populate the drop down list as opposed to manually 
inputing the items with a list item control? If you elaborate on what it

is you need, some of the more advanced users out there could probably 
help.

Kim


> Hi

> I need control that should look like DropDownList but it must allow to
e> dit selected item. Is it available in .Net Web Controls or should I
c> reate it on my own (if yes -  where ? if not - how ?)

> Thx for any support

> Maciej

Message #5 by "Jerry Lanphear" <jerrylan@q...> on Sun, 29 Dec 2002 22:06:46 -0700
I have achieved this effect in a listbox by trapping keydown events and
popping up a textbox over the listbox at the selected item. With a dropdown
control list would be more involved as you would have the popup nature of
the dropdown list to deal with. The edit can be achieved by deleting the old
item and then adding back in the edited item using dynamic add and delete
methods of the control.

Regards
Jerry
----- Original Message -----
From: "Alex Smotritsky" <alex.smotritsky@v...>
To: "aspx_beginners" <aspx_beginners@p...>
Sent: Sunday, December 29, 2002 8:06 PM
Subject: [aspx_beginners] Re: DropDownList problem


> I think he means changing the text of the items displayed in the list, I
> don't believe such a control exists. Editing any given Item would have
> to be done in a more round about way like thru an associated text box,
> etc..., not right in the list like I think you mean.
>
>
> -----Original Message-----
> From: Kim Holman [mailto:onemorecybergeek@y...]
> Sent: Monday, December 30, 2002 1:55 AM
> To: aspx_beginners
> Subject: [aspx_beginners] Re: DropDownList problem
>
>
> Hi,
>
> It sounds like you're looking for some help. I'm just a beginner and
> probably don't have the answer to your question. However, it might help
> if you elaborate on what you're trying to do. When you say it must allow
>
> to edit selected item, do you mean you want to be able to update the
> list
> from a database? Who do you want to give the editing power to? Are you
> looking for code to populate the drop down list as opposed to manually
> inputing the items with a list item control? If you elaborate on what it
>
> is you need, some of the more advanced users out there could probably
> help.
>
> Kim
>
>
> > Hi
>
> > I need control that should look like DropDownList but it must allow to
> e> dit selected item. Is it available in .Net Web Controls or should I
> c> reate it on my own (if yes -  where ? if not - how ?)
>
> > Thx for any support
>
> > Maciej
>
>
>
>

Message #6 by SALIM@i... on Mon, 30 Dec 2002 13:57:26 +0800
hi,

   check this link maybe it give u better solution.


http://webfx.eae.net/dhtml/combobox/combobox.htm


regards
salim g belim
Analyst Programmer
GMT.

-----Original Message-----
From: Jerry Lanphear [mailto:jerrylan@q...]
Sent: Monday, December 30, 2002 1:07 PM
To: aspx_beginners
Subject: [aspx_beginners] Re: DropDownList problem


I have achieved this effect in a listbox by trapping keydown events and
popping up a textbox over the listbox at the selected item. With a dropdown
control list would be more involved as you would have the popup nature of
the dropdown list to deal with. The edit can be achieved by deleting the old
item and then adding back in the edited item using dynamic add and delete
methods of the control.

Regards
Jerry
----- Original Message -----
From: "Alex Smotritsky" <alex.smotritsky@v...>
To: "aspx_beginners" <aspx_beginners@p...>
Sent: Sunday, December 29, 2002 8:06 PM
Subject: [aspx_beginners] Re: DropDownList problem


> I think he means changing the text of the items displayed in the list, I
> don't believe such a control exists. Editing any given Item would have
> to be done in a more round about way like thru an associated text box,
> etc..., not right in the list like I think you mean.
>
>
> -----Original Message-----
> From: Kim Holman [mailto:onemorecybergeek@y...]
> Sent: Monday, December 30, 2002 1:55 AM
> To: aspx_beginners
> Subject: [aspx_beginners] Re: DropDownList problem
>
>
> Hi,
>
> It sounds like you're looking for some help. I'm just a beginner and
> probably don't have the answer to your question. However, it might help
> if you elaborate on what you're trying to do. When you say it must allow
>
> to edit selected item, do you mean you want to be able to update the
> list
> from a database? Who do you want to give the editing power to? Are you
> looking for code to populate the drop down list as opposed to manually
> inputing the items with a list item control? If you elaborate on what it
>
> is you need, some of the more advanced users out there could probably
> help.
>
> Kim
>
>
> > Hi
>
> > I need control that should look like DropDownList but it must allow to
> e> dit selected item. Is it available in .Net Web Controls or should I
> c> reate it on my own (if yes -  where ? if not - how ?)
>
> > Thx for any support
>
> > Maciej
>
>
>
>



  Return to Index