Ask a Question related to ASP.NET Data Grid Control, Design and Development.
-
Johnny Cash #1
Presentation of Data in the DataGrid
I have what I believe is a basic question about presentation of data
in a DataGrid.
My DataGrid is backed by a DataTable that has a number of key values,
for example, the number 1 in the country column might represent
Australia. However, I want to go against a "look up" table to actually
present "Australia" rather than 1. Is there a best practice for
something like this. I am hoping that it is integrated with Visual
Studio but I can't seem to find the best way to do it. Is this
something that must be hand coded?
Your advice is greatly appreciated!
Thanks,
AR.
Johnny Cash Guest
-
getting data into the dataGrid
I am accessing data from an XML file and trying to put it into a dataGrid. I have traced it and know its there, but I can't seem to get it to... -
Data Grid Header Filter Renderer or how do I get aheader to filter the data in a datagrid.
Okay so on the same theme as why isn't the datagrid like Excel, I have created a (very cool) Filter header. 1) The filter looks like any other... -
Data Integration from DataGrid to DataGrid
Helo everybody! can anyone help me out? I am facing problem of providing data from one component to another. As here both the components are... -
Newbie : Moving data from datagrid to datagrid
Hello, I have a dataset1, inside a table1 and a dataview1. I have a datagrid1 with datasource the dataview1. I have another datagrid2. I want,... -
Using Same Datagrid for Different Data
I am able to use the same datagrid to show two different sets of data. These seemed efficient to me. But what if I want the first column to be a... -
Alvin Bruney [MVP] #2
Re: Presentation of Data in the DataGrid
one approach which avoids a database lookup and a table search is to bring
back the discription in another column and keep that column hidden
e.item.cells[0].visible = false for example. when you want to lookup 1 which
is in cell one you have merely to write out the value e.item.cells[0].text
--
Regards,
Alvin Bruney
[ASP.NET MVP [url]http://mvp.support.microsoft.com/default.aspx][/url]
Got tidbits? Get it here... [url]http://tinyurl.com/27cok[/url]
"Johnny Cash" <meaneyedcat@hotmail.com> wrote in message
news:e04c3215.0407280858.6bfcc0ee@posting.google.c om...>I have what I believe is a basic question about presentation of data
> in a DataGrid.
>
> My DataGrid is backed by a DataTable that has a number of key values,
> for example, the number 1 in the country column might represent
> Australia. However, I want to go against a "look up" table to actually
> present "Australia" rather than 1. Is there a best practice for
> something like this. I am hoping that it is integrated with Visual
> Studio but I can't seem to find the best way to do it. Is this
> something that must be hand coded?
>
> Your advice is greatly appreciated!
> Thanks,
> AR.
Alvin Bruney [MVP] Guest



Reply With Quote

