0
votes
2answers
30 views

how to get item template value on asp datagridview

i got datagridview like this : <asp:GridView ID="gvData" runat="server" AllowPaging="True" AutoGenerateColumns="False" CellPadding="4" DataKeyNames="InquiryId" ...
0
votes
1answer
20 views

Append Datatable in VB

I am developing windows app in vb where i want to append values in datatable withen a while loop as given below. If hscode <> "" Then da1 = New OleDbDataAdapter("select * from [" ...
0
votes
1answer
35 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
27 views

Edit template not displaying

I have a gridview that has a item template and an edit template. The problem is, whenever I click the edit button, the edit templates don't show up. Here is my page code: <asp:GridView ...
0
votes
1answer
29 views

Gridview inside another Gridview using item template

I have a problem using a rowcommand of gridview that is in another gridview the problem is that when I add an event to the second gridview that is in an item template of another gridview the event ...
0
votes
0answers
29 views

How to display selected records (unbounded) in the top in grid view?

I have grid view In win form with almost 50000 records. Scenario: User can select any part numbers by clicking on any check boxes at run-time between row # 1 and row # 50000. Issue: How to display ...
0
votes
3answers
116 views

VB.net Mouse click single cell of gridview, change backcolor and output cell position (col and row) to textbox

I have a gridview in a webform and I would like to know how I can select a single cell anywhere in that gridview using a mouse click. The selected cell's background colour then changes to a specific ...
0
votes
1answer
43 views

How to Save excel file in vb.net

Previously , I was trying to export gridview value into excel. but with the code given below i am able to export data into excel. but still not able to Save Automatically that excel file into a fixed ...
0
votes
1answer
26 views

Refreshing an ASP.Net GridView if an ASP.Net button and the GridView are in different asp:Content blocks

We would like to refresh an ASP.Net GridView if an ASP.Net button and a GridView are in different asp:Content blocks In a working ASP.Net web form we had a DataSource, GridView, DetailsView, various ...
0
votes
0answers
68 views

How to fix "'ddlAssignedTo' has a SelectedValue which is invalid because it does not exist in the list of items

I load the gridview and the gridview has an edit and delete buttons. I click on Edit and I get, "ddlAssignedTo' has a SelectedValue which is invalid because it does not exist in the list of items. ...
0
votes
2answers
30 views

GridView paging not working as expected

I'm starting on vb.net and I have to make a GridView that shows registers from an sql query with paging enabled on the GridView. But the paging only works for the first registers in page 1, when I ...
0
votes
0answers
9 views

jeditable returns a whole page markup inseat of the value

I am using jeditable on a dynamically generated gridview and having problems with it, I am not that familiar with this plugin yet. jediable: $(document).ready(function () { $('.edit').each( ...
3
votes
1answer
75 views

Can you please tell me why I am getting `The GridView 'GridView1' fired event RowUpdating which wasn't handled.` error message

I have been able to work through the initial problem of not being able to insert records consistently but a new error message crops up. Now, I am getting The GridView 'GridView1' fired event ...
0
votes
1answer
45 views

Get Data from MS Excel in asp.net

I can retrieve the data from excel to GridView. Below is the code : If Extension = "xls" Then connString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & FileUploadPath & sender.text ...
1
vote
1answer
48 views

Hide a gridview header column without losing position of other header columns vb.net

I would like to hide the header for two columns on a gridview. However I would like the other column headers to remain in their original position not move across to where the hidden columns would have ...
0
votes
1answer
55 views

Set backcolor for specific cell in gridview in VB.net Visual Studio

I have a fixed size grid and would like to specify the backcolor of specific cells within the grid, so not whole rows and not whole columns just a single cell or maybe a range of cells. Please see the ...
0
votes
1answer
81 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
55 views

VB.Net Visual Studio - Static column with unique values for each row on GridView

I have a created a databound gridview which will always remain the same size and what I would like to do is add a column onto the left of the gridview and assign static values to each row of the ...
0
votes
0answers
45 views

TryCast(GridView_Name.DataSource, DataTable) Returning Nothing

I am building a Web Application. For which I have a GridView dynamically binded using a datatable from database. This GridView supports header column sorting. I want to get this new sorted data to a ...
0
votes
0answers
39 views

Button doesn't fire (VB.NET)

Why does my button doesn't fire after loading 8,000 records in my gridview? Please help me to this problem. Is this beacuse of large size of my html page after loading thousands of records?
1
vote
1answer
92 views

populate array list from For loop using entire database table row

I am trying check my Events table for DateTime overlaps in each of the events. I have written code that will allow a user to input a Module_code. This Module_code is checked against the entries in ...
0
votes
4answers
70 views

assign variable to label inside a gridview

I have a variable "mininum" that needs to be assigned to a label "minLabel", his label is inside a template view which is inside a gridview. When try minLabel.text= mininum it I get the error that the ...
0
votes
1answer
128 views

How to bind dropdownlist in grid view using webservices?

I have 4 dropdown list in my grid view. I want them to be loaded using webservices. Is it possible to do so? How to accomplish this?
0
votes
0answers
20 views

Representing time clashes in gridview

I need to develop timetables for a project I am working on. I have been tinkering with things like DayPilot Lite but could not get them to work so I have decided to just produce gridviews of my ...
1
vote
2answers
80 views

how to use GridViewUpdateEventArgs inside a property method VB.NET

I wanna show drop down list on the footer of my GridView. aspx code: <FooterTemplate> <asp:DropDownList ID="ddSrc" ...
0
votes
2answers
48 views

vb.net dataview populated by sql

I'm trying to load the data from an sql query into a datatable which will load a GridView. See code below... Dim dv As New System.Data.DataView Dim dt As New System.Data.DataTable dv = ...
0
votes
1answer
32 views

GridView and Hyperlink

I am new to VB and programming in general, however, I am currently trying to develop a simple application where you can add and save daily records to a database. One of the columns in the database ...
0
votes
0answers
100 views

ASP.NET Downloading files from an SQL table

I'm trying to download a file from an SQL Server table. I am using a GridView. Whenever I try to download a file, I get a corrupted file. I am using ASP.NET and VB.NET with SQL Server 2012 Express. ...
0
votes
2answers
57 views

For Each GridviewRow Loop, with where clause?

Is there any easier way of using the code: For Each gvRow As GridViewRow In gvGridviewExample.Rows If gvRow.RowType = DataControlRowType.DataRow Then 'Do Something End If Next Such ...
0
votes
1answer
116 views

unable to pass gridview row number to javascript function

I am trying to pass row number of the gridview to javascript function when checkbox is clicked. Here is checkbox code inside gridview <asp:CheckBox ID="chkGroup" runat="server" ...
0
votes
1answer
74 views

asp:Gridview getting focused column/lifecycle issue

I am working on a proof of concept (POC) GridView for a much more complex set of functionality where any given cell is filled with a textbox whether it is in normal or edit mode. When any given ...
0
votes
1answer
195 views

GridView footer not displaying data

I'm using ASP.NET (VB.NET) with SQL-Server-2012. I'm using a GridView to display data in table called project_items. I added a FooterTemplate so that I could display the total amount of all the ...
0
votes
5answers
441 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" ...
0
votes
1answer
29 views

Edit datagrid without clicking

I have a UltraGridWinGrid and I need to naviguate through it without using the mouse. I can get to the grid with Tabs. I can give focus to any rows with Tabs and Arrow Keys. Once I highlight a row, ...
0
votes
0answers
40 views

Gridview update not working properly

Hi I have read several posts about Gridview and people are pointing to differenct ways of retrieving newly entered values from a Gridview in Row_Updating event. I am a complete newbie to ...
0
votes
3answers
57 views

How to hide a column from gridview base on a Sql result on it?

I'm using VB .NET and I have a GridView which have 4 columns (Delete, Download, Nome, and PK). Columns "Name" and "ID" are a result from my Sql Command, and I want to hide the column "PK" to users. ...
0
votes
0answers
129 views

Downloading files from SQL-Server-2012 through GridView

How is it possible to download files from SQL-Server-2012 by adding a button to a GridView in ASP.NET/VB.NET? I know you can auto-create DELETE and SELECT fields, but is there an alternative that ...
0
votes
1answer
133 views

Deleting is not supported by data source 'SqlDataSource1' unless DeleteCommand is specified

I have an ASP button link in GridView1 that should delete an item from a db table on click, and I am getting this error message: Deleting is not supported by data source 'SqlDataSource1' unless ...
0
votes
2answers
74 views

gridview display tru values asp.net vb

I'm trying to pull university module data into a gridview, but only if the module is compulsory. Anyone know how to do this? Here is the ASPX code with the SQL datasources: <asp:GridView ...
1
vote
1answer
96 views

VB.Net Grid View

I am working on VB.Net project in which I need to convert VB6.0 code to VB.Net. While converting I got to know that in VB6 in a GridView there is an event called BeforeUpdate which is not available in ...
0
votes
3answers
131 views

Downloading a file from SQL Server - ArgumentOutOfRangeException

I'm trying to download files from an SQL Server 2012 database using GridView. I am getting an ArgumentOutOfRangeException giving me this error: Index was out of range. Must be non-negative and less ...
0
votes
0answers
47 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
2answers
246 views

VB.Net hide specific gridview columns based on dropdown text selection

Using Visual Studio and VB.net I have a gridview populated with data and based on the text values in a dropdown I would like to hide certain columns and unhide as appropriate. The dropdown is ...
0
votes
0answers
50 views

set value when update command

I am using asp.net with devexpress I am wanted to insert and Update with sql parameter <asp:SqlDataSource ID="SqlDataCity" runat="server" ConflictDetection="CompareAllValues" ...
1
vote
1answer
125 views

VB.Net Calculating values using GridView bound fields and outputting value to another field

Within a GridView is it possible, using the output of two or more asp BoundFields, to calculate a value and then output this in it's own field? eg calculating % from two bound fields: Amount ...
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 ...
1
vote
2answers
105 views

VB.NET How do I apply decimal formatting to a specific column in a Gridview?

How do I apply decimal formatting to a specific column in a Gridview? eg 83.7837837837838 is being populated from SQL, how do I convert it to 83.8. I only want to apply this to one column as other ...
0
votes
0answers
85 views

Gridview and excel format

i have a program (written in VB.NET) that selects info from an excel spreadsheet and then writes in to a gridview, once its dont what it needs to do it then re writes the correct information to an ...
0
votes
3answers
51 views

Gridview data not refreshing

I have a gridview which has a List (Of MyObject) as its datasource. gv.DataSource = MyListObject gv.Databind() Under a templatefield i have a button configured to delete a record from MyListObject ...
4
votes
5answers
176 views

Editable gridview is not working

I have an editable gridview which the user can edit each row just by pressing linkbutton. I am getting an error and it stops my work. please help me. HTML <asp:GridView ID="gvList" runat="server" ...

1 2 3 4 5 13