0
votes
1answer
28 views

Adding rows to a Gridview that is bound to a SqlDataSource

I am trying to add a row to a gridview dynamically, while the gridview has a SqlDataSource bound to it. Is it possible to add a custom row while the data is still binding? I am coding in vb.
0
votes
0answers
25 views

Can we bind a GridView using Javascript only?

I am stuck with an issue and its troubling me a lot. I have a gridview and i am loading replacing the cell data of gridview using javascript, the issue i am facing here is i am just replacing the ...
0
votes
0answers
57 views

ASP.NET VB Binding issues with gridview after deleting and then inserting new data

I have a very confusing problem with a gridview. Basically I can insert rows without any problem but when it comes to deleting and then inserting new rows into the gridview, the gridview always shows ...
0
votes
1answer
56 views

ASP.NET Error when binding a GridView to a List of Objects?

Error Message: The data source for GridView with id 'FormProprietari' did not have any properties or attributes from which to generate columns. Ensure that your data source has content. I ...
0
votes
2answers
109 views

How to get selected value of a gridview column which in jquery?

I am having gridview bind using Jquery like this with 3 columns.. var text = "<tr><td>" + '<input id="gvChk" class="gvChk" type="checkbox">' + "</td><td>" ...
1
vote
2answers
30 views

Selecting the wrong item because of old data in GridView

I'm working in Visual Studio 2010 with C#/ASP.NET and a SQL server database. I'm trying to fix a website that will allow managers to assign employees to various tasks. The problem now is that if two ...
0
votes
1answer
74 views

DropDownList in Gridview Binding error Index 1 is either negative or above rows count

I have been trying to bind a drop-down list which is present in itemtemplate of my GridView. But it is giving me the above said error of "Index 1 is either negative or above rows count." My GridView ...
0
votes
0answers
52 views

ASP.Net : How to display correct information from gridview on detailsview when sorting?

I have a gridview that opens up a modalpopup with a detailsview when a selection is made. However, if I sort the information in the gridview, it doesn't display the correct user on the detailsview. ...
1
vote
1answer
31 views

Why I am not getting data displayed in my grid?

