ASPxGridView is usually in reference to the ASPxGridView provided by DevExpress. It's one of the prime products offered by DevExpress Inc. in support of ASP.Net WebForms.
Questions tagged [aspxgridview]
779 questions
0
votes
3 answers
How to dynamically fill controls on a selection changed in a aspxgridview
I have a AspxGridView which is linked to a DataSource. Below the GridView there are some textBoxes which should be populated on a selection changed event. How can I achieve that? Maybe with a callback panel and the clientSide SelectionChanged to…

Andrey
- 479
- 2
- 10
- 20
0
votes
1 answer
devexpress aspxdataview column issues
I'm new to asp.net devexpress tools. I want to identify column value of ASPxGridView component.
How can i do this.Please help me to solve this problem
(can we do as below/or similar way)
ASPxGridView.column[1]

TRS
- 490
- 2
- 11
- 29
0
votes
3 answers
ASP.NET do not show eval in page - ASPxGridView
I have hopefully a simple question. I have a ASPxGridView that I need to pull data from and pass it to a function. A simple way I figured to do this is to use a session variable.
But when I do the Eval binding it shows the characters on screen…

Rob
- 2,363
- 7
- 36
- 54
0
votes
1 answer
aspxgridview 2 context menus
Can we have 2 context menus for devexpress aspxgridview, one context menu for rows and one for columns headers?
If yes, then how can we do it?

sanky
- 3
- 1
0
votes
3 answers
ASPxGridView GetSelectedFieldValues not working
I want to select a row and do something with it's Id column, however it isn't working and I'm running into the error mentioned at the end.
Heres what I got -
The ASPxGridView snippet -

neuDev33
- 1,573
- 7
- 41
- 54
0
votes
2 answers
Displaying a context menu for Column Headers of an AspxGridView
I read about the popup menu in the documentation here. I'm not clear as to whether this menu is already provided and we just have to enable a particular property to make it available? Or is it just an example of a popup menu and needs to be created?…

neuDev33
- 1,573
- 7
- 41
- 54
0
votes
2 answers
Devexpress ASPxGridView New Row Disabled
I have code like this with devexpress ASPxGridView. Everything goes well, but when I try to add new row, new row's textbox is disabled...
I have KeyFieldName set.
void BindGrid()
{
var AnnObj = SearchBarBanners.Select(i => new
…

levi
- 3,451
- 6
- 50
- 86
0
votes
1 answer
How to customize aspxgridviewpager?
Currently i wish to use wcf get the data and bind it into aspxgridview but the DataServiceConfiguration had set the paged query----> config.SetEntitySetPageSize("", 10);
so every time i will only get maximum 10 records only. isn't possible to…

DevProve
- 190
- 1
- 16
0
votes
1 answer
how to add custom column using loop in aspxgridview (VB)
First question how to add custom column to aspxgridview column using looping to get name and value of column.
here is my code behind :
Protected Sub gridSubmission_Init(ByVal sender As Object, ByVal e As System.EventArgs) Handles…

tyo
- 67
- 1
- 2
- 13
-1
votes
1 answer
ASPxGridView sorting without Headers
I am using devexpress gridview i want sorting in devexpress there is no header in gridview
Settings-ShowColumnHeaders="false" based upon the dropdown selected i need sorting.
i want sorting in C#.
switch (ddlSortField.SelectedItem.Value.Trim())…

Phanindra Kumar
- 171
- 3
- 16
-1
votes
2 answers
How to take a table row's column to form input field
I have a table of data. First column of table is button; on the button there is a onclick event. One other column is firmName I want to set txtFirm name field of form section the selected row's firm Name column.
My javaScript is as follows, but it…

Haluk Öztürk
- 31
- 8
-1
votes
1 answer
How can I manipulate a gridview from a static method (ASPX)?
I have this error: "Object reference not defined for an instance of an object."
What I've tried was to create an instance of the class and, through it, try to access the gridview passing a DataSet to make the Bind.
The class is consumed via AJAX…

Joshua
- 5
- 4
-1
votes
1 answer
How to Enable/Disable ItemTemplate dynamically in ASP.Net Gridview
I want to disable gridview ItemTemplate column if that column is not the part of the source datatable.
Can anyone please guide me how to do that ? Following is my code where i may or may not have the column present in my datasource.
…

ARC
- 1,061
- 14
- 33
-1
votes
1 answer
Value of type 'Control' cannot be converted to 'CheckBox' in vb.net
I am trying to use checkbox for multiple select in GridView to delete records.
Here is my Code :-
Protected Sub btnDelete_Click(sender As Object, e As EventArgs)
Try
'Loop through all the rows in gridview
For Each grv…

Akshay Makwana
- 1
- 2
-1
votes
1 answer
Datasource gridview c#
i'm new on .net, and i'm trying to make a gridview table that take data from a database (i bind data with tag) and for a specific integer value from this table column i want to display in gridview a string that is…

Black
- 3
- 5