The boundfield tag has no wiki summary.
3
votes
1answer
831 views
How do I break the a BoundField's HeaderText
In HTML in the td of a table you can break text by using <BR> between the words. This also works in the HeaderText of a TemplateItem but not the HeaderText of a BoundField. How do I break up ...
2
votes
3answers
162 views
How do I convert a BoundField to a HyperLinkField?
I have a GridView (gv) bound to a dataset (ds). Columns[1] is bound to a field in ds named "orderFilename"; Columns[6] is a date field.
If Columns[6] is null, I want Columns[1] to appear as text; ...
2
votes
3answers
1k views
ASP.NET GridView use FindControl() on BoundField to manipulate field
I'm working with an old app that had hard coded columns for different locations, now that new locations are being added I decided to try and make things populate dynamically. One of the features of ...
2
votes
3answers
2k views
How to use a hidden Boundfield in a GridView in ASP.NET?
I am binding a GridView using a DataSource in asp.net, and i would like to have some hidden BoundFields so I can access those values in my RowDataBound Function. However, when I set Visible="False" on ...
2
votes
1answer
442 views
How to put condition in grid view bound field?
here my code-
<asp:BoundField DataField="DayOfTheWeek" HeaderText="Day" ItemStyle-CssClass="Itemstyle"/>
from my collection entity I am getting DayOfTheWeek like 1,2...7. 1 for monday , 2 for ...
2
votes
1answer
446 views
Boundfield as part of Hyperlinkfield in a code generated gridview
Can someone please explain to me how I can include a boundfield (Emp_ID) to the hyperlinkfield (IDNumber) in a code generated gridview using C#? So that the url string would be ...
1
vote
1answer
41 views
DetailsView binding to child object
I am trying to bind a BoundField of a DetailsView control to a child object of the datasource, I can't seem to find the right syntax.
Here's some sample code;
<asp:BoundField ...
1
vote
1answer
102 views
Can I change the colspan of a BoundField column's HeaderText
I have a 'status' cluster of three columns. I want to have the header row span all three. I know I can use the colspan="3" parameter with the th tag in HTML. How do I accomplish this with BoundField?
...
1
vote
1answer
159 views
Format BoundField Data Types Dynamically
I'm using a CheckBoxList to define which columns are displayed in a GridView. I populate the CheckBoxList using a query like
select column_name, data_type from information_schema.columns
where ...
1
vote
0answers
82 views
changing boundfield visible status based on viewport
I have a gridview with a number of boundfields. I'm trying to make it so that some boundfields are visible or invisible depending on the width of the screen. I've looked everywhere, and i tried ...
1
vote
2answers
767 views
width of grid view boundfield
I can not set the width of bound field. Is there any problem in the following markup.
<asp:BoundField DataField="UserName" HeaderText="User Name"
...
1
vote
1answer
597 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
2answers
2k views
Using BoundField.DataFormatString to format currency data, no $'s and negative numbers should be in ( )'s
I have a gridview that I am populating with data for the folks in accounting and they want me to format currency values so that they display without $'s, with commas separating digits and with ...
1
vote
1answer
694 views
BoundField style
how can i giv style for BoundField.
am using BoundField in gridview. it shows a underline and a unwanted color.
how to remove underline and color.
1
vote
1answer
545 views
How to get ClientID for control generated for a BoundField in ASP.NET?
I have a form with BoundFields in it and I need to get ClientID(s) for control(s) associated with each BoundField I have in the form.
How can I do it?
UPD: I do not have control id. All I have is ...
1
vote
2answers
604 views
Modify Asp gridview boundfield
I want to add some text to a boundfield build in the code behind without writing any code in the code behind.
example
I receive "overflow" in a specific field, and i'd like to display "stack ...
1
vote
2answers
2k views
ASP.NET Boundfield overridden to support Dropdownlist is missing one final feature
I managed to override the Boundfield to display a dropdownlist if I put it in a Gridview.
protected override void InitializeDataCell(DataControlFieldCell cell, DataControlRowState rowState)
{
...
1
vote
1answer
315 views
asp:BoundField view the values with a condition
i have a dataview with:
<asp:BoundField DataField="AccontoAutorizzato" HeaderText="Acconto Aut."
SortExpression="AccontoAutorizzato" dataformatstring="{0:C}" />
is ...
0
votes
0answers
8 views
How to check if header cell is a BoundField type
I'm trying to export to excel a GridView data, and need to export only the Fields with Data. Right now, When i export i get all the fields on the page along with command fields like Delete, Add, Edit ...
0
votes
0answers
102 views
SPGridview header column alignment
I have grid that gets created in the code behind.
Grid has columns like Description, Language. Issue is the headertext for these 2 columns is not getting left aligned. The data within the grid have ...
0
votes
1answer
157 views
ASP.NET: Gridview Formatting Columns with DataFormatString
I want to change these values with DataFormatString properties in Gridview.
1.000000 --> 1 --> Deleting all digits after .
366705.000000 --> 366,705 --> Deleting all digits after . and put the comma ...
0
votes
1answer
415 views
how to wrap your text in the boundfield of Gridview
I have a table, in the table there are couple of buttons and a Gridview. I am trying to wrap the text in one of the boundfield of the Gridview. I tried to set the RowStyle Wrap="true" in the Gridview ...
0
votes
1answer
98 views
Set Value to Detailview1's bound field?
This is My DetailView1.. i want to set value for detailsview's boundfield on page load in asp.net. so please go through my code, i hope that you can understand what i want exactly.
...
0
votes
1answer
86 views
asp.net gridview binding to deeper property of specific type
my webside has a gridview
i bind it to a dataset recived from powershell
in this dataset are a lot of different data types.
everything is working fine but for one field i would like to bind a deeper ...
0
votes
0answers
134 views
Modifying BoundField Data returned from a SOAP request
I am very new to c# and I am trying to modify my grid data that was retrieved from a SOAP request. Here is the code so far:
<Columns>
<asp:BoundField DataField="groupName" ...
0
votes
0answers
86 views
SaveViewState() in custom control won't execute
I am creating my own custom control which has a collection property named "Columns". I have problem with managing the state of the property, I implemented ...
0
votes
1answer
36 views
DataBinding Help
I'm trying to wrap my head around databinding using a sqldatasource. Right now I have a sqldatasource, databound fields, and template fields that I bind using:
<%# Bind("ColumnName") %>. I ...
0
votes
2answers
139 views
GridView showing complete datasource as well as BoundFields
What I want to do is just display a few specific columns from my data source on my gridview, but for some reason I'm seeing first the boundfields that I want, followed by every column in the data ...
0
votes
1answer
585 views
How to set maximum width for Gridview's BouldField Column?
I have a design flaw and in a desperate need for a help because I am fairly new with .NET.
I have a GridView on my page and my goal is to limit the maximum width for each column. Below is the code:
...
0
votes
0answers
57 views
How can I access a GridView's ReadOnly BouldField in EditMode?
I have a small problem that I can't answer due to I am lacking of experience in .NET.
I have a GridView's Bould Field that I named <asp:BoundField DataField="ID" HeaderText="ID" ...
0
votes
0answers
92 views
BoundField content width
I have a basic gridview with some boundfields getting populated from a database. The problem I have is with some of the columns, their data is a URL, which tends not to have hyphens or spaces in ...
0
votes
2answers
259 views
Pass enum to method to be used as enum and type
I'm trying to pass an Enum into a method that will create columns for a gridview. I can pass the Enum as Enum passEnum OR Type enumType, and either works, just not together. What I mean is if I pass ...
0
votes
1answer
246 views
How to manipulate GridView2.Columns as BoundField with auto-generate field?
How to manipulate GridView2.Columns as BoundField with auto-generate field?
Index outof range?GridView2.Columns[6] as BoundField I use Automatic generate field.
JobPostDataContext db = new ...
0
votes
0answers
294 views
Display an image on a Boundfield of a code generated GridView
Is there a way to display an image on a Boundfield of a dynamically generated GridView where the filename of the image is the data for that column? How can it be implemented?
I have implemented it ...
0
votes
1answer
295 views
Formatting applied to boundfields in gridview is not working
I have the following columns in a gridview, one is a date and the other one is a dollar amount. I applied the formatting and set the HtmlEncode property to false, however the values still come up ...
0
votes
1answer
53 views
Binding objects to a Gridview
I have three classes (domain, role and user). Domain and role are properties of the user class, like this:
public int UserID { get; set; }
public string UserName { get; set; }
public ...
0
votes
1answer
532 views
asp:BoundField Yes/ no instead true false
Hi i have a datagrid with
<asp:BoundField DataField="PrenotazioneEffettuata" HeaderText="Pren. Effettuate"
SortExpression="PrenotazioneEffettuata" />
...
0
votes
2answers
705 views
How to change the direction of a BoundField in GridView
Sorry if my question seems to simple .
Right now in the BoundField of my GridView some data display like "12/11/1381" that i wanna display like "1381/11/12" (opposite direction) .
I know i could ...
0
votes
1answer
357 views
set visible = false to a asp:BoundField
i have a gridview width a boundfield:
<asp:BoundField DataField="Nome" HeaderText="Nome" SortExpression="Nome" />
i want set the visible parameter of this by a condition in page_load method.
...
0
votes
1answer
583 views
When Binding a GridView to a DataTable, How can we Change the value displayed by a BoundField
When Binding a GridView to a DataTable, How can we Change the value displayed by a BoundField