The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
5answers
41 views

add text after dataGrid cell

This is dataGrid . How to add text(string) after <%# Bind("Value") %> for example 123.432 and i want after any record to have "$" dolar sign <asp:TemplateField HeaderText="Стойност"> ...
0
votes
2answers
149 views

validate a template text box with database value

I'm developing a website and have a textbox in gridview template field. This textbox collects the input for the "order quantity" which has to be compared against the "available quantity"(stored in the ...
0
votes
5answers
443 views

Getting total values of a certain column from GridView

Him I am using a ASP.NET/VB.NET with SQL-Server-2012. I have a a GridView column with 3 fields and 1 template field as shown below: <asp:GridView ID="grdItems" runat="server" ...
1
vote
1answer
83 views

Ddynamic GridView with TemplateFields - confusion in LifeCycle

I have a databound gridview that I create dynamically. The datasource returns an object based on the several DropDownLists (types of objects are different). Depending on the type of the object, the ...
0
votes
0answers
157 views

Manipulating Dynamically created CheckBox TemplateField in ASP.NET

I am trying to create multiple asp gridViews dynamically based on a dynamic data set. Each row of this data set contains a string of values "Foo1, Foo2, Foo3, Foo4". An XML representation of the data ...
0
votes
1answer
405 views

Gridview template field datasource

I've placed a gridview on my asp.net page, and am using a sql call to obtain the datasource. In the sql call, it brings the data for all the fields(name, address, phone, type) On the gridview, there ...
0
votes
0answers
33 views

NullImageUrl property in ASP Image Control within a TemplateField

Okay so I've constructed a TemplateField to house an ASP hyperlink and an image control using a querystring as its target url. This is within a Gridview with a connection to an Access database. I am ...
0
votes
1answer
115 views

updatecommand in asp page not working

ok i have solved my last question by using update parameters instead und putting templatefields on my gridview instead of boundfields. it is displayed alright, only thing is the update button doesn't ...
0
votes
1answer
178 views

Assign the value of a templatefield on gridview to variable

I know how to get value the of a templatefield inside a RowDataBound event: Control ctrl = e.Row.FindControl("Drop_Responsaveis"); DropDownList ddl = ctrl as DropDownList; ...
1
vote
2answers
738 views

Gridview Button in TemplateField only fires on second click

I've done some searching prior to asking, and although this post is close, it doesn't work for my scenario. What I find is that the "delete" button in my template field seems to fire, but the click ...
0
votes
0answers
204 views

image button in header template of template field not working

I've had a look round and although there seem to be a lot of similiar questions, I can't find an answer that helps. I've got an image button in the header of a template field, but it doesn't want to ...
0
votes
1answer
71 views

adding controls supporting javascript into parent/containing page

i have a asp.net page with a gridview in it, which is programatically (sp?) adding its columns. one of these is an itemtemplate, and it requires some javascript in the page to function. is there any ...
0
votes
1answer
320 views

Not able to access edit template field dropdownlist in gridview

I am using a gridview which is having dropdownlist in edittemplate field. There are 3 list items in dropdown : Red,Amber,Green. Instead of displaying text in listitems, I want to show the colors, for ...
0
votes
1answer
276 views

GridView into UpdatePanel fires OnRowUpdating event : but I can see only the controls inside ItemTemplate instead of EditItemTemplate?

As i was written in the title, the problem is very funny : <asp:ScriptManager ID="ScriptManager1" runat="server" /> <asp:UpdatePanel ID="UpdatePanel1" runat="server" ...
-3
votes
3answers
304 views

Add values into two columns in a table using data in one textbox

I'm developing an asp.net web-forms application with entity framework. There are two columns in my database table to add Latitude and Longitude. But I don't want to add two TextBoxes in user interface ...
0
votes
0answers
348 views

Dyanmically create gridview in code behind with template field

I need to create gridviews dynamically, of particular design(only 4 columns), first column has a checkbox, and the rest are boundfields, how can i create this, and bind the dynamically created ...
1
vote
4answers
2k views

How to get values from template fields in gridview

