Tagged Questions
The commandfield tag has no wiki summary.
4
votes
2answers
3k views
ASP.NET + GridView + CommandField as TemplateField
I have a GridView. My GridView has a column that is contains an "Options" column. This column includes the traditional CommandField options (edit, delete, etc.). I have the code setup to work when a ...
1
vote
1answer
555 views
aspnet and C#: How to link a TemplateField to a Dynamically Created Anonymous Type?
I have a Linq query that returns an anonymous type, which I then use as the data source for a GridView. Only 1 of those columns need to be editable. I just want to be able to click on an edit button ...
1
vote
1answer
550 views
How does FindControl work in GridView?
I am trying to update a database using the GridView edit, update CommandField. I have two editable fields which are displayed as text boxes when in edit mode. When clicking submit, I am trying to put ...
1
vote
3answers
1k views
ASP.NET CommandField & skin
I'm tying to skin ASP.NET GridView CommandField.
Everything si working fine, just when I move CommandField property declarations from page to skin file, the whole commandField properties are ignored. ...
1
vote
2answers
635 views
Set CommandField Select Visibilty from aspx page
I want to do something like this with a GridView:
<asp:CommandField ShowSelectButton="True" Visible='<%# return Eval("SC_TABLE") %>' />
But that doesn't work, coming up with error:
...
1
vote
2answers
12k views
ASP.NET GridView CommandField Update/Cancel does not wrap
My question is on the ASP.NET GridView control. I am using a CommandField in the Columns tag as seen below.
<asp:CommandField ShowEditButton="True" HeaderStyle-Width="40px" UpdateText="Save" ...
0
votes
1answer
343 views
How to change Background image on hover of asp:CommandField in a Gridview
This is the code for CommandField with, background image.
<asp:CommandField DeleteImageUrl="~/cms_images/cancel.gif" ShowDeleteButton="true" ButtonType="Image" />
I would like to show this ...
0
votes
2answers
669 views
commandfield put title attribute on images button
Is possible to set the title attibute on the image buttons of a commandfield?
<asp:CommandField ShowDeleteButton="True" ButtonType="Image" ShowEditButton="True"
...