| Thread | Last Post | Replies |
|
| Datagrid - Windows - DataGridBoolColumn - How can I disable all the check boxes in the column | 15 Jun 2005 15:07 GMT | 3 |
I tried boolCol.ReadOnly = true and a bunch of other things but can't get the check boxes for the datagrid's column for all rows to be disabled? Can someone tell me how to do this? MyGrid.ReadOnly = true;
|
| How can I sum Columns on a datagrid? | 15 Jun 2005 05:46 GMT | 7 |
I placed some labels on the footertemplate of each column that I want to sum. But I dont know hot so sum and show the total in the labels.
|
| SortCommand and custom headers - why won't they play nice? | 15 Jun 2005 00:15 GMT | 3 |
I have a datagrid on my webform. I am programmatically adding columns to it and hooking it up to a dataset. In my ItemDataBound(), I am adding some text and background coloring to the Items, and to the Header as well.
|
| Make certain datagrid rows fixed | 14 Jun 2005 19:21 GMT | 1 |
If you have worked with excel, you may see that as you scroll down th rows, certain rows remain fixed but all the records move up. I needed t incorporate the same functionality in asp.net or C# using a datagrid Any other control will also do..
|
| How can I disable a Delete button Based on Condition | 14 Jun 2005 19:09 GMT | 2 |
I have a Datagrid displaying "Start Date" and "End Date" with a Delete Button. I want to disable the Delete Button if the Start Date is less than current date. I believe you do this in the "DataGrid1_ItemDataBound" but not sure what to code here.
|
| ASP.net datagrid with more than 1 datasource | 14 Jun 2005 10:28 GMT | 1 |
Is it possible to build a datagrid with one column having test1 as a datasource and another column having test2 as a datasource: string[] test1 = new string[]{"1", "2", "3"}; string[] test2 = new string[]{"John", "Marc", "Tom"};
|
| Datagrid Return the 1st row Only | 14 Jun 2005 07:47 GMT | 3 |
I have a ASP.Net application written in C# with the use of Visual Studio 2003. When I develop and test the application in my company using ASP.Net Framework 1.4.33.2 in Windows XP Enterprise Standard Edition and Windows XP Professional, the datagrid control can return all records. ...
|
| dropdownlist in datagrid... | 14 Jun 2005 06:30 GMT | 1 |
I am a newbie to dotnet. I have a datagrid that also has a ddl and a button in each row. When the button is clicked I would like to perform an action based on what is selected in the dropdown list using the rows id as an identifier to the
|
| Howto bind CheckBox to the datagrid/ Then update the database field when the checkbox is clicked. | 13 Jun 2005 03:30 GMT | 4 |
I am trying to update the database field when the checkbox is clicked. I am trying to modified the following solution but.. got stuck on the ItemCommand Events where Dim prodchknew As CheckBox = e.Item.FindControl("chk")
|
| SortCommand not firing on DataGrid, EVENTTARGET="," | 13 Jun 2005 02:42 GMT | 2 |
I've read all there is on why SortCommand firing can fail in this group, and haven't found a solution. Essentially the SortCommand doesn't fire, no matter what I do. I've set the handler in code, put an OnSortCommand= in the HTML, tried all different initialization
|
| how to know print as reached to the client.. | 12 Jun 2005 22:38 GMT | 1 |
(Type your message here) Hai i have a webpage with one imagebutton for print the data, how can i know whether the print out as come or not to the client, can we trace the confirmation from the printer, --------------------------------
|
| Manipulate the grids output html | 10 Jun 2005 19:17 GMT | 1 |
The datagrid auto generates html for everything in the grid, including controls. Can you manipulate the html the grid outputs? Can you make this auto generated name for a text box, dgdANSI835:_ctl2:type, into this manipulated name for the text box, type_119789 (where 119789 ...
|
| How do I get the Clicked Event on Hyperlink to execute a Command? | 09 Jun 2005 14:41 GMT | 1 |
I have a ButtonColumn as a link. When the user clicks on it, I want to execute a command to query a database and display data in another grid. I need to get the key and pass it to the query. Here's part of the DataGrid HTML: <asp:ButtonColumn Text="Select" ...
|
| Edit a row in a parametrized datagrid | 08 Jun 2005 17:06 GMT | 1 |
I am working in ASP.NET & SQLServer and: my problem is that I have a DataGrid wich is created sometimes with a whole SQLServer table, and other times with only some rows of it (I make a search in the same page).
|
| delete button problems in datagrid | 08 Jun 2005 15:16 GMT | 12 |
i have a datagrid with a delete button which for some reason quit working, i'm thinking its a problem with the database but here is the code: SqlCommand cmdDeletePIN = null; try
|