active questions tagged templatefield - Stack Overflowmost recent 30 from stackoverflow.com2010-03-21T02:38:11Zhttp://stackoverflow.com/feeds/tag/templatefieldhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/2455136/custom-arbitrary-templatefield-definitions1custom *arbitrary* TemplateField definitionsend-userhttp://stackoverflow.com/users/1678892010-03-16T14:29:23Z2010-03-16T14:29:23Z
<p>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 look for a specific column. Like:</p>
<pre><code><asp:TemplateField>
<HeaderTemplate>
this is a text column
</HeaderTemplate>
<ItemTemplate>
data goes here
</ItemTemplate>
<EditItemTemplate>
<asp:TextBox Text="databindhere" />
</EditItemTemplate>
</asp:TemplateField>
<asp:TemplateField>
<HeaderTemplate>
this is a bool column
</HeaderTemplate>
<ItemTemplate>
if(true) "yes" else "no"
</ItemTemplate>
<EditItemTemplate>
<asp:CheckBox Checked="databindme" />
</EditItemTemplate>
</asp:TemplateField>
</code></pre>
<p>So, if my query had a text and two bool fields, I could push the appropriate TemplateFields in the the Columns property as needed. (I hope I'm making sense here)</p>
<p>So, how would I go about creating declarative files for the above definitions? And then, how would I reference those definitions programmatically?</p>
http://stackoverflow.com/questions/580487/aspdropdownlist-in-itemtemplate-why-is-selectedvalue-attribute-allowed3ASP:DropDownList in ItemTemplate: Why is SelectedValue attribute allowed?recursivehttp://stackoverflow.com/users/447432009-02-24T04:33:41Z2010-03-13T09:52:48Z
<p>This piece of code</p>
<pre><code><asp:DropDownList runat="server" ID="testdropdown" SelectedValue="2">
<asp:ListItem Text="1" Value="1"></asp:ListItem>
<asp:ListItem Text="2" Value="2"></asp:ListItem>
<asp:ListItem Text="3" Value="3"></asp:ListItem>
</asp:DropDownList>
</code></pre>
<p>yields this error:</p>
<blockquote>
<p>The 'SelectedValue' property cannot be
set declaratively.</p>
</blockquote>
<p>Yet, this is a legal and commonly used edit template for databound GridViews. The <code>SelectedValue</code> attribute certainly appears to be declaratively set here.</p>
<pre><code><EditItemTemplate>
<asp:DropDownList runat="server"
ID="GenreDropDownList"
DataSourceID="GenreDataSource"
DataValueField="GenreId"
DataTextField="Name"
SelectedValue='<%# Bind("Genre.GenreId") %>'>
</asp:DropDownList>
</EditItemTemplate>
</code></pre>
<p>The question is: what is the difference between the cases when you are allowed to set it declaratively and those in which you are not? The error message implies that it's never allowed.</p>
http://stackoverflow.com/questions/512517/how-to-use-htmlencode-with-templatefields-data-binding-and-a-gridview2How to use HtmlEncode with TemplateFields, Data Binding, and a GridViewYadynhttp://stackoverflow.com/users/72902009-02-04T17:51:41Z2010-03-04T04:18:19Z
<p>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 characters in certain fields. This is a cinch to do with standard BoundFields, as I just set HtmlEncode to true.</p>
<p>But in order to setup validation controls, one needs to use TemplateFields instead. How do I easily add HtmlEncoding to output this way? This is an ASP.NET 2.0 project, so I'm using the newer data binding shortcuts (e.g. <code>Eval</code> and <code>Bind</code>).</p>
<p>What I'd like to do is something like the following:</p>
<pre><code><asp:TemplateField HeaderText="Description">
<EditItemTemplate>
<asp:TextBox ID="TextBoxDescription" runat="server"
Text='<%# System.Web.HttpUtility.HtmlEncode(Bind("Description")) %>'
ValidationGroup="EditItemGrid"
MaxLength="30" />
<asp:Validator ... />
</EditItemTemplate>
<ItemTemplate>
<asp:Label ID="LabelDescription" runat="server"
Text='<%# System.Web.HttpUtility.HtmlEncode(Eval("Description")) %>' />
</ItemTemplate>
</asp:TemplateField>
</code></pre>
<p>However, when I try it this way, I get the following error:</p>
<blockquote>
<p>CS0103: The name 'Bind' does not exist
in the current context</p>
</blockquote>
http://stackoverflow.com/questions/2334888/using-a-templatefield-inside-a-web-user-control0Using a TemplateField inside a web user controlSylvainhttp://stackoverflow.com/users/2793062010-02-25T14:56:11Z2010-02-25T15:01:14Z
<p>Is it possible to use a TemplateField (or any *Field from a GridView) inside a user control (ascx).</p>
<p>I have a complex TemplateField (item, edit, footer) that I would like to easily reuse.</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/2213749/how-to-2-way-bind-a-textbox-in-a-template-fields-programmatically1How to 2-way bind a textbox in a template fields programmatically.userbhttp://stackoverflow.com/users/2677842010-02-06T16:19:38Z2010-02-06T22:53:38Z
<p>Hi, 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 see below code.</p>
<pre><code>public class CustomEditItemTemplate : ITemplate
{
private DataControlRowType templateType;
private string columnName;
public CustomEditItemTemplate(DataControlRowType type, string colname)
{
this.templateType = type;
this.columnName = colname;
}
public void InstantiateIn(System.Web.UI.Control container)
{
TextBox tb = new TextBox();
tb.ID = columnName;
tb.DataBinding += new EventHandler(this.tb_DataBinding);
container.Controls.Add(tb);
}
private void tb_DataBinding(Object sender, EventArgs e)
{
TextBox t = (TextBox)sender;
DetailsView dv = (DetailsView)t.NamingContainer;
//This line does only one way binding. It takes the rows from the database and displays
//them in the textboxes. The other way binding is not done. This is why my code fails
t.Text = DataBinder.Eval(dv.DataItem, columnName).ToString();
}
</code></pre>
<p>}</p>
<p>I'm calling the above class as follows</p>
<pre><code>tf = new TemplateField();
tf.HeaderText = "My First Names";
tf.EditItemTemplate = new CustomEditItemTemplate(DataControlRowType.DataRow, "firstName");
dvModify.Fields.Add(tf);
</code></pre>
<p>How can I make the text box such that when I edit the text, this change is reflected in the database as well?</p>
<p>Thanks for your time everyone</p>
http://stackoverflow.com/questions/2192967/dynamic-gridview-template-and-unique-control-ie-textbox-label-ids0Dynamic Gridview Template and Unique Control (ie textbox, label) IDs ?Danhttp://stackoverflow.com/users/2568872010-02-03T15:17:35Z2010-02-03T16:30:26Z
<p>When creating a Gridview at design time you can create a template column like this:</p>
<pre><code><asp:TemplateField>
<ItemTemplate>
<asp:Label runat="server" ID="Label1"></asp:Label>
</ItemTemplate>
</asp:TemplateField>
</code></pre>
<p>And in the HTML it will give it a unique name like:</p>
<pre><code><span id="gvSelect_ctl02_Label1">blahblah</span>
</code></pre>
<p>And I can then reference this label in the code behind by:</p>
<pre><code>CType(e.Row.FindControl("Label1"), Label)
</code></pre>
<p>Which is PERFECT. But I can't figure out how to do this when I'm creating TemplateFields Dynamically. I've got the following code in my "InstantiateIn":</p>
<pre><code>Dim hl As New HiddenField
hl.ID = "hHidden"
hl.Value = 0
AddHandler hl.DataBinding, AddressOf Me.hl_DataBinding
container.Controls.Add(hl)
</code></pre>
<p>And this DOES create a hidden control with the ID as hHidden in each row. But it doesn't give it the unique ID like "gvSelect_ctl02_hHidden" it's just "hHidden". And I know there are ways to append the row number to it myself. But I was wondering if there was a way for it to do this automatically. And still allowing me to reference the hiddenfield like:</p>
<pre><code>CType(e.Row.FindControl("hHidden"), HiddenField)
</code></pre>
http://stackoverflow.com/questions/2103963/binding-the-checked-property-of-a-checkbox-within-a-templateitem0Binding the Checked Property of a CheckBox within a TemplateItemFrinavalehttp://stackoverflow.com/users/1404202010-01-20T18:39:50Z2010-01-20T18:52:25Z
<p>For the life of me I cannot bind the Checked property of a CheckBox control within a TemplateField (declaritively).</p>
<p>I have tried:</p>
<pre><code> <asp:TemplateField>
<ItemTemplate>
<asp:CheckBox ID="deactivated" runat="server" checked="<%#Eval("Deactivated")%>"></asp:CheckBox>
</ItemTemplate>
<asp:TemplateField>
</code></pre>
<p>And</p>
<pre><code><asp:TemplateField>
<ItemTemplate>
<asp:CheckBox ID="deactivated" runat="server" checked="<%#Eval(Container.DataItem, "Deactivated")%>"></asp:CheckBox>
</ItemTemplate>
</asp:TemplateField>
</asp:TemplateField>
</code></pre>
<p>I keep seeing a warning stating: <strong><em>Cannot create an object of type 'System.Boolean' from it's string representation' 'for the 'Checked' property.</em></strong></p>
<p>What am I doing wrong?</p>
<p>Thanks for your help,</p>
<p>-Frinny</p>
http://stackoverflow.com/questions/1936182/asp-net-sorting-gridview-boundcolumn-vs-templatecolumn1ASP.Net: Sorting, GridView BoundColumn vs. TemplateColumncdonnerhttp://stackoverflow.com/users/588802009-12-20T15:53:58Z2009-12-20T16:12:49Z
<p>With everything else being equal, a BoundField column in an asp:GridView is sortable, but a TemplateField column is not. Why is that? </p>
<pre><code> <asp:LinqDataSource ID="someDataSource" runat="server"
ContextTypeName="someDataContext" TableName="someTable"
OnSelecting="someSelectingHandler" />
<asp:GridView ID="somGrid" runat="server"
AllowPaging="true" AllowSorting="true"
EnableSortingAndPagingCallbacks="true" PageSize="15"
DataSourceID="someDataSource" EnableViewState="true"
EmptyDataText="No orders matched your criteria">
<Columns>
<!-- resulting column is sortable: -->
<asp:BoundField HeaderText="Order #" HtmlEncode="false"
DataField="order_number" SortExpression="order_number">
</asp:BoundField>
<!-- resulting column is not sortable: -->
<asp:TemplateField SortExpression="order_number">
<HeaderTemplate>Order #</HeaderTemplate>
<ItemTemplate><%# DataBinder.Eval(Container.DataItem,
"order_number")%></ItemTemplate>
</asp:TemplateField>
</code></pre>
<p>Clicking on the BoundField header results in a post-back and my Selecting event handler is called. It just returns an IQueryable and itself does not handle sorting.
The documentation merely says that the "underlying data source must support sorting" in order for the GridView to be sortable. Apparently the LinqDataSource supports sorting, or else the BoundField would not be sortable. Or am I missing something?</p>
http://stackoverflow.com/questions/1250500/gridview-looses-itemtemplate-after-columns-are-removed0Gridview looses ItemTemplate after columns are removedMiddletonehttp://stackoverflow.com/users/353312009-08-09T03:25:45Z2009-11-04T09:24:13Z
<p>I'm trying to bind a datatable to a gridview where I've removed some of the autogenerated columns in the code behind.</p>
<p>I've got two template columns and it seems that when I alter the gridview in code behind and remove the non-templated columns that the templates loose the controls that are in them. </p>
<p>Using the following as a sample, "Header A" will continue to be visible but "Header B" will dissapear after removing any columsn that are located at index 2 and above. I'm creating columns in my codebehind for the grid as a part of a reporting tool. If I don't remove the columns then there doesn't seem to be an issue.</p>
<pre><code><asp:GridView ID="DataGrid1" runat="server" AutoGenerateColumns="false" AllowPaging="True" PageSize="10" GridLines="Horizontal">
<Columns>
<asp:TemplateField HeaderText="Header A" >
<ItemTemplate >
Text A
</ItemTemplate>
</asp:TemplateField>
<asp:TemplateField>
<HeaderTemplate>
Header B
</HeaderTemplate>
<ItemTemplate>
Text B
</ItemTemplate>
</asp:TemplateField>
</Columns>
</asp:GridView>
For i = 2 To DataGrid1.Columns.Count - 1
DataGrid1.Columns.RemoveAt(2)
Next
</code></pre>
<p><strong>EDIT</strong></p>
<p>So from what I've read this seems to be a problem that occurs when the grid is altered. Does anyone know of a good workaround to re-initialize the template columns or set them up again so that when the non-template columns are removed that hte templates don't get removed as well?</p>
http://stackoverflow.com/questions/1665066/gridview-template-how-to-grab-data-from-selected-row1GridView Template - How to Grab Data from Selected RowIrishChieftainhttp://stackoverflow.com/users/314442009-11-03T03:27:23Z2009-11-03T05:01:10Z
<pre><code><asp:TemplateField>
<ItemTemplate>
<table width="540" cellpadding="5">
<tr>
<td align="left" style="width:60%;">
<img src='PurchaseHandler.ashx?ProductID=<%# Eval("ProductID")%>'
alt="<%# Eval("ProductName") %>" />
</td>
<td align="left">
<h3 style="text-align:left;">
<asp:Label ID="nameLabel" runat="server"
Text='<%# Eval("ProductName") %>' />
</h3>
<asp:Label ID="priceLabel" runat="server" Text='<%# Eval("Price") %>' />
<br />
<asp:LinkButton ID="cartLink" runat="server" Text="<b>Add to Cart</b>"
CommandName="Add" CommandArgument='<%# Eval("ProductID") %>' />
</td>
</tr>
</table>
</ItemTemplate>
</asp:TemplateField>
</code></pre>
<p>I'm using a shopping cart business object which contains fields not used for display in the GridView. What I'm attempting to do next in the RowCommand event handler is to retrieve the rest of the data fields from the selected row. This gives me the correct product ID from the selected row:</p>
<pre><code>if (e.CommandName == "Add")
{
int productID = 0;
int.TryParse(e.CommandArgument as string, out productID);
// Big blank!
}
</code></pre>
<p>How can I grab the rest of the data fields from the selected row to populate my cart? By way of explanation, I can probably use the productID to dig into the DataSet pulled from Session state, and get the data that way. However, what I'm trying to determine is if there is a syntax similar to this that can be used in this situation?</p>
<pre><code>DataRow[] rows = ds.Tables[0].Select("ProductID=" +
gridProducts.SelectedDataKey.Values["ProductID"].ToString());
DataRow row = rows[0];
</code></pre>
http://stackoverflow.com/questions/1221148/export-gridview-templatefield-problem-to-pdf0Export Gridview TemplateField Problem to PDFArnyhttp://stackoverflow.com/users/02009-08-03T08:03:32Z2009-10-25T03:26:54Z
<p>I am using iTexhSharp library to Export a Gridview Table with couple of BoundFields and TemplateFields, </p>
<p>There is no problem with BoundFields, but All the TemplateFields are blank in Exported PDF File?</p>
<p>Any Ideas?</p>
http://stackoverflow.com/questions/1597977/asp-net-c-gridview-sorting-with-custom-template-fields0ASP.net c# Gridview sorting with custom template fieldsMarkhttp://stackoverflow.com/users/1934652009-10-20T23:49:32Z2009-10-21T00:55:43Z
<p>Hi all,</p>
<p>I can't seem to figure out how to sort my gridview with both databound AND
custom fields.</p>
<p>The custom field look like this: </p>
<pre><code> <asp:Label ID="lblItems" runat="server" Text='<%# GetItems((int)DataBinder.Eval(Container.DataItem, "ObjectCategoryID"))%>' />
</code></pre>
<p>It calls for a function which shows how many item the given category has.</p>
<p>The sorting for the databounded fields work perfec but not the customfields. Im
also looking for a generic method which works for all my gridviews.</p>
<p>Can someone help me in the right direction please? Below is my full customgrid code.</p>
<p>Thank you for your time</p>
<p>Kind regards,
Mark</p>
<pre><code>using System;
using System.Data;
using System.Configuration;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.Collections;
namespace CustomControls
{
public class CustomGrid : GridView
{
public CustomGrid()
{
PageIndexChanging += CustomGrid_PageIndexChanging;
}
private string ConvertSortDirectionToSql(SortDirection sortDirection)
{
string newSortDirection = String.Empty;
switch (sortDirection)
{
case SortDirection.Ascending:
newSortDirection = "ASC";
break;
case SortDirection.Descending:
newSortDirection = "DESC";
break;
}
return newSortDirection;
}
protected void CustomGrid_PageIndexChanging(object sender, GridViewPageEventArgs e)
{
this.PageIndex = e.NewPageIndex;
this.DataBind();
}
protected override void OnSorting(GridViewSortEventArgs e)
{
DataSet ds = (DataSet)System.Web.HttpContext.Current.Session["Source"];
DataTable dataTable = ds.Tables[0];
if (dataTable != null)
{
DataView dataView = new DataView(dataTable);
if ((string)System.Web.HttpContext.Current.Session["Direction"] == "Asc")
{
dataView.Sort = e.SortExpression + " " + "ASC";
System.Web.HttpContext.Current.Session["Direction"] = "Desc";
}
else if ((string)System.Web.HttpContext.Current.Session["Direction"] == "Desc")
{
dataView.Sort = e.SortExpression + " " + "DESC";
System.Web.HttpContext.Current.Session["Direction"] = "Asc";
}
else
{
dataView.Sort = e.SortExpression + " " + "ASC";
System.Web.HttpContext.Current.Session["Direction"] = "Desc";
}
this.DataSource = dataView;
this.DataBind();
}
}
protected override void OnInit(System.EventArgs e)
{
this.AllowSorting = true;
this.AllowPaging = true;
this.PagerSettings.Mode = PagerButtons.NumericFirstLast;
this.AutoGenerateColumns = false;
this.CssClass = "gv";
this.RowStyle.CssClass = "gvRow";
this.AlternatingRowStyle.CssClass = "gvAlternateRow";
this.HeaderStyle.CssClass = "gvHeader";
this.GridLines = GridLines.None;
this.PagerStyle.CssClass = "gvPager";
this.EmptyDataText = "<div style=\"width:100%;text-align:left;\">No data found</div>";
}
}
</code></pre>
<p>}</p>
<pre><code>enter code here
</code></pre>
http://stackoverflow.com/questions/1002196/how-to-sort-on-a-gridview-using-objectdatasource-with-templatefields1How to Sort on a GridView using ObjectDataSource with TemplateFieldsjmitchemhttp://stackoverflow.com/users/1045232009-06-16T15:20:33Z2009-09-21T08:00:03Z
<h2>Background:</h2>
<p>I am working with a GridView and an ObjectDataSource. I am implementing Paging and Sorting.</p>
<p>On the ObjectDataSource:</p>
<pre><code> objectDataSource.TypeName = value;
objectDataSource.SelectMethod = "Select";
objectDataSource.SelectCountMethod = "SelectCount";
objectDataSource.SortParameterName = "sortExpression";
objectDataSource.EnablePaging = true;
</code></pre>
<p>On the GridView:</p>
<pre><code> gridView.AllowPaging = true;
gridView.AllowSorting = true;
gridView.DataSource = objectDataSource;
</code></pre>
<p>To get paging and sorting to work, I set "EnableSortingAndPagingCallbacks" to True. Before, I was getting a "System.Web.HttpException: The GridView fired event Sorting which wasn't handled." and this fixes it.</p>
<p>If I use only BoundFields in my GridView, this is great and works fine.</p>
<p>However, if I used TemplateFields, I get a "NotSupportedException: Callbacks are not supported on TemplateField because some controls cannot update properly in a callback. Turn callbacks off on GridView."</p>
<p>Which, makes sense. I just need to know how to make sorting work, without using EnableSortingAndPagingCallbacks.</p>
<p><strong>If EnableSortingAndPagingCallbacks = True:</strong></p>
<ul>
<li>Paging Works</li>
<li>Sorting Works</li>
<li>BoundFields Work</li>
<li>TemplateFields do <strong><em>Not</em></strong> Work</li>
</ul>
<p><strong>If EnableSortingAndPagingCallbacks = False:</strong></p>
<ul>
<li>Paging Works</li>
<li>Sorting does <strong><em>Not</em></strong> Work</li>
<li>BoundFields Work</li>
<li>TemplateFields Work</li>
</ul>
<p><hr /></p>
<h2><strong>My Question:</strong></h2>
<p>How do I go about getting Paging, Sorting, and TemplateFields to work, all at the same time?</p>
<p><hr /></p>
<p><em>Clarification on the implementation:</em></p>
<p>Using an ObjectDataSource with a GridView requires implementing a method called Select that provides a sort expression, the number of rows to return, and the start row:</p>
<pre><code> public IEnumerable<CountyAndStateGridRow> Select(string sortExpression, int maximumRows, int startRowIndex)
{
string oql = "select County order by {" + sortExpression + "}" ;
var counties = QueryProvider.ExecuteQuery(oql).Cast<County>();
var page = counties.Skip(startRowIndex).Take(maximumRows);
var rows = page.Select(
county => new CountyAndStateGridRow
{
CountyName = county.Name,
StateName = county.State.Name,
});
return rows;
}
</code></pre>
<p>The specific SortExpression is defined in the aspx/ascx:</p>
<pre><code><Columns>
<asp:BoundField HeaderText="County Name" DataField="CountyName" SortExpression="Name" />
<asp:BoundField HeaderText="State Name" DataField="StateName" SortExpression="State.Name" />
</Columns>
</code></pre>
<p>This is <em>supposed to</em> be passed in and call the Select method on the ObjectDataSource when the column is clicked, but it does not seem to work if EnableSortingAndPagingCallbacks = true, and instead I get the exception about the Sorting event not being defined.</p>
http://stackoverflow.com/questions/1431097/overriding-how-data-is-bound-to-controls-in-a-gridview0Overriding how Data is bound to Controls in a GridViewHexatehttp://stackoverflow.com/users/1741152009-09-16T05:21:36Z2009-09-19T18:32:14Z
<p>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.</p>
<p>Here is my scenario - I want a control that is defined in an aspx very similarly to a gridview. Something like this:</p>
<pre><code><user:ReportView runat="server" id="rvData" >
<Columns>
<asp:BoundField HeaderText="The ID" DataField="ID" />
<asp:BoundField HeaderText="Product Name" DataField="Name" />
<asp:BoundField HeaderText="Size" DataField="SizeID" />
<asp:TemplateField HeaderText="Stuff">
<ItemTemplate>
Color *<%# Eval("ColorID") %>*
</ItemTemplate>
</asp:TemplateField>
</Columns>
</user:ReportView>
</code></pre>
<p>I will be using this control for several different reports, and I want to tuck in the formatting by doing one of two things:
1. implementing the <code><Columns></code> in a DataBoundControl or
2. wrapping a GridView (probably easier).</p>
<p>I want to construct my own control tree from the bound data (I don't want to render one table, I want to have the freedom to populate any set of controls I want.</p>
<p>The problem I am having is I can't seem to get a hold of the content inside of a cell using a TemplateField when I iterate through GridViewRows. Is there any way to get the evaluated content of a template field programmatically?</p>
<p>Any suggestions as to how to go about this?</p>
http://stackoverflow.com/questions/1087604/equivalence-of-an-asphiddenfield-for-a-gridview0Equivalence of an asp:HiddenField for a GridViewMatthttp://stackoverflow.com/users/1335352009-07-06T15:26:19Z2009-07-06T15:40:16Z
<p>There is no asp:HiddenField that can be used in a GridView so I was wondering what would work similar to this.</p>
<p>My reasoning for wanting this is I have a ButtonField that triggers an OnRowCommand. From there I can figure out which row was selected, but I cannot retrieve the text value from the ButtonField to see the data that was bound to it (through DataTextField).</p>
<p>My solution to this was to have a BoundField and just retrieve the text value from it instead, since I already knew which row was selected. This worked, but I need it to be hidden.</p>
<p>Someone suggested using a HiddenField nested within a TemplateField, but I had troubles retrieving the text value from that HiddenField. Is there some way to access the control within the TemplateField to get the text value of the HiddenField?</p>
<p>If anyone has any suggestions for alternatives that would be great as well.</p>
<p>Thanks,<br/>
Matt</p>
http://stackoverflow.com/questions/1039474/can-i-programmatically-add-a-linkbutton-to-gridview1Can I programmatically add a linkbutton to gridview?pschorfhttp://stackoverflow.com/users/22702009-06-24T16:32:35Z2009-06-24T22:01:19Z
<p>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 code I currently have:</p>
<pre><code>public void gv_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
var data = (FileDirectoryInfo)e.Row.DataItem;
var img = new System.Web.UI.HtmlControls.HtmlImage();
if (data.Length == null)
{
img.Src = "/images/folder.jpg";
var lnk = new LinkButton();
lnk.ID = "lnkFolder";
lnk.Text = data.Name;
lnk.Command += new CommandEventHandler(changeFolder_OnCommand);
lnk.CommandArgument = data.Name;
e.Row.Cells[0].Controls.Add(lnk);
}
else
{
var lnk = new HyperLink();
lnk.Text = data.Name;
lnk.Target = "_blank";
lnk.NavigateUrl = getLink(data.Name);
e.Row.Cells[0].Controls.Add(lnk);
img.Src = "/images/file.jpg";
}
e.Row.Cells[0].Controls.AddAt(0, img);
}
}
</code></pre>
<p>where the first cell is a TemplateField. Currently, everything displays correctly, but the linkbuttons don't raise the Command event handler, and all of the controls disappear on postback.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/850960/adding-templatefield-to-detailsview1Adding TemplateField to DetailsViewdotnet-practitionerhttp://stackoverflow.com/users/714222009-05-12T02:47:53Z2009-05-12T04:32:24Z
<p>How do I add TemplateField control to the beginning of the DetailsView Fields collection?</p>
<p>Here is my code..</p>
<pre><code>TemplateField tf = new TemplateField();
...
...
dv.Fields.Add(tf);
</code></pre>
<p>This adds to the very end of the DetailsView control. I tried dv.Fields(0) but there is no Add method available. I noticed that we have dv.Fields.RemoveAt but we do not have dv.Fields.AddAt...</p>
<p>Any ideas???</p>
http://stackoverflow.com/questions/387530/show-hhmm-24h-format-in-templatefield-using-text-property0Show HH:mm 24H format in TemplateField using text propertyAngel Escobedohttp://stackoverflow.com/users/258522008-12-22T22:14:10Z2009-04-21T03:26:56Z
<p>Hi there, im trying to show a 24 hours format using this line:</p>
<pre><code>Text='<%# Bind("Appointment", "{HH:mm}")
</code></pre>
<p>So how it'll be formated for showing for example 16:40 instead 4:40 ? thanks in advance</p>
http://stackoverflow.com/questions/578938/asplinkbutton-and-eval2ASP:LinkButton and Evalsgibbonshttp://stackoverflow.com/users/23272009-02-23T19:16:32Z2009-02-23T19:22:14Z
<p>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 the gridview is bound to, so I'm doing something like this:</p>
<pre><code><asp:LinkButton ID="viewLogButton" CommandName="viewLog" CommandArgument="<%#Eval("ID")%>" Text="View Log" runat="server"/>
</code></pre>
<p>Unfortunately, the resulting HTML is this:</p>
<pre><code><asp:LinkButton ID="viewLogButton" CommandName="viewLog" CommandArgument="3" Text="View Log" runat="server"/>
</code></pre>
<p>It seems that it <em>is</em> parsing the Eval() properly, but this is somehow causing it <em>not</em> to parse the LinkButton tag and just dump it out as literal text. Does anyone know:</p>
<p>a) why this is happening and,
b) what a good solution to this problem is?</p>
http://stackoverflow.com/questions/338567/converting-an-aspbuttonfield-to-an-asptemplatefield-in-a-gridview-control1Converting an asp:ButtonField to an asp:TemplateField in a GridView Controlsgibbonshttp://stackoverflow.com/users/23272008-12-03T20:22:25Z2008-12-03T20:39:05Z
<p>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 some logic. I now need to switch to using a template field for this column, and want to do something like this:</p>
<pre><code><asp:TemplateField HeaderText="Action">
<ItemStyle HorizontalAlign="Center" />
<ItemTemplate>
<asp:LinkButton CommandName="myaction" CommandArgument="<%#Eval("id")%>" Text="do action" runat="server"/>
</ItemTemplate>
</asp:TemplateField>
</code></pre>
<p>My problem is with the CommandArgument attribute - I don't know how to get it to be the row id from the GridView. Eval("id") doesn't work - does anyone know what the name of the row id property is? Or a better way to do this?</p>