Tagged Questions
The templatefield tag has no wiki summary.
8
votes
6answers
13k 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 ...
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 ...
4
votes
2answers
12k 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" ...
3
votes
1answer
5k 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;
...
2
votes
1answer
2k views
How to find control in TemplateField of GridView?
How does Find control method works if i need to find any control which is inside gridview template, more specifically Item Template??
I have a hyperlink but it is not able to find the same.
Question ...
2
votes
1answer
1k views
Passing more than one argument in asp.net button in gridview
I have a TemplateField column in a gridview with a button inside of it.
There is NO key value (surely that was not designed by me) , but in the other hand there aren't redundancies when comparing ...
2
votes
4answers
1k views
Binding the Checked Property of a CheckBox within a TemplateItem
For the life of me I cannot bind the Checked property of a CheckBox control within a TemplateField (declaritively).
I have tried:
<asp:TemplateField>
<ItemTemplate>
...
2
votes
1answer
2k 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%;">
...
2
votes
1answer
846 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 ...
2
votes
1answer
1k 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 ...
1
vote
0answers
37 views
How to obtain Container.DataItem from parent control?
Suppose that I create an ASP.net repeater. Suppose further that I put an ASP.net GridView in the ASP.net repeater's ItemTemplate.
Suppose that it looks like this:
<asp:Repeater runat='server' ...
1
vote
1answer
111 views
C# - ASP.NET - Calendar Control - Specified cast is not valid
I have a gridview where I keep track of deadlines. I have 2 dates herefor. A expected date (date where the deadline is supposed to be completed) and an actual date (date where the deadline was ...
1
vote
0answers
98 views
Dynamically Add TemplateField to Details View
I have a grid view that, on selected index, will populate a details view. If the selected index happens to have multiple IP Address's I want to add additional fields to display them. They don't need ...
1
vote
2answers
111 views
Accessing GridView data from a templatefield
<asp:GridView ID="gvGrid" runat="server" AutoGenerateColumns="False"
DataSourceID="dsDataSource" AllowPaging="True" PageSize="20" >
<Columns>
...
1
vote
1answer
226 views
Getting values from templatefields gridview - C#
I am using a gridview to display a table queried from a database...
In this gridview I also added a buttonfield, and 3 template fields...
When i press the buttonfield the data from the database is ...
1
vote
1answer
603 views
Manipulating DropDownList within TemplateField
I have a dropdownlist inside of a TemplateField, within a GridView.
I would like to dynamically add list items to it and write code to handle when the index changes. How do I go about manipulating ...
1
vote
3answers
404 views
hide columns by Id in gridview in asp.net
I have the asp.net application where I am having the editable grid view with the edit,Delete,Add options. this grid having as usual Template fields . I want to hide some columns. I know i can do that ...
1
vote
1answer
81 views
Simplifying ItemTemplate output of `GridView` to regular <td>
I'm using a TemplateField for a column because I need the HeaderTemplate. However, the ItemTemplate renders the content of a cell as an <asp:Label> and the output looks like this:
...
1
vote
4answers
535 views
Dynamically enable asp button based on datasource value
SOLVED: See my solution below!
using aspx with C# code behind.
I have the following code in a button in a item template in a gridview:
Enabled='<%# IIF(Eval("wrqst_need_ind") == ...
1
vote
1answer
2k views
Binding data to a textbox , inside a templatefield of a gridview » C# and ASP.NET
How can I bind data to a textbox which is in a templatefield of a gridview ?
I want to use ExecuteScalar , get a value and throw it to that textbox .
1
vote
0answers
100 views
custom *arbitrary* TemplateField definitions
I'm building a GridView on the fly, and I'd like to pre-define the TemplateFields to be included ondemand. So, what I'd like to do is have a declarative file that defines how the different templates ...
1
vote
2answers
1k views
How to 2-way bind a textbox in a template fields programmatically
I have a gridview to which I'm adding template fields programmatically. Each of the template fields have a textbox. I would like to make this text box have 2-way binding to a database column. Please ...
1
vote
1answer
2k views
ASP.Net: Sorting, GridView BoundColumn vs. TemplateColumn
With everything else being equal, a BoundField column in an asp:GridView is sortable, but a TemplateField column is not. Why is that?
<asp:LinqDataSource ID="someDataSource" ...
1
vote
3answers
5k 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
2answers
3k 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 ...
0
votes
1answer
53 views
How to use a hyperlink in a gridview to execute a function in aspx code behind
How to use a hyperlink in a gridview to execute a function in aspx code behind when clicked passing a variable to that function which is some value of a cell within the row the hyperlink exits in.
...
0
votes
1answer
57 views
ASP.Net GridView templateField
Summary:
I want to to create a templateField resulting from a database after calling gridview.databind to have it function as a linkbutton doing something when pressing it.
In other words, I want to ...
0
votes
2answers
33 views
DropDownList insideTemplateField is not accessible from code-behind
i am updating my table by placing datailsview in the webpage and giving it a datasource,
i have introduced a dropdownlist in the middle of bounded control and want it to be filled
according to my ...
0
votes
0answers
89 views
GridView TemplateField label.Text Not Evaluating Data
The code below is not working correctly..
Label lbl = ((Label)row.FindControl(Table.Columns[0].ColumnName));
string field_value = lbl.Text;
ParameterArray.Add(field_value);
It ...
0
votes
1answer
321 views
C# GridView Add TextBox TemplateField Into Footer CodeBehind
Suppose I have one template field
TemplateField FooterField = new TemplateField();
FooterField.ItemTemplate = //my code (basically setting it to display a button)
I then define what the ...
0
votes
0answers
49 views
Images in gridview templatefields not shown in the third time in the updatepanel
I have an UpdatePanel that shows the categories of products. When I reach the leaf category, on the category click I unhide a div that contains a gridview with 3 static cloumns (2 template fields that ...
0
votes
2answers
237 views
Cannot get values from textboxes in templateField inside of gridview
Sorry about the code earlier. Could anyone please help?
I have a gridview GridView1 which is populated on PageLoad() by importing from Excel sheet that has three columns:
Date
Customers
...
0
votes
2answers
141 views
GridView Template Field (How to deal with DropDown list Selected Item)
I have employee registeration page with DropDownList control (Occupation). I am storing Occupatrion.SelectedValue in the Database when new Employee is added.
I have GridView implemented on ...
0
votes
2answers
360 views
Preserving CheckBox's Value in Dynamic GridView TemplateField
I am trying to create a GridView which will contain a list of users and permission levels that they have access to. Each row will have the following fields: User_ID, Username, Permission1, ...
0
votes
2answers
89 views
C# - Setting url of a Hyperlink control in a Gridview TemplateField column
I have a gridview that has a column that has a Hyperlink control as wellas a LinkButton control. As such:
<asp:TemplateField HeaderText="Actions">
<ItemTemplate>
...
0
votes
1answer
82 views
how to get parameters from a specific field of row in gridView for a templatefield at the same row
I'm using GridView to display data from dataBase, the gridView is bound to objectDataSource.
each row in gridview represent an item that belongs to user and I want to add another field to the gridView ...
0
votes
3answers
125 views
How to make a template field(textbox) as a part of the datatable
I have a GridView .
its data source is a data table i create it pro-grammatically in .cs to suit what i wanna to show. Now i wanna more column in this gridview as a template field containing a text ...
0
votes
1answer
128 views
template field issue in the gridview
Q:
I have the following problem , and i don't know how to fix it really.
I have a grid view one of the columns is a template field as (text box). The grid view consists of 8 rows . What i do is ...
0
votes
2answers
165 views
Change from text box appearance to label appeareance according to the focus
Q:
I have a template field in my gridview,this template field is a (text box).What i wanna to do is :After the user finished the writing and move to the next textbox , the one which lose the focus ...
0
votes
0answers
165 views
Evaluating AccessibleHeaderText
I have a templatefield in the gridview like this
<asp:TemplateField HeaderText="Active" AccessibleHeaderText="Active">
<ItemTemplate>
<asp:CheckBox ...
0
votes
4answers
81 views
Problem with Grid view usage in asp.net C#
I want to fill the GridView with a HyperLink and other two other fields.
I tried with the below approach half heartedly. It's giving errors.
SqlCommand comm = new SqlCommand(
@"Select
...
0
votes
2answers
275 views
Gridview - Manipulating a data item in TemplateField
I'm displaying four data fields in a single column of a gridview using template field. One of the data fields is a date field. Instead of showing normal date, I want to display relative hours/days. ...
0
votes
1answer
300 views
ASP.NET textbox cssClass gets overrwritten in GridView ItemTemplate after rendering
I have a textbox inside a TemplateField column for a gridview. When I set the cssClass property for the textbox, it gets overwritten by a "textBox" class in the rendered web page. Is this normal ...
0
votes
0answers
280 views
DataControlFieldCell in TemplateField - Row Index?
ASP.NET 2.0, C#
Hello, i'm creating a TemplateField on the code behind, and i need the current row of the field to be inserted in the ItemTemplate, as follows:
public class GridViewTemplate : ...
0
votes
0answers
858 views
GridView sorting with Template Field and Header Template
I'm using GridView and there is a dropdownlist in header cell for filtering.
<gm:GridView ID="routePlanGridView" runat="server" AutoGenerateColumns="False"
AllowPaging="true" PageSize="20" ...
0
votes
2answers
688 views
CheckBox in ASP.NET GridView template field does not retain it's value on submit
I'm trying to use CheckBoxes within a GridView's TemplateField to select multiple entries from that GridView. The GridView's data source is a list of items that is generated at page load.
...
0
votes
2answers
1k views
In a GridView, how to add multiple commands to one item template?
I stripped this example to make it simple. I have a gridview with a template field. The template field contains two buttons and a label (They must be in the same template field). I want the first ...
0
votes
1answer
623 views
How to write a custom templatefield-like DataControlField
I am using a GridView to display data where one of the data columns has type DateTimeOffset. In order to display dates & times in the user's timezone, I save the user's timezone preference to his ...
0
votes
1answer
479 views
How To Access Control In Templatefield Gridview With Custom Id
i have a customized gridview.my grid is able to sort for each column just by 1 click in the header without any setting and overloading methods such as sorting,etc by user(programmer).(i do this ...
0
votes
1answer
213 views
Why does my GridView intermittently not display my .net TemplateFields
I'm having an awful time with my GridView. I've been going over my code with a fine-tooth comb and can't find the problem.
I have an ASP.net GridView with seven columns; the data comes from SQL. ...