this is my markup of gridview.. <Columns> <asp:TemplateField HeaderText="Customer Name"> <ItemTemplate> ...
0
votes
1answer
310 views

How to Bind child Gridview control which is used inside template field of Parent Gridview Control?

I am working in a project and my Requirement is such that i need to used a Gridview Control as a Templatefield for another Gridview Control and Bind a Generic List to it Dynamically Before Rendering ...
0
votes
1answer
144 views

Does using Labels in TemplateField in Gridview cause performance issues?

Is there a significance performance issue with changing Gridview *BoundFields* into TemplateFields with Labels? (please see code excerpts below) I'm planning to implement the change above due to a ...
0
votes
1answer
522 views

Updating SQL database using gridview/templatefield

Anybody know how to get a Templatefield column of text-boxes to feed data typed into them back into a sql database using the SqlDataSource already being used in the gridview the templatefield is in ...
0
votes
0answers
164 views

SortExpression in TemplateField or saveing my ItemTemplate data doesnt work together

Got problem with either save my data or sort my data. It depends on what void I put my logic to the database and where I got my dataSource/databind. If I place my logic to DB and ...
0
votes
1answer
249 views

ObjectDataSource Update

I have a gridview (CustomerDetails) with editing enabled. When i click the edit button and update one of the 5/6 fields (i changed all fields to templatefield and then set the edittemplate to a label ...
1
vote
3answers
2k views

How to add TemplateField created in .aspx markup to GridView column in code behind?

Basically, I want a button that adds a new column with my controls (i.e. TextBox, DropDownList) to my GridView. Already seems simple enough with this: protected void btn_AddColumn_Click(object ...
0
votes
0answers
283 views

How to bind templatefield in Grid View with ObjectDataSource

How can i bind a objectdatasource to templatefields in gridview.Actully i have 2 template fields (Edit and Delete) in a gridview.Before ,i was making them working using default methods ...
0
votes
0answers
132 views

enabling callback in c# asp TemplateFields

In a (c# asp.net) gridview with a templateField you will get the following error if you have EnableSortingAndPagingCallbacks set to true: "Callbacks are not supported on TemplateField because some ...
0
votes
1answer
484 views

Gridview Edit external update button.

I have a gridview in my asp.net page that has one template field for editing a yearly budget. The code follows: <Columns> <asp:BoundField DataField="f_year" HeaderText="Year" ...
0
votes
1answer
116 views

how to clear generated columns without clearing ItemTemplate fields

i have a grid views that generated columns through the code, and also ItemTemplate field from aspx, how can i clear columns generated from the code without clearing the template fields? code from my ...
1
vote
1answer
212 views

How to control TemplateField order

I have a grid view where the columns is generated dynamically through the code [AutoGenerateColumns="false"] with one TemplateField but also I am creating another TemplateField from ASPX How can I ...
2
votes
3answers
2k views

Reading variable into NavigateUrl in TemplateField in GridView asp.net 4 c#

I am new to programming. I have created a GridView and used SqlDataSource to bind. Grid presents several variables from SQL Server database, including hypertext links. For a particular field I need ...
1
vote
1answer
1k views

Conditional link in GridView TemplateField with NavigateUrl also conditional ASP.NET 4

I am new to ASP/C# and am trying to create a HyperLink in a GridView Template that will: a) not display if a database value is NOT true (I have accomplished this) b) query the SQL database to see if ...
0
votes
1answer
2k views

How to enable and disable the hyperlink in gridview?

I have a hyperlink in the template field. I want to enable and disable the hyperlink based on its value. Let's say if Id is "ABC" I want to disable the hyperlink. I tried the code below but it didnt ...
0
votes
1answer
489 views

Convert a gridview templatefield to pdf iTextSharp

I have a GridView which is programatically filled from the DB (not a SqlDataSource or such). There are 4 columns which are TemplateFields as I format their text. They are Dates and Times and this is ...
0
votes
2answers
633 views

Unable to find control in gridview

I want to find the control(hyperlink) in the gridview. Based on the value of the control I want to enable or disable the hyperlink. I tried like this. But I am always getting null. protected void ...
0
votes
1answer
129 views

change content of gridview dynamically

i have a grid view with three bound field columns and a template filed column.The template field column has three buttons..edit view and delete.How do I dynamically change the content of the grd view ...
0
votes
1answer
574 views

GridView TemplateField bound to SQL Statement?

I have a Gridview with template fields conatining drop down lists. I need to populate the dropdownlists with a sql statement. My gridview code is as such: <asp:TemplateField ...
0
votes
1answer
213 views

ASP gridview: adding two values and validate

I use GridView to show/edit data in the database. In the GridView there are two columns called mark1 and mark2. What I want to do is when user clicks update, the program should check if the values ...
0
votes
1answer
1k views

Gridview templatefields databind

I have a gridview with the following code: <asp:TemplateField HeaderText="Column1"> <EditItemTemplate> <asp:Label ID="Label1" runat="server" Text='<%# ...
0
votes
1answer
2k views

databind gridview edititemtemplate dropdownlist with sql statement

I have a gridview with the following code: <asp:TemplateField HeaderText="Column1"> <EditItemTemplate> <asp:Label ID="Label1" runat="server" Text='<%# Bind("Column1") ...
0
votes
2answers
1k views

Textbox Currency Formatting

I am formatting a gridview templatefield that is databound with{0:c} and it displays currency as such: $790.00 Is there a way to adjust it so the dollar symbol isn't displayed?
0
votes
1answer
440 views

State of checkbox lost after postback in a custom template field

I have created a custom checkbox template field by deriving it from System.Web.UI.WebControls.TemplateField. The template for this field has been created by creating a class which implements ITemplate ...
0
votes
0answers
351 views

gridview loop issue

I have a gridview with 4 columns, three of them are template fields where the user can enter the information needed and click a button to submit it to the database. I have 2 issues: When I click my ...
0
votes
2answers
1k views

How to Access TemplateField in Code Behind

<asp:DetailsView... <asp:TemplateField HeaderText="My CheckBox" SortExpression="DataID" > <InsertItemTemplate> <asp:CheckBox ID="T01cbx" runat="server" ...
0
votes
1answer
121 views

in which event can i handle the hyper link in the grid view?

I have a gridview which contains a hyper link as a template field ,now i wanna to use row command to handle the click on this hyperlink but,no command name or command argument for the hyper link .How ...
1
vote
2answers
411 views

How to set forecolor in TemplateField?

The code below displays either "M" or "F" in the GridView column after evaluating Gender. <asp:TemplateField HeaderText="Gender"> <ItemTemplate> ...
1
vote
2answers
2k views

How to pass GridView row to TemplateField function?

I have a GridView that has 3 columns: FirstName, LastName and a TemplateField FullName where I string together FirstName and LastName. Assuming calling DisplayFullName is the function I want to use ...
0
votes
1answer
51 views

Don't display item in templatefield in filtering

I have a gridview with templatefield . I fill gridview in page load . The problem is when filtering gridview , items in templatefield don't display .
0
votes
3answers
1k views

change templatefield column location in gridview

i have and grid view which i set an templatefield in it. in addition i set a datasource dynamically in code behind. now the templatefield appears as the first column, and i want to move it to be the 5 ...
1
vote
1answer
161 views

How to Retain the Styling / Hover Functionality of Image Hyperlinks in a GridView TemplateField using ImageButtons

Within each row of a GridView (using the TemplateField), I would like to display image buttons that will be used to control the data in that row. I would then like to swap out the images of the ...
0
votes
1answer
263 views

Sitecore: Hide data template field from page editor

I have 2 data template fields "title" and "id", used for the HTML page title and the id attribute in the body tag respectively. When the page is viewed using Page Editor, Sitecore attempts to render ...
0
votes
1answer
171 views

ASP.net GridView: get LinkItem's row

I want to show "Delete" link in GridView to registred users, therefore I am using templateField: <asp:GridView ID="GridView1" runat="server" AllowSorting="True" OnSorting="GridView_Sort"> ...

1 2 3