| Thread | Last Post | Replies |
|
| Datagrid to Excel Export Problem while adding summation values | 10 May 2004 14:35 GMT | 1 |
We are getting a strange problem in exporting data grid to excel. We have a data grid in hand with basic data bounded to it and adding some summary data as DataGridItems rows at particular levels in datagrid (summation values) When we export the grid to excel using the following ...
|
| Best way bind "data" without a database source | 10 May 2004 11:38 GMT | 3 |
Hi, not sure if this would be the right place. Kinda new to .net, but have a task / exercise where we must use a datagrid, datalist etc (one of them) without any invovlement of a database. We must use the contents of an array to display the data in one of them. Which is possible ...
|
| Print DataGrid in ASP.NET - Example ? | 10 May 2004 10:04 GMT | 1 |
I have an ASP.net application and I want to print the datagrid Does any one have a ASP.net \ VB.net example for that ? ( I don't want to use window.print or first export it to excel ) Elad.
|
| need some help | 10 May 2004 02:08 GMT | 1 |
Can anyone point me to a site or something on the datagrid? I'm looking to do something with the datagrid and not sure how to code for it. I currently have a javascript grid that does everything I need but I can't
|
| Controls Hierarchy in DataGrid | 07 May 2004 22:37 GMT | 2 |
It appears that there are only 2 ways to get to a particular control in a DataGrid - either use the FindControl method or try to work your way through the (apparently undocumented) hierarchy of controls (dgItem.Controls[0].Controls[0].Controls[2]...).
|
| Invalid CurrentPageIndex error | 07 May 2004 13:17 GMT | 14 |
Invalid CurrentPageIndex error seems to occur even when CurrentPageIndex is set to zero just before binding the datagrid. Can anyone provide any more insights on this problem. Thanks in advance.
|
| Server-side event for row click? | 07 May 2004 11:56 GMT | 1 |
is it possible to get a server-side event when the user clicks on a datagrid row? The user shouldn't be forced to click on a certain column entry; instead the event should be raised wherever on the row area the click happens... Since this is quite urgent I would appreciate any ...
|
| dynamically changing binded data at runtime | 07 May 2004 07:26 GMT | 1 |
Hi, I got a query like this select longTitle, startDate, endDate, eventId, eventUrl from events I got a datagrid like this
|
| Bug in _EditCommand, event didn't fire? +my solution | 07 May 2004 01:55 GMT | 3 |
I had a problem that the _EditCommand didn't fire when the event was created in the .vb code. I did like this: 1. I created a datagrid (dgrdProducts) in design view. 2. Then I created the columns in code, like this, the method is called from Page_Load: Private Sub CreateColumns()
|
| Getting the value of hidden fields after an update button has been clicked | 06 May 2004 21:28 GMT | 2 |
All, I have a data grid that uses template controls to support editing data, a footer template to support adding new data, and a delete button to delete a row. I store the unique id for the row from the
|
| Is it possible to get a control by ID like e.Item.Cells[1].Controls["toto"] | 06 May 2004 20:36 GMT | 2 |
Is it possible to get a control by ID like that : void DataGrid1_ValidateEdit(object sender, DataGridCommandEventArgs e) { object obj = e.Item.Cells[2].Controls["myControlID"];
|
| Datagrig sorting problem!(Bug in asp.net?) | 06 May 2004 18:51 GMT | 1 |
I'am experiencing that Asp.net can not handle sorting of datagrid when the number of items exceed a few thousands. Is anyone aware of this problem? The sorting works fine when the number of item in the datagrid gets lower.
|
| DataGrid not displaying in new mode | 06 May 2004 17:58 GMT | 2 |
I just discovered that the datagrid does not display if the webform is in new mode. Let's say, for instance, that my datagrid is for contacts related to a company, so that companyid id a foreign key in the contact table. Well, if the contact does not yet exist, the datagrid will ...
|
| problem about datagrid | 06 May 2004 05:08 GMT | 1 |
I have a problem in using the DataGrid. In my web form, i've put a <asp:button/> button, if it is clicked, a function will be called to connect to the database, get the data and return as a dataset. Finally, a DataGrid will be "binded" by the DataSet.
|
| Show DataGrid Item Count? | 05 May 2004 15:01 GMT | 3 |
I have a DataGrid in an ASP.NET page that is the third of three nested controls (2 DataLists and the DataGrid). It uses relations in the DataSet and a DataView RowFilter to determine what data to bind to and display. What I'd like to do is show a count of items in the DataGrid ...
|