I am using a grid to be bounded through code whose columns are defined at design time. My code for binding the grid in the form_load() is : private void SearchForm_Load(object sender, EventArgs e) { ...
0
votes
0answers
113 views

DataBinding: 'System.Data.DataRow' does not contain a property with the name 'ROWNUM'

I am trying to delete a row in a grid view but changing the flag of a column and trying to bind the data from datatable back to the grid so the row is hidden from the grid. But while rebinding the ...
0
votes
1answer
43 views

asp.net merging result of 2 database seach in one gridview

I have 2 databases from 2 third party providers. both database have a table with a common unique identifiers (UI). I want to display table1 of DB1 filters out by the result of a list of unique ...
0
votes
0answers
44 views

Create a list that can bind to a gridview using a multicolumn list

I currently have a gridview, with multiple hidden fields in, for example: <asp:GridView runat="server" ID="gvMain"> <columns> <asp:Label runat="server" ID="lblMain" ...
0
votes
0answers
38 views

Binding to multiple UC on GridView

I have a GridView on which is a Custom Control. I can populate this custom control using ContronInCustomControl='<%# Bind("ColumnNameFromSource") %>' how ever if I wanted 2 or more of these ...
0
votes
1answer
42 views

Custom Controls on Gridview

How Do I Bind my datasource to a custom control on a GridView <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" > <Columns> <asp:TemplateField > ...
0
votes
1answer
332 views

Bind Specific Number of Columns of Dataset to Gridview

I am new to desktop application development. I have a dataset which contains the following fields: BillNo | Descirption | HSN Code | Qty | Rate and I have a grid view of type ...
0
votes
1answer
26 views

Edit selected datagried row in new form

In c# I have datagried view which is binded to customers table , I want when user double click on selected row in gried then new form which is binded to customer table (included textboxes) appear and ...
1
vote
4answers
1k views

How to make a radiobutton in gridview checked based on a column value of database

I have used gridview in my aspx page.. In that i have a five radio buttons in a single cell aligned horizontally. <asp:GridView ID="CrowdRatingGrid" runat="server" AutoGenerateColumns="false" ...
0
votes
1answer
471 views

GridView control in ASP.NET is displaying data from DataSet, but Columns collection is EMPTY, so can't access/change any properties

I'm teaching myself C# in VS2012 on 4.5 framework and loving it, but this is (continuing to) baffle me, so I apologize if I'm missing something obvious. I have done some new testing (since my original ...
0
votes
2answers
319 views

Trouble showing data on Gridview in ASP.NET

I have been having trouble displaying data on a gridview on ASP.NET. Here's my gridview <asp:GridView ID="grvConsumptions" runat="server" AllowSorting="true" AllowPaging="true" ...
1
vote
0answers
847 views

How to bind dropdownlist to a grid view in asp.net??? Here dropdownlist is not inside gridview

I am trying to bind gridview to a dropdownlist meaning when i change my dropdownlist value data must be accordingly displayed in asp.net.But whenever i build the application following errror occurs: ...
0
votes
2answers
368 views

Gridview inside a repeater ondataitembound grid view rebinding

I've a repeater which has an asp gridview as following : <asp:Repeater ID="rep" runat="server" OnItemDataBound="rep_ItemDataBound"> <ItemTemplate> <asp:GridView ...
0
votes
3answers
54 views

How can i spread Database cells over the same html row + skip to a new row every number of records?

i have a database table containing ID and Name. in Default.aspx i only show the Name cell (column) off the DB table, this is not a big deal. But GridView generates an html table like this (of course ...
0
votes
0answers
204 views

Making a GridView footer data bound like a Row data

I have an ASP.NET project created with C# that uses GridViews. The footer row contains a ratio of a total based on the column data over a set value from the data saying how many there should be. The ...
0
votes
5answers
286 views

How to temporarily store DataTable after Binding

I have two GridViews in which I populate Data on PageStart from database. When I refresh the page (on Post Back), I could not see the datatable content. so I thought of Databinding the GridView again ...
0
votes
0answers
263 views

Gridview disappearing after post back when paging is enabled

My problem is that when I click the button to load the data into the gridview, it works fine. But when I click on a new page, the gridview disappears; I then have to click the button again to see it. ...
0
votes
2answers
583 views

Hiding GridView Columns with ItemTemplate

I Have a GridView in .aspx page that I want to hide columns based on aspx.cs BindData() method. I have tried using below code but not able to hide. I am using Asp.net with C#. Below is my GridView ...
0
votes
1answer
320 views

gridview hide column after databind or before

I have dataset as you can see below.I want to hide first three columns. But the way I do below doesnt work. How can I do hide them? // Read all posts and fill gridview ...
1
vote
1answer
99 views

Formatting data in the GridView at OnRowDataBound event

I have a GridView in which the first column display redundant data in a set of three. I need to eliminate this redundancy so to that only one instance of the code is displayed. Here is what the ...
1
vote
2answers
117 views

GridView is not scrollable during dataBinding?

I'm creating a Windows 8 app (not a desktop one). My problem is the following: I have a GridView with a lot of items (received from a database). When you get to the page, where this GridView is shown, ...
0
votes
1answer
43 views

GridView Binding isn't working

Here's my MainWindow.cs: public partial class MainWindow : Window { public MainWindow() { InitializeComponent(); this.DataContext = new MultipleProjectViewModel(); } ...
0
votes
0answers
345 views

Bind Static and also Dynamic DataSource to a GridView

I'm using SQLDataSource to bind Data to GridView. Here is the Code. <asp:GridView ID="gvdata" runat="server" AutoGenerateColumns="False" DataSourceID="SqlDataSource1"> <Columns> ...
0
votes
2answers
213 views

Gridview PageIndexChanging not Firing

I am writing my own event handler for GridView in PageIndexChanging event, I didn't explicit set the DataSourceID for my GridView, here is my code: Code for GridView data binding: protected void ...
2
votes
4answers
551 views

Hide <TD> when there is nothing in gridview in ASP.NET using VB.NET

I am trying to hide a TD named ImportnatInfo in a table when the gridview is empty. This gridview has one column from a table in a database to show. When this gridview is empty I want to hide the TD. ...
0
votes
1answer
139 views

asp.net gridview master and detail data accessing from single cache enabled datasource

Is there a way to get data for both the master rows and the detail rows in a single trip to the database and caching them properly ? I want to be able to not have to connect to database when ...
0
votes
0answers
66 views

nested databind controls, webforms, and a lot of trouble

i have a requirement of creating this in asp.net webform project: --completely data bound-- this is how it looks this is a objective. ...
0
votes
3answers
438 views

Gridview binding clears unexpectedly

I have a problem with my gridview. I have searched alot for the solution but can't find any answers. I think I have located the problem to be that the gridview is no longer bound when I press the ...
0
votes
2answers
77 views

How I can edit the grid view using the server side

I am using the grid view to display a particuler columns after the search. The program force the user to choose one of the options in the dropdownlist. My server side is this string searchText = ...
0
votes
1answer
139 views

Using SQlite to bind GroupedItems Template but only getting GroupNames

This code is from the datasource class. I am fetching the list of customers from the SQLite database and storing it in ObservableCollection. Using GetGroups() I am creating the groups based on some ...
0
votes
0answers
378 views

bind value to gridview control particular column in vb.net

Using vb.net.textbox contain some value. i want to bind this textbox value to gridview control particular column .How to do this? am new to vb.net gridview designning code ------------------------ ...
1
vote
2answers
201 views

Gridview not working on PageIndexChanging

I'm using gridview without datasource. On PageIndexChanging the page is blank. My backend code is: protected void gridView_PageIndexChanging(object sender, GridViewPageEventArgs e) { ...
0
votes
2answers
366 views

Is it impossible to declaratively data bind the CssClass property on ItemStyle inside GridView?

I'm trying to programmatically switch styles on a page based on the CSS class of elements inside a GridView. I've done this in several normal (non-templated) elements' class attributes successfully, ...
0
votes
2answers
220 views

How to change the gridview width and rename the header after binding data

i try to change the gridview size and rename the header after binding the data,but i got the error "Index was out of range" because my data are more than 100px,How to solve it? ...
0
votes
2answers
382 views

What does the data source need to have for a GridView to autogenerate columns?

I created custom datatype classes that format the data the way I need it. The data I retrieve from the database comes as .NET base types, so I need to loop through the DataTable, convert each item ...
0
votes
2answers
182 views

data binding for gridview

I'm trying to bind my sql table with the grid view using the following code: string connectionString = WebConfigurationManager.ConnectionStrings["Gen_Lic"].ConnectionString; //<-- error string ...
1
vote
1answer
217 views

how to get 2 data from database in one single cell of a gridview in asp.net?

i want to show 2 data from my sql server database in a single cell of a gridview, i have tried this : <asp:GridView ID="engpodataGV1" runat="server" AutoGenerateColumns="False" Width="910px" ...
2
votes
2answers
666 views

ASP GridView Refresh after Excel Export not working

I have a Gridview inside an Ajax UpdatePanel. Inside each GV row I have a checkbox field. The idea is that the user checks the lines they want, and click a button to both update a label in that row ...
0
votes
1answer
2k views

Android - dynamic gridview (multiple columns binded rows)

I would like to implement a gridview within Android, which will basically consist of 4 columns (it will be actiing similary to a table). This will essentially be a list of items spread across 4 ...
0
votes
1answer
202 views

How to bind List<string> to RadGridView DataColumn

I'm using Telerik RadControls for Silverlight and I need to draw list of strings in a column. I have bound column's cellStyle to a style and added an instance of my ListCellPresenter control within ...
0
votes
0answers
69 views

Multiple controls within RadGridview column

I have a Telerik RadGridview (WPF) in which I want to customize a column cell as below (applicable to all cells in the column): If condition2 = true, Display 3 images (dynamic) in the cell else if ...
0
votes
0answers
207 views

Binding a GridView to an ObservableCollection in ASP.Net Web Application

I am developing my first ASP.Net Web Application, I am learning a lot, but I have a problem that I can't figure out. I have a GridView with a Collection as DataSource, if I bind the GridView to the ...

1 2 3 4 5 7