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
2
votes
2 answers
How can edit the gridview cell value on click of the gridview cell, in ASP.NET?
In my website, I have a gridview which has datasource dynamically bound from database table.
Now I want that when a user clicks in a cell of the gridview it becomes editable and he can edit the cell values and update the database accordingly.
I…

Parth Bhatt
- 19,381
- 28
- 133
- 216
2
votes
1 answer
Conditional Display of Custom Button on DevExpress ASPxGridView in VB.NET
I have an ASPxGridView control that needs a button that is visible on a conditional basis. I have searched and read several articles but have not found a fix for my particular situation. The button is called btnAllocatePlan and it should only be…

Mike
- 417
- 7
- 28
2
votes
2 answers
How to add currency format to Data Row in AspxPivotGrid by Programmatically?
I want to add currency format to Data Row in AspxPivotGrid table.
You can see the below picture,how it is displaying now. So I just want to display currency format to 3 fields (ExtendedPrice,ExtendedCost,Profit)
This is my c# code:
if (i == 8 || i…
user7456202
2
votes
3 answers
ASPxGridView allow sorting and DataItemTemplate with ASPxCheckBox
I have an ASPxGridView that contains a column with a DataItemTemplate that contains an ASPxCheckBox. I then have a button outside of the grid that performs some actions based on whether the checkbox is checked.
The grid is defined…

anothershrubery
- 20,461
- 14
- 53
- 98
2
votes
1 answer
Use HTML Table instead of Gridview
I want to use HTML table instead of gridview to fecth the data. Why HTML Table? Because I'll be using the output for email sending so I prefer HTML Table instead of gridview. Also I don't want to use object as the system will run on the server only.…

x'tian
- 734
- 2
- 14
- 40
2
votes
1 answer
why ZlibException throws when export data to files using DevExpress?
I have some sql tables with dynamic columns which i want to export them to xls or csv file using DevExpress ASPxGridViewExporter and ASPxGridView when user clicks Get Data button in my Report.aspx page.
Tables are made correctly with true data
Page…

Rahmat Waisi
- 1,293
- 1
- 15
- 36
2
votes
1 answer
ASPxGridView - How to make some field editors read-only when editing a row and allow their editing when adding a new row
I followed it here, https://www.devexpress.com/Support/Center/Example/Details/E5116 and applied given example in ASP.NET MVC. The following is my gridview settings sample partial code:
settings.SettingsEditing.Mode =…

Ravi Anand
- 5,106
- 9
- 47
- 77
2
votes
1 answer
ASPX - sort XML by 3 GridViews
OK! this one has got me in a bind.
I have an XML File with multiple entries, i want to put it into certain Gridviews by the inner text of 1 element. Here is my Code;

Bic Pen
- 73
- 7
2
votes
1 answer
Why is my value rounded (up or down)
In my entity framework model (from oracle) I have a table that contains the following Column
Now. I use an asp.net webforms datagrid to view the data. At one stage the value in this column is 635838861561284513. I do (in theory) send this value…

Eminem
- 7,206
- 15
- 53
- 95
2
votes
0 answers
Visual Studio freezes when using ASP.NET/aspx
I have a big problem when making a ASP.NET/aspx project in Visual Studio Ultimate.
I have just started using website projects this week, so I don't have a lot of cache lying around.
It's VERY slow whenever I try to do ANYTHING.
Sometimes I can't…

Marie Louise Veigert
- 21
- 1
2
votes
4 answers
How to get selected row of detail grid in Master-Detail GridView?
I'm having a problem on getting the selected rows values of a detail grid. I have master-detail grid in a popup control and it works fine. I also enabled the enable selection to have checkboxes but when i try to run GetSelectedFieldValues on…

mehmetserif
- 1,185
- 7
- 26
- 48
2
votes
1 answer
Saving ASPxGridView Column Width Data
I'm maintaining a project that uses DevExpress ASP.NET v13.2 controls and within it I have an ASPxGridView that displays all sorts of information. Recently when doing some work on the layout of this grid, I noticed that the column widths are not…

Jean-Pierre Damstra
- 21
- 2
2
votes
0 answers
Get column value from GridView
I'm new to ASP.NET and I am using GridView to display data on a web page. I also added a button in Gridview called process orders.

MAK
- 1,250
- 21
- 50
2
votes
2 answers
Export ASPxGridView to xlsx using ASPxGridViewExporter with formatted text
I have an ASPxGridView having a number of columns (of type GridViewDataComboBoxColumn or GridViewDataHyperLinkColumn). In the code behind in the grid's CustomColumnDisplayText event I format the text of the cells in the following way:
protected void…

Szabolcs Antal
- 877
- 4
- 15
- 27
2
votes
1 answer
LINQ to SQL. Changing table name at runtime
I have 6 tables with the same structure but with different data. In each table are stored more o less one million of record.
For performance purpose i put only one year in each table. So i have my tables like this Document_2005, Document_2006,…

Michele Massari
- 145
- 10