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
1 answer
ASPxGridView not works in my ASP.NET MVC solution
I'm using ASPxGridView and updating with data from DataTable which, works fine.
But when I'm trying to use edit, update, delete, paging, sorting functions I get in trouble.
The buttons are displayed but the function doesn't work when I click…

V.B
- 65
- 1
- 2
- 12
0
votes
1 answer
Binding controls inside ASPxGridview?
I have an ASPxGridview, inside there is a DataItemTepmplete, it contains a ASPxRadioButtonList and a three ASPxCheckBoxList. on the SelectedIndexChange of the radiobuttonlist i bind a single checkboxlist based on some values. The first time it gives…

ykh
- 1,775
- 3
- 31
- 57
0
votes
1 answer
ASPxGridView.GetChildDataRow is always null
I'm dynamically binding my grid with a result of linq expression on PageLoad and at HtmlRowPrepared event i'm trying to reach a DataRow with
for (int i = 0; i < grid.GetChildRowCount(visibleGrIndex); i++)
{
var row =…

DortGen
- 402
- 2
- 8
- 22
0
votes
1 answer
ASPxGridViewExporter does not export the data
i have dev express ASPxGridView. the column and data for the gridview will be dynamically based on the dropdown value.
If type = "procedure" Then
SqlDataSource2.SelectCommandType = SqlDataSourceCommandType.StoredProcedure
Else
…

user1126128
- 13
- 1
- 6
0
votes
1 answer
Mantain column state when column order changed in ASPxGridView
I have a DevExpress' ASPxGridView with some data.
This grid provides a functionality that allows me to change the order its the columns.
For example, I got this columns:
And I can do this with them:
(Note that I've changed the order of PC-PEC and…

gabsferreira
- 3,089
- 7
- 37
- 61
0
votes
1 answer
Validating text editor input without mask in ASPxGridView
I got an ASPxGridView with some data:
When I click on the button to the right, it enters on edit mode.
Here's what I wanna do: I want the edit textbox to allow 3 numbers(with or without decimal places). The decimal places are optional. Eg: it must…

gabsferreira
- 3,089
- 7
- 37
- 61
0
votes
2 answers
Align textbox to right in ASPxGridView when editing a cell
I have an ASPxGridView with some columns.
When I select a row and enter on edit mode, I want these 3 checkboxes(the ones in red) to be aligned to right instead of left:
I just can't find the correct property to align them(or I'm doing something…

gabsferreira
- 3,089
- 7
- 37
- 61
0
votes
1 answer
DevExpress GridView calculated column with ObjectDataSource
I have a GridView bound to an ObjectDataSource that returns some instances of MyDto.
All is working, except that in a column I want to show a value calculated in MyDto (by a readonly property) and this cause some problem during editing. The editing…

Daniele Armanasco
- 7,289
- 9
- 43
- 55
0
votes
1 answer
How do I Bind data to a nested DevExpress GridView control?
I'm new to DevExpress controls and am having issues with a master-detail gridview.
I'm using DXperience-11.2.
I can easily bind an object to the parent GridView by doing the following:
var myObject = myObject.Retrieve(id);
parentGridView.DataSource…

Kris
- 1
- 1
- 2
0
votes
1 answer
DevExpress AspxGridView GetRowValues during BeforePerformDataSelect Event
So, I have a master grid and a detail grid within that master grid.
I am grabbing the masterkey from my parent grid via the BeforePerformDataSelect and placing this value into a session variable. At that point I also need to grab a value from the…

Bill Blankenship
- 3,316
- 6
- 43
- 73
0
votes
1 answer
DevExpress details view from ASPxGridView
First off, I'm new to DevExpress. I have done a fair amount of search but have not yet found the solution for what I am trying to do which is: Open a details page from a ASPxGridView based off of the row key.
I've seen child detail examples but…

sreimer
- 4,913
- 2
- 33
- 43
0
votes
2 answers
How to remove row from gridview on row command event?
I am trying to remove row from gridview by click on ImageButton which is placed inside gridview. I am getting row index but dont know how to remove. My gridview binds from session and i dont want to rebind gridview.
Here is my code:
protected void…

user968441
- 1,471
- 9
- 22
- 48
0
votes
2 answers
AspxGridVIew : How to get visiblerowsonpage count on server side?
How can I get the count of the visible rows on the current page in the gridview on the server side?

Andrey
- 479
- 2
- 10
- 20
0
votes
2 answers
Aspxgridview : How to change the header caption width so it will fits the columns width?
I have the following problem: on runtime I am changing the name of the columns caption (the grid is linked to a table and I don't want the user to see their original name). However I have one header caption which is too long - "Total Number of…

Andrey
- 479
- 2
- 10
- 20
0
votes
2 answers
Conditional appearance of gridview rows and columns in aspx devexpress
I have a web project with devexpress component ASPxGridView. So I want to know is any apportunity to change rows appearences, and also to make conditional appearance providing some rules. I know how it works in windows application and want the same…

Marianna
- 35
- 1
- 10