| Thread | Last Post | Replies |
|
| referencing child gridview values | 17 Feb 2006 22:12 GMT | 1 |
I have a Gridview (Gridview2) which changes its content (row details from Gridview1) when a row is selected in Gridview1. I want to retrieve the values (specifically the values foo_id and blee_id) from Gridview2 in the GridView1_SelectedIndexChanged event. Is this possible? How ...
|
| how ot change value in a datagrid | 16 Feb 2006 14:25 GMT | 1 |
in a table for some of the rows for one of the fields lets say field1 i've data and for some of the rows in dont have any data. so while binding the datasource to the datagrid, i want to chage this field like assigned if tha tfield contains value other wise not assigned text wiil
|
| Textbox Problem in DataGrid1_UpdateCommand | 15 Feb 2006 08:31 GMT | 1 |
Im using a simple Datagrid in a C# VS 2002 Webapplication. If I change the String in "Item.Cells[1].Controls[0] " the following code outputs after click on update: DataGrid being UPDATED - DataGrid1 : Item - 0 > OldString
|
| What is the structure hierarchy here? | 14 Feb 2006 21:15 GMT | 3 |
To update the changes in the grid I use the structure taken from the Help examples: private void dgCompany_UpdateCommand(object source, System.Web.UI.WebControls.DataGridCommandEventArgs e)
|
| DataGrid & Checkbox Template Columns | 14 Feb 2006 20:54 GMT | 7 |
I've got a simple datagrid that is populated by an adapter from SQL. I have two template columns - one with a checkbox and one with a textbox. I am allowing users to indicate which rows to remove from the grid by checking the boxes - the boxes don't autopostback, i want to remove ...
|
| Problem Extending DataGridColumn | 13 Feb 2006 22:55 GMT | 1 |
OK, here's the situation ... I have an ASPX page (.Net v1.1) that contains a DataGrid control. This DataGrid is bound to a DataSource if not PostBack. Each row in the DataGrid corresponds to 1 row in the first table in the Dataset bound to the
|
| ObjectDataSource and the DataRow | 13 Feb 2006 05:06 GMT | 3 |
Redmond, I have a problem!!! I have BusinessObject defined in the ObjectDataSource, who has a function that accepts a single record object (a DataRow) as the Update function. However when I want to update the changes in the GridView,
|
| editbutton | 10 Feb 2006 18:25 GMT | 1 |
I'm total new to asp.net. I use asp.net 1.1 as databasesource I use: selleerlingen.CommandText = "Select naamvoornaam, " & CType(Session("periode2"), String) & ", " & CType(Session("periode2"), String) & "opmerking from punten where leraarnummer =" & CType(Session("leraarnr"), ...
|
| Wrapping a grid? | 10 Feb 2006 18:16 GMT | 1 |
Is there a way to "wrap" a grid? I have about 50 bound, autogenerated columns and of course don't want it to scroll across the page, but I don't want to have to make them templated columns and have to enter 50 label controls either.
|
| about data grid | 10 Feb 2006 17:54 GMT | 2 |
i' m displaying data in datagrid., and i'm using edit command column. when i click on edit button then it is showing text box in the items where ididnt set read only, what i want to know is
|
| add column to data grid | 10 Feb 2006 15:48 GMT | 1 |
<asp:TemplateColumn> <ItemTemplate> <asp:RadioButton id="selectRadioButton" runat="server" GroupName="country" />
|
| DataFormatString of GridView control isn't working | 10 Feb 2006 15:45 GMT | 1 |
Hi all... I have a webform with a GridView on it. One of the columns is of decimal type with DataFormatString = {0:###,###.00}. When I run the page, format isn't applied, showing the number, for example, as "2108,9100". This format
|
| EditCommand - Assign a field a checkbox/listbox instead of default textbox | 09 Feb 2006 23:02 GMT | 1 |
When I fill an unbound datagrid I want to assign a field (that returns a 1 or 0 value) from a Stored Procedure a checkbox instead of the default textbox on the EditCommand event. How can this be done?
|
| After Update the grid doesn't show the change | 08 Feb 2006 17:20 GMT | 16 |
I provide the following code for the UpdateCommand event of a grid: TableCell CellCompany = e.Item.Cells[1]; TextBox CompanyBox = (TextBox)CellCompany.Controls[0]; TableCell CellCompID = e.Item.Cells[2];
|
| Can I insert a CheckBox in design mode? | 08 Feb 2006 15:48 GMT | 3 |
I would like to place a CheckBox in the grid and I do not know if it's possible to create and configure it during the design time. Thanks, Doru
|