1
vote
1answer
180 views
GridView Template - How to Grab Data from Selected Row
<asp:TemplateField>
<ItemTemplate>
<table width="540" cellpadding="5">
<tr>
<td align="left" style="width:60%;">
…
0
votes
2answers
347 views
ASP.net c# Gridview sorting with custom template fields
Hi all,
I can't seem to figure out how to sort my gridview with both databound AND
custom fields.
The custom field look like this:
<asp:Label ID="lblItems" runat="server" Text='<%# …
0
votes
0answers
54 views
Overriding how Data is bound to Controls in a GridView
I'm not having much luck so far, so I am going to generalize my problem to see if there is a better way to accomplish what I neeed.
Here is my scenario - I want a control that is defined in an aspx …
0
votes
0answers
25 views
How do I get a control to reset itself?
I am trying to resolve an issue with a gridview that I have which is loosing the state for template items. Does anyone know how I can reset the grid's state so that it reloads it from the ascx file. …
0
votes
3answers
169 views
Gridview looses ItemTemplate after columns are removed
I'm trying to bind a datatable to a gridview where I've removed some of the autogenerated columns in the code behind.
I've got two template columns and it seems that when I alter the gridview in code …
0
votes
0answers
86 views
Export Gridview TemplateField Problem to PDF
I am using iTexhSharp library to Export a Gridview Table with couple of BoundFields and TemplateFields,
There is no problem with BoundFields, but All the TemplateFields are blank in Exported PDF …
0
votes
3answers
320 views
Equivalence of an asp:HiddenField for a GridView
There is no asp:HiddenField that can be used in a GridView so I was wondering what would work similar to this.
My reasoning for wanting this is I have a ButtonField that triggers an OnRowCommand. …
1
vote
2answers
853 views
Can I programmatically add a linkbutton to gridview?
I've been looking through some similar questions without any luck. What I'd like to do is have a gridview which for certain items shows a linkbutton and for other items shows a hyperlink. This is the …
1
vote
1answer
873 views
How to Sort on a GridView using ObjectDataSource with TemplateFields
Background:
I am working with a GridView and an ObjectDataSource. I am implementing Paging and Sorting.
On the ObjectDataSource:
objectDataSource.TypeName = value;
…
1
vote
1answer
258 views
Adding TemplateField to DetailsView
How do I add TemplateField control to the beginning of the DetailsView Fields collection?
Here is my code..
TemplateField tf = new TemplateField();
...
...
dv.Fields.Add(tf);
This adds to the very …
1
vote
2answers
2k views
ASP:DropDownList in ItemTemplate: Why is SelectedValue attribute allowed?
This piece of code
<asp:DropDownList runat="server" ID="testdropdown" SelectedValue="2">
<asp:ListItem Text="1" Value="1"></asp:ListItem>
<asp:ListItem Text="2" …
2
votes
1answer
363 views
ASP:LinkButton and Eval
I'm using an ASP:LinkButton inside of an ItemTemplate inside of a TemplateField in a GridView. For the command argument for the link button I want to pass the ID of the row from the datasource that …
2
votes
3answers
2k views
How to use HtmlEncode with TemplateFields, Data Binding, and a GridView
I have a GridView bound to an ObjectDataSource. I've got it supporting editing as well, which works just fine. However, I'd like to safely HtmlEncode text that is displayed as we do allow special …
0
votes
1answer
190 views
Show HH:mm 24H format in TemplateField using text property
Hi there, im trying to show a 24 hours format using this line:
Text='<%# Bind("Appointment", "{HH:mm}")
So how it'll be formated for showing for example 16:40 instead 4:40 ? thanks in advance
1
vote
1answer
2k views
Converting an asp:ButtonField to an asp:TemplateField in a GridView Control
I currently have a gridview that has an asp:ButtonField as one of the columns. The event handler for the command extracts the row id of the gridview from the command argument and uses that to perform …
