Search Results

0
votes

How to add custom tablecell collection to gridview row

Hi deadbug-- Does your custom GridView control extend the built-in GridView? If so, it should be possible to use your custom TableCell in your GridView's RenderContents function. …
0
votes

DropDownList in GridView not available when Editing

Hi Dave-- Your code looks OK to me, too. Here are a couple of things that might help your troubleshooting: Try replacing the EditItemTemplate's DropDownList and ObjectDataSour …
0
votes

Gridview Column width changing.

Hi zohair-- You can set the column directly with the GridView tag: <asp:GridView ID="myGrid" runat="server"> <Columns> <asp:BoundField DataField="myColu …
1
vote

Not Changing Header Text Color In Gridview through using CSS

Hi Kartik-- The CSS class you've assigned (GridHeaderStyle) is being applied to the header cells, not the header links. It sounds like the default link color is being applied. Add t …
1
vote

How to dynamically show images in a asp.net gridview?

This is a little messy, but it's all contained in the template tag: <ItemTemplate> <img src='<%# (bool)Eval("signoff") ? "thumbsup" : "thumbsdown" %>.gif' alt="what …
0
votes

Add Gridview Row AFTER Header

Hi ropstah-- Try this when you add the row to the InnerTable: t.Controls.AddAt(1, r) Here's a quick basic test I did, which seems to work OK: …
0
votes

how to combine dropdownlists and null fields in gridview?

Hi David-- Please try this: <asp:DropDownList ID="DropDownList1" DataSourceID="SupplierDataSource" DataValueField="SupplierID" DataTextField="Compan …
0
votes

Gridview dot net layout

Hi David-- Unfortunately, I don't believe there's an easy way to add a second row to each GridView record. If you don't need the built-in sorting/editing/deleting that the GridView …
0
votes

onCheckedChanged event of checkbox within a gridview

Hi Khushi-- Could you replace the code in your chkJobID_CheckedChanged event handler with this: Response.Write(DateTime.Now.ToLongTimeString()); Then view …