| Thread | Last Post | Replies |
|
| Capture CheckBox Click Event | 16 Dec 2003 19:41 GMT | 1 |
I have a datagrid with a checkbox column. The column is bound to adatabase, and I have no problem capturing a click event on the checkbox using the OnCheckChanged event handler. Here is a sample of the html used to build the column:
|
| DataGrid Cell with Image Button In It | 16 Dec 2003 14:55 GMT | 2 |
I create a datagrid and at runtime I add an ImageButton to certain cells(e.Item.Cells.Controls.Add(imgbutton)). Now when I click on a row that contain an image button, in the ItemCommand event the row is return.
|
| How do I navigate to First and Last record in a Dtagrid having many Pages. | 16 Dec 2003 14:26 GMT | 1 |
How do I navigate through first and last record in a datagrid. I know we have only Previous and Next option in it . Can I add First and Last option as well.? Regards
|
| multiple grids on one page - use single Update/Edit/Cancel commands | 16 Dec 2003 10:14 GMT | 3 |
Hi - can you access the grid id from DataGridCommandEventArgs ? I have multiple similar grids on the one page, and want to use the same events to control them, but need to tell it which grid to bind. Ta muchely,
|
| Bug in DataGrid - ItemCommand event does not fire for ButtonColumn if ButtonType="PushButton" | 16 Dec 2003 06:40 GMT | 4 |
We have a Datagrid which contains a template column with a button in it, as well as an actual button column. If either of the buttons are clicked, the ItemCommand event does not fire. If however, the ButtonType of the ButtonColumn is changed to
|
| Why all my Datagrid Events not firing? | 16 Dec 2003 03:33 GMT | 4 |
I have created a datagrid on an ASP.Net form, When I try to capture any of the "Command" events e.g. (ItemCommand) the event does not fire. I have tried adding all the possible buttons and have tried all the events and the events are not executed.
|
| How to get the data display value in Datagrid? | 16 Dec 2003 03:31 GMT | 1 |
My datagrid design Item_no, Item_name, Size 1 ABC S 2 BCD M
|
| create a dataview from a datagrid | 15 Dec 2003 01:42 GMT | 1 |
Does anyone know how to create a dataview from a datagrid. The examples I see for sorting are persisting the dataset, datatable, or dataview in viewstate. It seems like a waste for the datagrid and the dataview to both be stored in viewstate. Any ideas would be greatly
|
| simple examples needed with sql2000, asp.net, visual basic | 14 Dec 2003 13:05 GMT | 2 |
Once again at my wonderful job i've been given the task of "come teach your fellow idiot coworkers the skills you have" I write software for a company in chicago. I use visual basic on asp.net type platform.
|
| DataGrid EditItem ClientID | 12 Dec 2003 23:01 GMT | 8 |
I have a column in a DataGrid with the following EditItemTemplate: <EditItemTemplate> <TextArea runat="server" Class="NormalText" wrap="soft" id="TxtDescription" rows="3" cols="85"
|
| Fully editable datagrid | 12 Dec 2003 08:41 GMT | 5 |
I need to have a fully editable datagrid control for my webforms. I have managed to get the control so that I have one edit button at the bottom of the form and pressing this button allows editing of any existing row in the grid. I then press an Update button and write all
|
| Datav | 12 Dec 2003 01:34 GMT | 1 |
I've got a DataGrid bound to a DataView that is sorted. ("Aha!", I hear you saying.) When I go to EditMode on the grid I get the right DataRow, but I get the wrong index from e.item.itemindex (of course.) Therefore, what I'm
|
| How can join two table in one datagrid? | 11 Dec 2003 07:43 GMT | 1 |
I have a two tables as following, 1.Customer table - cust_no - cust_name
|
| Column and Data Formats using BoundColumn | 10 Dec 2003 21:14 GMT | 1 |
I am using BoundColumn to create new columns and dynamically add them to a DataGrid, however I cannot see how to apply simply formatting (e.g. date formats of "dd/mmm/yyyy" and right aligning the column). The ItemStyle is read only and DataFormatString doesn't seem to allow
|
| Selectively skip binding items | 10 Dec 2003 16:37 GMT | 2 |
This must have been asked before, but I can't google it up. I would like to run an expression on items as they are bound to a DataGrid, then if the expression is true, allow the bind to happen, else... skip that item. What is the best place to do this? I looked in ItemDataBound ...
|