| Thread | Last Post | Replies |
|
| Hyperlink color question | 20 May 2004 15:57 GMT | 3 |
I have a hyperink column in my datagrid <asp:datagrid ... > <ItemStyle ForeColor="black" Font-Names="Verdana, Arial, Helvetica" Font-Size="10px"
|
| confirm before delete ? | 20 May 2004 15:16 GMT | 2 |
how would i add a yes/no box for a delete button ? e.g. this is my code - If e.CommandSource.commandname = "Delete" Then mainid = e.Item.Cells(0).Text mi.Text = e.Item.Cells(0).Text
|
| Filtering data and adding headers within same datagrid | 20 May 2004 14:26 GMT | 1 |
Posted this over on the ADO.net group but it belongs here. I am working on a ASP page with a datagrid that has 5 columns that I bind to a datatable which is filled via the ReadXml parser.
|
| Get Class from Aspx-File | 20 May 2004 14:13 GMT | 1 |
Is it possible to get the "ClassType" from a Filename to a .aspx file? I would like to access a class from an another page, knowing the filepath to the aspx-file (or the .cs-file) As I belivie that is how ASP.NET works (reading the aspx file and its <@
|
| Fully Editable Datagrid | 19 May 2004 17:06 GMT | 2 |
I am fairly new to ASP.Net but the transition to .net world cudnt have been more easy .. I have enjoyed wurking in .Net till now. Well I have a requirement to make the datagrid fully editable. Is there any way to do so ??? I
|
| Summing a column and displaying in the footer | 19 May 2004 16:34 GMT | 5 |
I would like to sum a column in my dataset and have it displayed at the bottom of the datagrid in the footer. How do I do that?
|
| Why do my datagrids have scrollbars? | 18 May 2004 20:18 GMT | 2 |
I have this one particular aspx page that, whenever I put a datagrid on it, the datagrid has scroll bars. I know that if you put a datagrid inside a DIV tag, it will have the scrollbars, but that's not what I want. This page I'm talking about has no DIVS. If I create a new aspx ...
|
| How to prevent a checkbox from showing up in a datagrid with no records? | 18 May 2004 19:01 GMT | 1 |
I have a datagrid made up of two columns, the first has a checkbox in it and the other holds a job id. <Columns> <asp:TemplateColumn HeaderText="Select"
|
| Export to Excel | 18 May 2004 17:53 GMT | 1 |
We are trying to export a datagrid to excel but we are using forms authentication and when we change the ContentType = "application/vnd.ms-excel". the page that is sent to excel is out login page instead of the datagrid. For some reason our authentication cookie
|
| wrapping text in a datagrid cell | 18 May 2004 14:57 GMT | 2 |
I have a datagrid that I am having text wrapping problems with. And the wrapping problems only happen with text containing long urls. If I set the column width to a fixed width through the ItemStyle-Width property in the ASPX file, the text above and below the url honor that
|
| Datagrid: aligning a template column | 18 May 2004 09:58 GMT | 2 |
Is it possible to align a template column? Tried align, textalign and itemstyle (but I think that one is for the whole grid?), and nothing works. It's a simple datagrid, but one field is a dollar ($) value, so I've had to do a TemplateColumn so that I could make it have the ...
|
| Checking a checkbox based upon a table field | 17 May 2004 20:46 GMT | 1 |
I have a template column in my grid that displays a checkbox. I would like to have the box checked if a field in the table that the grid is based upon has a "C" in the field. How do I do that? <asp:TemplateColumn HeaderText="Close">
|
| Dropdownlist in a DataGrid ~ Please help a newbie | 17 May 2004 06:25 GMT | 2 |
Can anyone please point me to a good article or step by step instruction on how to do the following: I have a grid showing the availability of an article I want to have a dropdown list when the grid is in edit mode so that the
|
| DataGrid - if/else in edititemtemplate? | 16 May 2004 20:58 GMT | 1 |
I am working with a DataGrid, and am trying to set up a template column for a password field which is stored in a database. Basically, when the "EditCommand" is executed, for the EditItemTemplate, I would like to display a HyperLink if a password exists for this particular table ...
|
| change HeaderText of DataGrid in PreRender(). | 16 May 2004 10:50 GMT | 7 |
I need change HeaderText of DataGrid in PreRender(). But it seems doesn't work. The code example like this: Protected Overrides Sub OnPreRender(ByVal e As System.EventArgs)
|