Ask a Question related to ASP.NET Data Grid Control, Design and Development.
-
dalbo #1
DropDownList show the name of columns of dataGrid
Hello, I make a dataGrid and i like to show the name of the columns of the
dataGrid in a DropDownList. For example, if my dataGrid have three columns
called "NAME" "ADDRESS" "CITY" i like show "NAME" "ADDRESS" "CITY" in the
DropDownList.
Thanks David, and sorry for my poor english.
dalbo Guest
-
How to Hide & show the columns in ADVANCED DATAGRID.?
HI, Am working with Advanced Datagrid. Problem am facing is.. i want to hide & show the columns in AdvancedDataGridColumnGroup. By default am... -
Does MS Access have a Show Columns SQL command
I have recently discovered how to Alter Add and Drop columns from MS Access. This is going to help me a lot with updating multiple databases when I... -
Columns and Inherited Datagrid...Active Schema does not support columns
I have a class which has inherited from datagrid, to provide some custom functionality, row select, mouse overs etc All is working fine apart from... -
can't get data to show with bound columns
I'm trying to create a DataGrid filled with values from a DataSet and I want the user to be able to show and hide whichever columns they choose. I... -
Conditionally show columns in SQL
Almost positive that this is impossible without using dynamic sql! -- Dean Savovic www.teched.hr "Pierre Dippenaar" <pierre@sentinal.co.za>... -
dalbo #2
Re: DropDownList show the name of columns of dataGrid
Yes, I know and in my DataGrid i see the name of the columns. But my problem
is i need to make a new DropDownList with the name of the columns.
"Eliyahu Goldin" escribió:
> You can find the names of the columns in the datagrid Columns property
> unless the grid is AutoGenerated.
>
> Eliyahu
>
> "dalbo" <dalbo@discussions.microsoft.com> wrote in message
> news:4EBA8731-F9FD-4274-8945-633506CEA16F@microsoft.com...>> > Hello, I make a dataGrid and i like to show the name of the columns of the
> > dataGrid in a DropDownList. For example, if my dataGrid have three columns
> > called "NAME" "ADDRESS" "CITY" i like show "NAME" "ADDRESS" "CITY" in the
> > DropDownList.
> >
> > Thanks David, and sorry for my poor english.
>
>dalbo Guest
-
Eliyahu Goldin #3
Re: DropDownList show the name of columns of dataGrid
You can find the names of the columns in the datagrid Columns property
unless the grid is AutoGenerated.
Eliyahu
"dalbo" <dalbo@discussions.microsoft.com> wrote in message
news:4EBA8731-F9FD-4274-8945-633506CEA16F@microsoft.com...> Hello, I make a dataGrid and i like to show the name of the columns of the
> dataGrid in a DropDownList. For example, if my dataGrid have three columns
> called "NAME" "ADDRESS" "CITY" i like show "NAME" "ADDRESS" "CITY" in the
> DropDownList.
>
> Thanks David, and sorry for my poor english.
Eliyahu Goldin Guest
-
dalbo #4
Re: DropDownList show the name of columns of dataGrid
The problem is i have a dataGrid with three columns called NAME ADDRESS CITY.
If i create a DropDownList and i use
DropDownList1.DataTextField = "NOMBRE"; in my DropDownList i see the list of
names but i like to do something that this
DropDownList1.DataTextField = "?????????"; to see in the DropDownList
NAME,ADDRESS,CITY ,it is to say, the name of the columns.
Thanks for the help and sorry for my poor english again.
David.
Example of table
NAME | ADDRESS | CITY
| |
David | Micasa | habichuelas
Otro | distinto | mas
"Eliyahu Goldin" escribió:
> Can you elaborate what exactly the problem is? Creating a ddl? Populating it
> with column names? What did you try that didn't work for you?
>
> Eliyahu
>
> "dalbo" <dalbo@discussions.microsoft.com> wrote in message
> news:4FFA0F4C-CF90-47FC-92FA-8B588CF87E40@microsoft.com...> problem> > Yes, I know and in my DataGrid i see the name of the columns. But my> the> > is i need to make a new DropDownList with the name of the columns.
> >
> > "Eliyahu Goldin" escribió:
> >> > > You can find the names of the columns in the datagrid Columns property
> > > unless the grid is AutoGenerated.
> > >
> > > Eliyahu
> > >
> > > "dalbo" <dalbo@discussions.microsoft.com> wrote in message
> > > news:4EBA8731-F9FD-4274-8945-633506CEA16F@microsoft.com...
> > > > Hello, I make a dataGrid and i like to show the name of the columns of> columns> > > > dataGrid in a DropDownList. For example, if my dataGrid have three> the> > > > called "NAME" "ADDRESS" "CITY" i like show "NAME" "ADDRESS" "CITY" in>> > > > DropDownList.
> > > >
> > > > Thanks David, and sorry for my poor english.
> > >
> > >
> > >
>
>dalbo Guest
-
Eliyahu Goldin #5
Re: DropDownList show the name of columns of dataGrid
Can you elaborate what exactly the problem is? Creating a ddl? Populating it
with column names? What did you try that didn't work for you?
Eliyahu
"dalbo" <dalbo@discussions.microsoft.com> wrote in message
news:4FFA0F4C-CF90-47FC-92FA-8B588CF87E40@microsoft.com...problem> Yes, I know and in my DataGrid i see the name of the columns. But mythe> is i need to make a new DropDownList with the name of the columns.
>
> "Eliyahu Goldin" escribió:
>> > You can find the names of the columns in the datagrid Columns property
> > unless the grid is AutoGenerated.
> >
> > Eliyahu
> >
> > "dalbo" <dalbo@discussions.microsoft.com> wrote in message
> > news:4EBA8731-F9FD-4274-8945-633506CEA16F@microsoft.com...> > > Hello, I make a dataGrid and i like to show the name of the columns ofcolumns> > > dataGrid in a DropDownList. For example, if my dataGrid have threethe> > > called "NAME" "ADDRESS" "CITY" i like show "NAME" "ADDRESS" "CITY" in> >> > > DropDownList.
> > >
> > > Thanks David, and sorry for my poor english.
> >
> >
Eliyahu Goldin Guest
-
dalbo #6
Re: DropDownList show the name of columns of dataGrid
This is the problem, there can be a different set of columns because the
table of the DataGrid it is going to change very frequently. And i don't know
how many columns have the new table.
David
"Eliyahu Goldin" escribió:
> David,
>
> Will the dropdownlist always contain items NAME,ADDRESS,CITY? Or there can
> be a different set of columns depending on the table bound to the datagrid?
>
> Eliyahu
>
> "dalbo" <dalbo@discussions.microsoft.com> wrote in message
> news:5BE8B3EE-E544-4374-B9DA-50CF7527C263@microsoft.com...> CITY.> > The problem is i have a dataGrid with three columns called NAME ADDRESS> of> > If i create a DropDownList and i use
> > DropDownList1.DataTextField = "NOMBRE"; in my DropDownList i see the list> Populating it> > names but i like to do something that this
> > DropDownList1.DataTextField = "?????????"; to see in the DropDownList
> > NAME,ADDRESS,CITY ,it is to say, the name of the columns.
> >
> > Thanks for the help and sorry for my poor english again.
> >
> > David.
> >
> > Example of table
> >
> > NAME | ADDRESS | CITY
> > | |
> > David | Micasa | habichuelas
> > Otro | distinto | mas
> >
> > "Eliyahu Goldin" escribió:
> >> > > Can you elaborate what exactly the problem is? Creating a ddl?> property> > > with column names? What did you try that didn't work for you?
> > >
> > > Eliyahu
> > >
> > > "dalbo" <dalbo@discussions.microsoft.com> wrote in message
> > > news:4FFA0F4C-CF90-47FC-92FA-8B588CF87E40@microsoft.com...
> > > > Yes, I know and in my DataGrid i see the name of the columns. But my
> > > problem
> > > > is i need to make a new DropDownList with the name of the columns.
> > > >
> > > > "Eliyahu Goldin" escribió:
> > > >
> > > > > You can find the names of the columns in the datagrid Columns> columns of> > > > > unless the grid is AutoGenerated.
> > > > >
> > > > > Eliyahu
> > > > >
> > > > > "dalbo" <dalbo@discussions.microsoft.com> wrote in message
> > > > > news:4EBA8731-F9FD-4274-8945-633506CEA16F@microsoft.com...
> > > > > > Hello, I make a dataGrid and i like to show the name of the> in> > > the
> > > > > > dataGrid in a DropDownList. For example, if my dataGrid have three
> > > columns
> > > > > > called "NAME" "ADDRESS" "CITY" i like show "NAME" "ADDRESS" "CITY">> > > the
> > > > > > DropDownList.
> > > > > >
> > > > > > Thanks David, and sorry for my poor english.
> > > > >
> > > > >
> > > > >
> > >
> > >
> > >
>
>dalbo Guest
-
Eliyahu Goldin #7
Re: DropDownList show the name of columns of dataGrid
David,
Will the dropdownlist always contain items NAME,ADDRESS,CITY? Or there can
be a different set of columns depending on the table bound to the datagrid?
Eliyahu
"dalbo" <dalbo@discussions.microsoft.com> wrote in message
news:5BE8B3EE-E544-4374-B9DA-50CF7527C263@microsoft.com...CITY.> The problem is i have a dataGrid with three columns called NAME ADDRESSof> If i create a DropDownList and i use
> DropDownList1.DataTextField = "NOMBRE"; in my DropDownList i see the listPopulating it> names but i like to do something that this
> DropDownList1.DataTextField = "?????????"; to see in the DropDownList
> NAME,ADDRESS,CITY ,it is to say, the name of the columns.
>
> Thanks for the help and sorry for my poor english again.
>
> David.
>
> Example of table
>
> NAME | ADDRESS | CITY
> | |
> David | Micasa | habichuelas
> Otro | distinto | mas
>
> "Eliyahu Goldin" escribió:
>> > Can you elaborate what exactly the problem is? Creating a ddl?property> > with column names? What did you try that didn't work for you?
> >
> > Eliyahu
> >
> > "dalbo" <dalbo@discussions.microsoft.com> wrote in message
> > news:4FFA0F4C-CF90-47FC-92FA-8B588CF87E40@microsoft.com...> > problem> > > Yes, I know and in my DataGrid i see the name of the columns. But my> > > is i need to make a new DropDownList with the name of the columns.
> > >
> > > "Eliyahu Goldin" escribió:
> > >
> > > > You can find the names of the columns in the datagrid Columnscolumns of> > > > unless the grid is AutoGenerated.
> > > >
> > > > Eliyahu
> > > >
> > > > "dalbo" <dalbo@discussions.microsoft.com> wrote in message
> > > > news:4EBA8731-F9FD-4274-8945-633506CEA16F@microsoft.com...
> > > > > Hello, I make a dataGrid and i like to show the name of thein> > the> > columns> > > > > dataGrid in a DropDownList. For example, if my dataGrid have three> > > > > called "NAME" "ADDRESS" "CITY" i like show "NAME" "ADDRESS" "CITY"> > the> >> > > > > DropDownList.
> > > > >
> > > > > Thanks David, and sorry for my poor english.
> > > >
> > > >
> > > >
> >
> >
Eliyahu Goldin Guest
-
Eliyahu Goldin #8
Re: DropDownList show the name of columns of dataGrid
You need to databind the ddl to the datagrid Column collection. Try
<asp:DropDownList ... DataSource = <%# myGrid.Columns %>
DataTextField="HeaderText">
Alternatively you can do it in the code. Note again, that this will work
only for non-AutoGenerated columns.
Eliyahu
"dalbo" <dalbo@discussions.microsoft.com> wrote in message
news:4E8FCEDB-2F77-49CF-951F-662C8353243A@microsoft.com...know> This is the problem, there can be a different set of columns because the
> table of the DataGrid it is going to change very frequently. And i don'tcan> how many columns have the new table.
>
> David
>
> "Eliyahu Goldin" escribió:
>> > David,
> >
> > Will the dropdownlist always contain items NAME,ADDRESS,CITY? Or theredatagrid?> > be a different set of columns depending on the table bound to theADDRESS> >
> > Eliyahu
> >
> > "dalbo" <dalbo@discussions.microsoft.com> wrote in message
> > news:5BE8B3EE-E544-4374-B9DA-50CF7527C263@microsoft.com...> > > The problem is i have a dataGrid with three columns called NAMElist> > CITY.> > > If i create a DropDownList and i use
> > > DropDownList1.DataTextField = "NOMBRE"; in my DropDownList i see themy> > of> > Populating it> > > names but i like to do something that this
> > > DropDownList1.DataTextField = "?????????"; to see in the DropDownList
> > > NAME,ADDRESS,CITY ,it is to say, the name of the columns.
> > >
> > > Thanks for the help and sorry for my poor english again.
> > >
> > > David.
> > >
> > > Example of table
> > >
> > > NAME | ADDRESS | CITY
> > > | |
> > > David | Micasa | habichuelas
> > > Otro | distinto | mas
> > >
> > > "Eliyahu Goldin" escribió:
> > >
> > > > Can you elaborate what exactly the problem is? Creating a ddl?> > > > with column names? What did you try that didn't work for you?
> > > >
> > > > Eliyahu
> > > >
> > > > "dalbo" <dalbo@discussions.microsoft.com> wrote in message
> > > > news:4FFA0F4C-CF90-47FC-92FA-8B588CF87E40@microsoft.com...
> > > > > Yes, I know and in my DataGrid i see the name of the columns. Butthree> > property> > > > problem
> > > > > is i need to make a new DropDownList with the name of the columns.
> > > > >
> > > > > "Eliyahu Goldin" escribió:
> > > > >
> > > > > > You can find the names of the columns in the datagrid Columns> > columns of> > > > > > unless the grid is AutoGenerated.
> > > > > >
> > > > > > Eliyahu
> > > > > >
> > > > > > "dalbo" <dalbo@discussions.microsoft.com> wrote in message
> > > > > > news:4EBA8731-F9FD-4274-8945-633506CEA16F@microsoft.com...
> > > > > > > Hello, I make a dataGrid and i like to show the name of the> > > > the
> > > > > > > dataGrid in a DropDownList. For example, if my dataGrid have"CITY"> > > > columns
> > > > > > > called "NAME" "ADDRESS" "CITY" i like show "NAME" "ADDRESS"> > in> >> > > > the
> > > > > > > DropDownList.
> > > > > > >
> > > > > > > Thanks David, and sorry for my poor english.
> > > > > >
> > > > > >
> > > > > >
> > > >
> > > >
> > > >
> >
> >
Eliyahu Goldin Guest



Reply With Quote

