Ask a Question related to ASP.NET Building Controls, Design and Development.
-
Tina #1
Dropdown Property List??
I'm writing an aspx server control and I need to have a property that
displays a dropdown list of things I have in an arraylist. I'm trying to do
the kind of thing that, for instance, the datagrid component does where it
shows a list of all of the datasets on the page that could be chosen for
binding.
I have examples of doing property dropdowns this with a static enum and also
using a collection property but I don't want a collection property.
How is this done?
Thanks,
T
Tina Guest
-
How to display a property of a custom control with a dropdown styl
Hello, I have written my own custom control and I want one of its properties to display as a dropdown list when clicked, so the user can select... -
UserControl property as dropdown at design time?
Hi I'm creating an ASP.NET UserControl that contains a DropDownList control. I'd like to be able to set the DataSourceID property of this... -
Dropdown list
I would like to display 15 items (lines) in the dropdown list, but by default the list displays only 11 lines. How can I have all the 15 items... -
DataGrid with Dropdown list
Any Help is appreciated! I have a datagrid with Drop down list and a remove hyperlink as two columns. When I remove the row of the datagrid by... -
Find the biggest value property in a property list
Hello the group If I have a list like; You can see there's three properties that are simalar '1.1' & '1.2' & '1.3' Question 1: Now if... -
Teemu Keiski #2
Re: Dropdown Property List??
Hi,
maybe it is a TypeConverter you are looking for e.g when you use VS.NET's
designer and select something from property browser (if you mean HTML View
this isn't possible because it checks the intellisense from static XSD
schema per control basis)
Here is an example how to list datagrids of a page using a type converter
[url]http://www.asp.net/Forums/ShowPost.aspx?tabindex=1&PostID=214342[/url]
--
Teemu Keiski
ASP.NET MVP, AspInsider
Finland, EU
"Tina" <tinamseaburn@removespamexcite.com> wrote in message
news:u0XG3PN%23EHA.936@TK2MSFTNGP12.phx.gbl...> I'm writing an aspx server control and I need to have a property that
> displays a dropdown list of things I have in an arraylist. I'm trying to
> do the kind of thing that, for instance, the datagrid component does where
> it shows a list of all of the datasets on the page that could be chosen
> for binding.
>
> I have examples of doing property dropdowns this with a static enum and
> also using a collection property but I don't want a collection property.
>
> How is this done?
> Thanks,
> T
>
Teemu Keiski Guest



Reply With Quote

