Ask a Question related to ASP.NET Data Grid Control, Design and Development.
-
Craig Banks #1
Display 1 data row as multiple datagrid rows
If a row of data in a dataset has a lot of columns the row displaying the
data in a datagrid will run way off the screen. What I'd like to do is
display a row of data over several datagrid rows so the user doesn't have to
scroll horizontally. Essentially, I want to wrap a datagrid row (not text in
individual columns) with as much control as possible. Make sense?
While this seems simple enough on the surface, I can't figure out how to do
it and the scant information I've seen on the Internet says it can't be done
without buying a 3rd party datagrid -- Infragistics' NetAdvantage was
recommended. To make a long story short, I called them and it isn't clear
their NetAdvantage product supports this either.
In the past, I've done this building HTML tables on the fly but my team at
work wants to standardize on using the datagrid since most of our developers
come from a VB6, not a web development, background.
Thanks for the help!
Craig Banks Guest
-
how to display data in 3 columns by 4 rows format
All, I will be eternally greatful if someone can provide snippet of code, URL or reference material that shows how to display data in a "n... -
Howto display an ASP.net datagrid rows as columns and vice versa?
Hi I want to display my datagrid with the columns horizontal and rows vertical, so just the other way around. For example instead of : name ... -
Multiple rows of data into 1 row
I have a Pt ID field which is a unique number. I have a S_field which is an ID # that lines to the Pt ID. There are multiple Pt ID's for one... -
Edit multiple rows of a datagrid (ASP 1.1)
Hi Silly question here I guess..... I know I can use an EditCommandColumn to edit a particular row in a datagrid: ... -
Multiple Header rows in datagrid
I have a need for multiple header rows in a datagrid. One header row contains the column headings, the next header row contains html input fields,... -
Jos #2
Re: Display 1 data row as multiple datagrid rows
"Craig Banks" <ban01@co.henrico.va.us> wrote in message
news:eNZpac89DHA.4084@tk2msftngp13.phx.gbl...to> If a row of data in a dataset has a lot of columns the row displaying the
> data in a datagrid will run way off the screen. What I'd like to do is
> display a row of data over several datagrid rows so the user doesn't havein> scroll horizontally. Essentially, I want to wrap a datagrid row (not textdo> individual columns) with as much control as possible. Make sense?
>
> While this seems simple enough on the surface, I can't figure out how todone> it and the scant information I've seen on the Internet says it can't bedevelopers> without buying a 3rd party datagrid -- Infragistics' NetAdvantage was
> recommended. To make a long story short, I called them and it isn't clear
> their NetAdvantage product supports this either.
>
> In the past, I've done this building HTML tables on the fly but my team at
> work wants to standardize on using the datagrid since most of ourI would suggest using a datalist instead of a datagrid.> come from a VB6, not a web development, background.
>
> Thanks for the help!
You will lose the advantage of the datagrid to generate all
columns automatically, so you'll need to build templates.
Sorting and paging will also require a little bit more work
with a datalist.
--
Jos Branders
Jos Guest



Reply With Quote

