Home All Groups Group Topic Archive Search About

.NET DataGrid Control

microsoft.public.dotnet.framework.aspnet.datagridcontrol
Score can anyone solve this??
G Dean Blake - 15 Jan 2005 12:54 AM - 6 messages
This datagrid (dgbudgets) binds perfectly and column4 is a non visible column. Immediately after the bind, however, column(4).visible is true both in the grid and the grid retrieved from the session variable.  This is my first mystery - it ...
Score What's the trick to getting a checkbox value
Rock - 14 Jan 2005 10:38 PM - 2 messages
The results of checkbox.checked always returns false even when it's true. What am I missing or doing wrong or what's the secret??? <asp:TemplateColumn HeaderText="Validated"> <ItemTemplate> <asp:checkbox id=chk1 runat="server" Checked='<%# ...
Score Displaying XML/HTML code in datagrid
wayne t via DotNetMonster.com - 13 Jan 2005 4:25 PM - 2 messages
Hi, Can anyone suggest how I might display unrendered XML/html code in a datagrid column?  The column holds error log entries which may contain XML  and html. I've tried TemplateColumn with non-editable TextBox to display the code but the DataGrid still attempts to render the code.  ...
Score Dynamic Columns
Amr Moselhy - 13 Jan 2005 1:09 PM - 2 messages
Hi Everyone i have problem that columns created dynamically in the run time using bining cannot be accessed later on. now i bind a datagrid to a datasource e.g datagrid.datasource = datatable datagrid.DataBind(); so the data are loaded into the datagrid correctly ...
Score The IListSource does not contain any data sources. <-- ?
KK - 13 Jan 2005 8:31 AM - 2 messages
Hi When I execute an SQL steatement, I retreive a Dataset. For some queries which does not return any data, If I assign it to the datagrid.datasource and bind, it throws the following exception However, dataset doesn't say its NULL. So that Ican ...
Score Adding scrollbars to a datagrid
M. D'Costa - 13 Jan 2005 7:47 AM - 3 messages
Hello, I have a question about adding vertical and horizontal scrollbars to a datagrid. I realise that they are protected properties, but am unsure of how to create a derived class that would contain them. Any help will be appreciated. ...
Score Datagrid within a Datagrid, treeview style....
Roy - 13 Jan 2005 4:21 AM - 11 messages
Hey all, As the subject suggests, that's what I'm trying to accomplish. I'd trying to design something akin to this: ->First_Name | Last_Name | blah1 | blah2 | blah3 --->X | Y | Z --->X | Y | Z --->X | Y | Z ...
Score order of fields
Laura K - 12 Jan 2005 9:50 PM - 10 messages
I am having a problem with the order of the columns with the datagrid.  When ever I try to make columns that are not in the same order as the fields in the database the datagrid does not show in my live page. ...
Score Getting Cloumn number
ree32 - 12 Jan 2005 9:30 PM - 2 messages
IT doesn't work in ASP.net currentCell is not a member of 'System.Web.UI.WebControls.DataGrid'. ...
Score DataGrid with Slanted Headers
Mark Oueis - 12 Jan 2005 9:07 PM - 2 messages
I've got a tough question. I'm looking to have a data grid with many columns, most of which are custom columns. To make room for all that i would like to have slanted headers, headers that are not completely verticle, but slightly ...
Score Replication
an - 12 Jan 2005 8:15 PM - 4 messages
I need to compare tables data between SQL servers and if data is different move the data. Does some one has an example how to do this? ...
Score Getting Cloumn number
ree32 - 12 Jan 2005 4:39 AM - 2 messages
I have a datagrid with link buttons in each cell. So when the button is selected. The cell changes the background color. But when a a new button is selected the old cell has to change to the normal color and the new cell has to change to a new color. ...
Score DataGrid won't Cancel or Update
Robert McPherson - 11 Jan 2005 10:37 PM - 2 messages
I am new to .net so please be patient.  I am trying to pass information between two pages.  I need the value to be passed into the second page in order to populate the datagrid.  When I do this I can ...
Score Counting Clicks
Bart - 11 Jan 2005 7:50 PM - 5 messages
Hi all, A customer of mine has an page with a datagridcontrol.. The grid contains a description field of a pdf document and a HyperlinkColumn to the actual pdf file..(the location is read from a database) Now my client asks if its possible to count how many times a pdf is ...
Score Store Formatinformation of an Datagrid
Gh0st - 10 Jan 2005 9:11 AM - 11 messages
Is it possible to Store the format of an Datagrid (color,size,... of each Cell/Row/Column), to use it on another Datagrid?? At the Moment I have a Datagrid an I store it in a Session-Variable Session("Print") = DataGrid1 ...
Score Datagrid Updatecommand problem!! Urgent
Serkan DIRIARIN - 10 Jan 2005 12:11 AM - 2 messages
Hi! I have a datagrid and i want to update new values after editing datagrid. i am using following code; tb = CType(e.Item.Cells(1).Controls(0), TextBox) dv.Item(0).Item(1) = tb.Text but when i try, i am getting original values from textbox ...