| Thread | Last Post | Replies |
|
| Adding javascript client-side funtionality to a Button webcontrol | 05 May 2004 14:47 GMT | 3 |
I just learned how to add client-side javascript funtionality to a Button Web control by using the Attributes.Add method at run-time. myButton.Attributes.Add("onClick", "return confirm('Are you sure about this?');")
|
| Setting Focus in DataGrid - Solution | 05 May 2004 06:56 GMT | 2 |
I googled for a solution to this and didn't find a clear one, so I thought I'd pass along what I ended up with. In the PreRender event of the DataGrid, I execute the following code: private void myGrid_PreRender(object sender, System.EventArgs e)
|
| ScrollBar | 05 May 2004 06:52 GMT | 1 |
I have a problem with using ScrollBar.In my form there is a DataGrid which has a ScrollBar. When I add a new row to my DataSet , this ScrollBar goes to end .Now with a button clicking, I add another row to my DataSet , at this time I
|
| image in datalist | 05 May 2004 06:29 GMT | 1 |
hi I use the image in datalis <asp:Imag ImageUrl='<%#Server.MapPath(@"\images\roomscenes\"+DataBinder.Eval(Container.DataItem, "PartNo")+"_ss.jpg") %>' Visible='<%#!System.IO.File.Exists(@"\images\roomscenes\"+DataBinder.Eval(Container.DataItem, "PartNo")+"_ss.jpg") %>' ...
|
| Table.AcceptChanges() throws DeletedRowInaccessibleException | 05 May 2004 06:23 GMT | 1 |
Table.AcceptChanges() throws DeletedRowInaccessibleException When I delete a row from my datagrid and then access the deleted rows with oTable = m_oTable.GetChanges(DataRowState.Deleted); dotNET throws an error when I later call AcceptChanges() on the table.
|
| multiple datagrids dynamically from the codebehind | 05 May 2004 06:20 GMT | 1 |
I need to make multiple datagrids dynamically from the codebehind. Can someone point me in the right direction to do this?
 Signature Dave
|
| Scrollable DataGrid | 05 May 2004 05:28 GMT | 2 |
Can any one tell me if its possible to create a scrollable datagrid with fixed headers and variable column widths? I tried the fixed table headers and div tag for the actual grid rows. But the Grid colummns adjust to the data and header table don't.
|
| DataGrid transpose | 04 May 2004 18:33 GMT | 1 |
I am using DataGrid and Databind(), very nice, but I want to display data little different. Is there any way to tranpose datagrid values from rows to columns. From a view like this:
|
| Dinamically changing the Text Field of a LinkButton in a DataGrid | 04 May 2004 17:41 GMT | 4 |
I've run into a problem and I'm not sure if this is a limitation of dotNet or I'm doing something bad, I've a TemplateColumn in a DataGrid with a LinkButton of which I would like to dinamically change the Text Field.
|
| show text on image in datalist | 03 May 2004 15:07 GMT | 1 |
hi how can I show some text on the image that the image is in data list?
|
| DropDown and SelectIndexChanged | 03 May 2004 09:42 GMT | 2 |
Hi. I have two template columns in a datagrid. Each of them as DropDownlist. I need to bind some data in the second dropdownlist when th selection changes in the first dropdown. How can I set for the first contro to invoke a method in the server side to update data shown in the ...
|
| Make hyperlink appear in a datagrid cell | 03 May 2004 02:36 GMT | 7 |
I have a datagrid, on a form, which contains a custom column style that converts a data grid text field into a linklabel. The problem I am having is that the link doesn't appear until the cell is clicked. Is there a way to have the link appear when the datagrid is loaded Thanks
|
| DataGrid with a menu... | 02 May 2004 21:58 GMT | 3 |
I need to create a Data Grid for an ASP.Net Page which would have all these feature. When the user sets focus on one of the colums the column of the Data Grid it should display a list of menu options to the
|
| image in datalist please help | 01 May 2004 22:16 GMT | 2 |
I have a datalist that show product and their image I us <asp:Image ImageUrl='<%#Server.MapPath(@"\images\roomscenes\"+DataBinder.Eval(Container.DataItem, "PartNo")+"_ss.jpg") %>' runat="server" ID="Image1" / but some times there is no image for one product and the page show me ...
|
| Use Parent Column in Child? | 01 May 2004 21:39 GMT | 1 |
Is there a way to retrieve a column from the parent table of a relationship and display it in the child data control? In my case, I'd like to show a column from the parent DataList showing seating capacity in the child DataList's ItemTemplate. Is this possible?
|