Ask a Question related to ASP.NET Data Grid Control, Design and Development.
-
Viren #1
trying to create data grid on the fly, with templated columns, and then updating all rows in the grid
Hi,
Please help, I'm trying to create data grid on the fly, with templated
columns, for editing, and then updating all rows in the grid on one button
click.
Thanks,
Viren
Viren Guest
-
Advanced data grid: how to remember expanded rows?
I am using an advanced data grid binded to a HierarchicalData object which is instantiated from an XMLList. When the data changes and the chart... -
Implementing columns collection in Data grid custom control
Dear all, I am building a custom control data grid with some necessary functionalities. let it be <myCustomDataGrid> in .Net data grid we have... -
How do you create a drop-down hierarchical Data Grid?
Is there a way to dynamically create a drop-down hierarchical data grid? You may want to look at this reference. It has a 1-level hierarchy. ... -
Data grid columns still showing up
I am using a run-time connection to populate a datagrid and when I try to hide my columns it does not work. If I set the column index higher I get... -
Scrollable grid with stationary foxed rows/columns
Is it possible to create a DataGrid or Table where the control will be a specific size, but the data in the grid will scroll vertically/horizontally... -
Saravana [MVP] #2
Re: trying to create data grid on the fly, with templated columns, and then updating all rows in the grid
To know how to create datagrid dynamically, check out this article.
[url]http://www.dotnetbips.com/displayarticle.aspx?id=66[/url]
Creating Datagrid Templated Columns Dynamically
[url]http://www.dotnetbips.com/displayarticle.aspx?id=84[/url]
[url]http://www.dotnetbips.com/displayarticle.aspx?id=85[/url]
To know how to have editable datagrid, check out this article.
[url]http://www.microsoft.com/india/msdn/articles/SolutionstoTopFourQuestions.asp[/url]
x
--
Saravana
Microsoft MVP - ASP.NET
[url]www.extremeexperts.com[/url]
"Viren" <viren@isonome.com> wrote in message
news:egoSKXLjDHA.2276@TK2MSFTNGP10.phx.gbl...> Hi,
>
> Please help, I'm trying to create data grid on the fly, with templated
> columns, for editing, and then updating all rows in the grid on one button
> click.
>
> Thanks,
>
> Viren
>
>
Saravana [MVP] Guest
-
Viren #3
Re: trying to create data grid on the fly, with templated columns, and then updating all rows in the grid
Hi Saravana
I've tried the links that you forwarded me, and all it does is recreate what
autogeneratecolums does.
I'm creating a budgeting interface that would allow for 2 fixed columns,
with code and description, and "x" no of textbox-filled columns, as per the
type of budget yearly half-yearly & monthly budgeting.
The the user can update the multiple rows and send it through to the server.
If the links, do this, can you please mail through a working example.
Thanking you in advance,
Viren
"Saravana [MVP]" <saravank@sct.co.in.nospam> wrote in message
news:%23u8l$QMjDHA.3568@tk2msftngp13.phx.gbl...[url]http://www.microsoft.com/india/msdn/articles/SolutionstoTopFourQuestions.asp[/url]> To know how to create datagrid dynamically, check out this article.
> [url]http://www.dotnetbips.com/displayarticle.aspx?id=66[/url]
>
> Creating Datagrid Templated Columns Dynamically
> [url]http://www.dotnetbips.com/displayarticle.aspx?id=84[/url]
> [url]http://www.dotnetbips.com/displayarticle.aspx?id=85[/url]
>
> To know how to have editable datagrid, check out this article.
>button> x
>
> --
> Saravana
> Microsoft MVP - ASP.NET
> [url]www.extremeexperts.com[/url]
>
>
>
> "Viren" <viren@isonome.com> wrote in message
> news:egoSKXLjDHA.2276@TK2MSFTNGP10.phx.gbl...> > Hi,
> >
> > Please help, I'm trying to create data grid on the fly, with templated
> > columns, for editing, and then updating all rows in the grid on one>> > click.
> >
> > Thanks,
> >
> > Viren
> >
> >
>
Viren Guest
-
Prabhu #4
Re: trying to create data grid on the fly, with templated columns, and then updating
For i As Integer = 0 To Session("months")
ct = New BoundField
ct.DataField = "m" & i + 1
GridView1.Columns.Add(ct)
dt.Columns.Add("m" & i + 1)
NextPrabhu Guest



Reply With Quote

