Tagged Questions
2
votes
0answers
45 views
How to Hide selected item from a databounded combobox (Datagridviewcombobox)
I have a bounded combobox inside datagridview ( DataGridViewComboBoxColumn ) and
I want to hide selected item of that combobox in the next row of the grid
for example :
combo box values are,
...
0
votes
1answer
18 views
GridView and XMLDataSource
I want to display xml content at aspx page. There is my aspx code:
<asp:GridView ID="gvXML" runat="server" AutoGenerateColumns="True"
DataSourceID="xmlData">
...
0
votes
1answer
58 views
How to check a checkbox from dataset my code attached ASP.NET?
I am trying to check checkbox from dataset as I have values in dataset are like,
USERNAME Permissions
Charles
John Insert, View
Tom View
how would I check check box I ...
0
votes
1answer
35 views
Drawing RadioButton in DataGridColumn in specific point
I wrote one GridView with custom column that it's editing control have four RadioButton in a square , after edit step I want to show the selected box checked and other unchecked , but I can't find any ...
0
votes
1answer
42 views
BackgroundWorker updates UI on RunWorkerCompleted but System hangs due to heavy data load
I have created a backgroundWorker and i am calling RunWorkerAsync after InitializeComponent() However after googling and through Stack Overflow, I came to know that I cannot update the UI through ...
1
vote
3answers
78 views
C# Check gridview row select or not
I want to check whether a row in a gridview is selected or not. how can I write if condition??
if (gridview-row[1].select)
{
//do something
}
else
{
//do something
}
0
votes
0answers
23 views
Export to xls file removing leading zeros
Each of the FixedLifeMaster and VariableLifeMaster fields are stored in my database as nvarchars and in the Entity Framework as a strings. However, when I export to an .xls file, Excel only sees ...
2
votes
1answer
60 views
Get entity object from CommandArgument in GridView RowCommand
I am using a GridView which is bound to a List<Customer>. When RowCommand is fired by some button I want to be able to retrieve the current row's Customer object from the e.CommandArgument, ...
3
votes
4answers
116 views
The best way to perform actions on GridView rows
I am attempting to perform an action on rows in a GridView. From what I have read online, there are several ways to perform such actions. All of these methods seem very convoluted and so much manual ...
0
votes
1answer
90 views
If condition on a gridview for boundfield?
I have a gridview with the following boundfiled. DataField is decimal value. If the value is anything higher than 0 I want to display as True in grdiview else false. How to do , if conditon for the ...
0
votes
1answer
29 views
TemplateField decimal places and thousand separator
I am using .net 2.0 and have a gridview with a templatefield where I have a label that has a text and a tooltip. The text is a numeric value and the tooltip is a description of the coin of that value.
...
0
votes
1answer
37 views
Need suggestions for displaying somewhat complex table with ASP.NET Web Forms
I don't have much experience with ASP.NET Web Forms and need to generate somewhat complex table.
I have following classes:
public class ServiceTable
{
...
public IList<Service> ...
0
votes
0answers
47 views
Filtered DropDownList in GridView
I have DropDownList nested in GridView. How can I filter DropDownList data source, to show only active db rows (column Active as bit type) OR currently selected value of the DropDownList?
Where part ...
-3
votes
3answers
73 views
Viewing Row number in GridView Control C#
I want to know if it possible to add a row number for each row in the GridView Control in the boxes as shown in the image.
Is this possible or not?
0
votes
0answers
59 views
Can you load a new WPF Gridview after clicking a Hyperlink?
I'm attempting to pretty up a WPF application, but I'm not too familiar with the XAML coding. I have a main window, and tabs for various elements on the side (Videos, Documents, Training, etc), and ...
1
vote
1answer
73 views
.net GridView OnRowUpdating not getting the current values of the TextBox
According to this documentation I've added a gridview and implemented onupdate.
http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.gridview.rowediting.aspx
I open the page and click ...
0
votes
1answer
39 views
Limiting the number of characters shown in a Boundfield for gridview
I have a gridview that shows a user's name, a subject, and a date. The .aspx code looks like this:
<asp:BoundField DataField="UserName"
SortExpression="UserName" />
...
-1
votes
4answers
168 views
Text of label inside GridView [closed]
I have a label inside a grid which is common to all the rows which have certain time values. I need to get the text of each row in javascript. How do I do this?
0
votes
0answers
78 views
gridview customvalidator in edititemtemplate
I am trying to validate two controls in the edititemtemplate of a gridview.
Based on a selection in a dropdownlist. I would like to make sure that a textbox has a value.
I have researched alot and ...
0
votes
1answer
204 views
SelectedIndexChanged event of gridview fails to fire randomly
Hi I have a Gridview SelectedIndexChanged event. it fires on click of any row in that grid. But sometime (once in 10 tries) it doesnt fire. i have some code inside AgeGrid_SelectedIndexChanged which ...
3
votes
1answer
68 views
Setting Default Boolean Value for a Checked CheckBoxField
I have a GridView in ASP.NET with a CheckBoxField column that is bound to a DataField from a query in a database. I need to be able to have it checked if the value is false, and unchecked if the value ...
0
votes
3answers
55 views
Querying data in gridview
I am developing windows application in c#.
I have a gridview with about 40k records in it.
In that gridview i have checkbox.
I wanted to update only those records which are checked.
I have written ...
-1
votes
1answer
47 views
How to make footer row visible false during row editing and visible true on when i cancel or save the record in Gridview
How to make footer row visible false during row editing and visible true on when i cancel or save the record in Gridview, c#?? Initially i have set the gridview showfooter="true"
0
votes
0answers
138 views
Send a gridview linkbutton commandargument to a user control in the pageas
I have a page with a gridview, and a user control, the idea is take the command argument of a linkbutton (after a user click on the linkbutton cell) in the gridview to send it to the user control, but ...
0
votes
1answer
320 views
Insert datatime value from ASP.NET gridview to SQL Server Datatable
I have a column in ASP.NET gridview that displays the date value in this format (dd/mm/yyyy 00:00:00) upon page load. This is bound to an SQL table with a column declared as "Date" type.
In the ...
2
votes
2answers
157 views
What is this code for
I found this code in one of the project developed by an Ex-Employee for custom gridview with custom controls which works fine but I am not sure what exactly it is doing,
CODE:
public class ...
1
vote
3answers
364 views
How can i add image in a datatable?
How can i add image in a datatable ?
I tried the following code,
Image img = new Image();
img.ImageUrl = "~/images/xx.png";
dr = dt.NewRow();
dr[column] = imgdw;
But it showing text ...
1
vote
2answers
288 views
Delete the uploaded Excel file after bind the data source to gridview in c#.net
I want to delete the excel and csv file after complete reading and bind data source to the grid view.. However after I successful deleted the file, my gridview has empty data...
DataTable dt = ...
0
votes
0answers
157 views
Gridview ItemTemplate ControlStyle-Width ignores right-side padding
I have a GridView as follows and wish to make the TextBoxes fill the columns properly. At the moment, setting Controlstyle-Width="100%" doesn't work as expected; there is padding top, left and bottom, ...
0
votes
3answers
214 views
Link Button to Gridview
I have a following GridView and my source code look like this:
<%@ Control Language="C#" AutoEventWireup="true" CodeFile="ShopData.ascx.cs" Inherits="usercontrols.UsercontrolsShopData" %>
...
1
vote
3answers
372 views
GridView DataKeys Collection Empty When GridView is in an EditItemTemplate
All,
FYI: I am using VS2005, .net 2.0.
I have a GridView control that exists in the FormView EditItemTemplate. Unfortunately, the GridView misbehaves in that setup, its DataKeys collection is empty ...
0
votes
3answers
104 views
Sort and Search Datatable
I have a datatable that has been bound to a Gridview in code behind. This means i would have to sort columns in code behind and when searching for a record i would imagine that would be done in code ...
0
votes
0answers
45 views
gridview not recognizing protected property
I have a web forms application written using asp.net 2.0/3.5. I am upgrading this application to web forms 4.5. I created a new project using vs 2012 and am creating new forms then copying/pasting ...
-3
votes
2answers
159 views
How to display Double valued data as Integer data in Grid View? [closed]
Iam having Grid View with one column values as 12.33, 13.44, 14.55
I want to split these values and show as integers i.e., 12, 13, 14.,
Let my Grid view get double values but in displaying in grid ...
0
votes
2answers
168 views
How to get count of visible rows in Grid View?
I Have GridView with both visible and invisible rows in it,
But i just want count of only visible Rows in that grid
i have tried this
int rowCount = gv_SPAvailable.Rows.Count(row => ...
0
votes
0answers
16 views
How can I get the filtered data from a custom page in a dynamic data application?
I've created an Entity model and added some related tables. I've scaffolded the application and added some filters. The data is filtering as I want it. I've created a custom page so I can add an ...
0
votes
2answers
37 views
How do i hide a row in grid when clicked on image button which is in that row?
I am Having Grid with few columns in which one column is a Image. When clicked on that image i want that row to be Hide.
Here when i click on the last column my row must be hidden,
How can i make ...
0
votes
0answers
86 views
Dynamically create boundfield based on column names
I have a page that queries a view (SELECT * FROM View_Users) and then outputs to a GridView using AutoGenerateColumns="True". The purpose of this is so that the view can be updated by someone who has ...
1
vote
1answer
72 views
Why AllowPaging = true; isn't showing Page Numbering at all
when I try,
GridView.PageSize = 5;
GridView.AllowPaging = true;
GridView.PageIndexChanging += new GridViewPageEventHandler(GridView_PageIndexChanging);
and I got this,
void ...
2
votes
1answer
73 views
Searching for Windows Forms DataGrid (incl. commercial) with specific requirements
I know, there were multiple questions like this, but I have some special requirements, which I would like the grid to meet. Meeting all is not necessary, but at least some would be nice (ordered by ...
0
votes
0answers
93 views
binding a gridview and errors
I am trying to bind a gridview that's inside a user control.
However, I keep getting the following error when trying to bind it:
A data item was not found in the container. The container must ...
1
vote
1answer
174 views
OnSelectedIndexChanged Not Firing in GridView
Gridview Code:
<asp:GridView ID="gvVessel" runat="server" AutoGenerateColumns="false" GridLines="None"
EmptyDataText="No Vessels found." OnRowCommand="gvVessel_RowCommand"
...
0
votes
0answers
123 views
Setting autopostback to true in itemTemplate in gridview slows down databind
I have an asp grid view. One of the fields is an "ItemTemplate" I bind this dynamically using an in memory datatable and linq to filter this depending on other factors.
If I leave the markup as such
...
1
vote
0answers
27 views
GridView with tempelate TextFields
i have a grid view with textfields as tempelates.
i have connected it to a DB so 'm able to perform Insert operation when entred in a textfield for the checked column. now i have to update the DB so i ...
0
votes
0answers
51 views
Bind ddl in gridview that is already bound
I am trying to have the ddl bound when the search box returns a result. The DDL is bound as follows:
<asp:TemplateField HeaderText="Service Area" SortExpression="ServiceArea">
...
0
votes
1answer
103 views
gridview with textboxes
i have a GridView with TextBoxes as templelates. now i'm able to insert into the Database. I have a Checkbox as a templet in the gridview so when i check the checkbox the values in the respective row ...
1
vote
1answer
173 views
Gridview refresh issues with Umbraco nodes
I have a fairly straight forward Gridview which pulls in a set of Umbraco nodes. I am binding it on page load.
My issue comes up on the RowCommand to remove a program(node). The code to remove ...
0
votes
2answers
69 views
Gridview with textfields
hello,
i want to create a grid view from two tables in database. and bind it together and update it another table in the database. Customer_Name is one column from BillingData table and ...
1
vote
1answer
105 views
Display parent/child xml nodes in GridView
I have an XML form in the format
<DDCRData>
<role>
<name>CDH</name>
<adGroup>roles</adGroup>
<active>True</active>
...
0
votes
1answer
337 views
databind a gridview that is inside a user control
I have a super simple gridview setup in a user control like this:
<asp:GridView ID="gvTestUC" runat="server" AutoGenerateColumns="false">
<Columns>
...





