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
1
vote
2 answers
Is InsertMethod broken when using ASPxGridView and ObjectDatasource with a custom EditForm?
I have an ASPxGridView, currently 11.1.7.0, which I populate with an ObjectDatasource. Everything works as expected until I use a custom editform. In another control i solved this by using the OnRowInserting attribute in the aspxgridview control,…

Eric Herlitz
- 25,354
- 27
- 113
- 157
1
vote
2 answers
How to find control nested into ASPXGridview on button click
I have a text box and button inside of my ASPXGridview, DetailRow view. So when it's expanded I need to type text and click button and on server side to get value from the textbox.
Here is my code. The problem is somewhere on postback I'm loosing…

Conny
- 11
- 1
- 3
1
vote
1 answer
CheckComboBoxColumn in DevExpress GridView
I want to get CheckedList DropDown control, which is a basic DropDown with checkbox in front of each list item.
I found this demo from their official site but I want the same effect in a ASPxGridView column.

Ken D
- 5,880
- 2
- 36
- 58
1
vote
2 answers
Truncate text in AspxGridView cells
Is there a way to truncate long text in AspxGridView cells?
I've read and implemented this solution. , http://documentation.devexpress.com/#AspNet/DevExpressWebASPxGridViewASPxGridView_CustomColumnDisplayTexttopic
...which of course works BUT only…

Eric Herlitz
- 25,354
- 27
- 113
- 157
1
vote
1 answer
Focus to next textbox in present devepxress gridview Error
I am using a Devexpress 9 gridview which is bound to a datasource.
I have 3 columns shown below and say 10 row are generated after databinding.
…

pheonix4eva
- 317
- 1
- 8
- 25
1
vote
1 answer
How can i close window and relaod in asp.net
My code look like below.
protected void btnApprove_Click(object sender, EventArgs e)
{
if (id == "Button2")
{
string sql = @"update AdjTranSeqDetails set Approver1Status = 'Rejected',finalStatus='Rejected' ,updatedtime =…

ondimand ondimand
- 37
- 7
1
vote
2 answers
Filtering ASPxGridView by a ASPxDateEdit using Control
I want to filter my gridview by choosing date and time in a dateedit. I put a button which has DataBind() controls. The query of the DataSource of the GridView has a WHERE clause. It has a Control connecting the gridview and the dateedit. When I…

Egemen Hamutçu
- 1,602
- 3
- 22
- 34
1
vote
1 answer
Binding GridViewComboBoxColumn to a datasource at Page_Load
I have a grid with a GridViewComboBoxColumn column. I have a datasource that is a list of objects. I need to assign the data in Page_Load. This does not work:
protected void Page_Load() {
GridViewDataComboBoxColumn gridColumn =…

FlyingBlind
- 55
- 2
- 3
- 10
1
vote
0 answers
How to hide New Button once click in Devexpress Grid View
I am using Devex Grid View and i want to hide New Button once click.
How can i achieve this:
Can any one help me on this.
May i use jQuery For that ?
Grid View : (ASPX)

cd d
- 73
- 6
1
vote
2 answers
AspxGridView: How to Get Value of Keyfield or Spesific Column on the Click Event of DataItem Template Button?
I have an AspxGridView and a button inside of a DataItem Template of one column.
I use Button_Click event for this button and I need to get values of current row in this event when I click on this button.
AspxGridView's events' have "e.Keys[]" or…

kubilay
- 5,047
- 7
- 48
- 66
1
vote
1 answer
Automatically selected columns in ASPxGridView
I have 3 nested ASPxGridViews in my project. One is the master grid, the other ones are detail grid connected with primary/foreign key. When I click the new button in a detail grid, the columns in the form comes totally blank. But I want some…

Egemen Hamutçu
- 1,602
- 3
- 22
- 34
1
vote
2 answers
Replace ASPxGridViewTemplateReplacement with an ASPxButton
I have an ASPxGridView in which I use a custom EditForm and I'd like to replace the default UpdateButton constructed by dx:ASPxGridViewTemplateReplacement with a dx:ASPxButton instead
So, this

Eric Herlitz
- 25,354
- 27
- 113
- 157
1
vote
0 answers
Vb.net function not returning the SQL Server stored procedure result
I have a stored procedure that gets data from a table depending on the parameter being passed in:
SELECT *
FROM [dbo].Table1
WHERE Column1 = @Param1 AND Column2 = @Param2
Now, I'm calling the SQL Server stored procedure through VB.Net function…

Ann
- 61
- 7
1
vote
1 answer
ASPxGridView showing row updating errors
I am trying to display an error message in the edit section of a ASPxGridView when a user has tried to submit invalid data.
I have been looking around and have found one blog that allows me to place an error message in red once it has filed…

tony
- 309
- 7
- 23
1
vote
1 answer
ASPxGridView - Date format problem
I am getting a problem related to the date format in ASPxGridView.
I have a application in which i am using AspxGridView. I have a column of type combo box which holds the date values.
The column is as
< dxwgv:GridViewDataComboBoxColumn…

Sumit Gupta
- 569
- 1
- 11
- 33