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
Is this the best/correct way to use the DevExpress ASPxGridView to edit a List?
Would someone who knows DeveExpess ASPxGridView take a look at this.
Is this the best/correct way to use the grid to edit a List?
I have an object of Type ItemModel and the code below is used to allow an ASP.NET Web Site user to do CRUD operations…

Fitzroy
- 3
- 4
0
votes
1 answer
Read client data instead of server with ASPxGridView.GetSelectedFieldValues
I have the following code
objGrid.GetSelectedFieldValues("IsEnabled", function (values)
{
if (values[0])
{
$('#btnEnable').hide();
$('#btnDisable').show();
}
else
{
$('#btnEnable').show();
…

Dreamwalker
- 3,032
- 4
- 30
- 60
0
votes
0 answers
ASPxGridview and Controls Collection
Lets say I have an ASPxGridView that uses several different types of templates and each of those templates have an ASPxButton on it. I also have some buttons that are not on the ASPxGridView. If I recursively loop through all controls in the pages…

Soenhay
- 3,958
- 5
- 34
- 60
0
votes
1 answer
Data not loading in master textbox after Devexpress gridview events
Hi i am new to devexpress gridview. i have a textbox(TotalDebit) outside grid and i have a devex gridview in which i am inserting,updating data. In my event handler when i insert new row in gridview i want to calculate the total debit and show in…

Muhammad Saad Roshan
- 17
- 2
- 9
0
votes
1 answer
DevExpress: ASPxGridView cell editing on client side events
I want to edit particular column in ASPxGridView using client side event.
Just i getting index value like that:
function onRowclick(s,e)
{
e.VisibleIndex;
...
}
I am not sure how to open grid column in edit mode.

TripleG
- 13
- 1
- 4
0
votes
2 answers
How to get Between Date filtering into the Filter Row
I'm trying to use a DevExpress ASPxGridView to display some data. I need to allow my users to filter on a particular column, and I'd like to let them filter between two dates.
I know this is possible with the use of the FilterBar, but I'd like to…

Irfy
- 2,469
- 4
- 25
- 31
0
votes
2 answers
How to handle OnRowClick event of ASPxGridView in code behind?
I am using ASP.Net with VB to display records in a grid view.
In a normal ASP GridView, I can simply handle SelectedIndexChanged Event from code behind like this:
Sub mySub(ByVal sender as Object, ByVal e As EventArgs)
Handles…

Ahmad
- 12,336
- 6
- 48
- 88
0
votes
0 answers
Add command button events at runtime
I created a gridview at runtime but I did not create command button events. My question is sosimilar to devexpress row deleting event, but I did not worked it :/ Here is my code:
In my Page_Load Function:
ASPxGridView grid = new ASPxGridView();
…

user983924
- 395
- 2
- 10
- 23
0
votes
1 answer
Dynamic change of an editor type for ASPxGridView
I have an ASPxGridView from DevExpress fed with data from ObjectDataSource. My data row objects expose properties such ParameterName, ParameterType and ParameterValue.
//Properties, constructor and private fields code omitted for clarity
public…

smok1
- 2,940
- 26
- 35
0
votes
1 answer
disable a cell based on another cell value in a row in aspxgridview
My Code:
protected void ASPxGridView1_HtmlDataCellPrepared(object sender, DevExpress.Web.ASPxGridView.ASPxGridViewTableDataCellEventArgs e)
{
if (e.DataColumn.FieldName == "col7name")
{
// Here I can disable the same cell by the…

Earth
- 3,477
- 6
- 37
- 78
0
votes
3 answers
Only Allow Certain Users to Edit ASPxGridView
I've got an ASPxGridView that I would like to allow some users to have read and others users write access to. Ideally this would be based on Active Directory groups.
How can I do this?

macleojw
- 4,113
- 10
- 43
- 63
0
votes
1 answer
How to replace controls of edit an item of ASPxGridView with another grid with a different source table?
Instead of controls generated automatically when I press Edit I have to replace them with another grid that will have a different source table.
Is that possible?
The reason for this is that when I press Edit for an item, I need to have extra columns…

Alexa Adrian
- 1,778
- 2
- 23
- 38
0
votes
1 answer
ASPxGridView EditForm Customization
I have Created a GridView, and i want to customize the edit form. I need to hide/delete or arrange the items on the edit from. For example to move a text box from the the top left side to the bottom right side, or delete from the edit form.
It is…

V.B
- 65
- 1
- 2
- 12
0
votes
1 answer
ASPxGridView1.Selection is always = 0 and ASPxGridView1.GetSelectedFieldValues doesnt work
simply I'm trying to get selected rows from devexpress gridview, but it never works for me, I have tried client side and custom call back, and tried server side, but it didnt work, spend 10 hours searching and tried every solution that I got but…

Yasser
- 117
- 1
- 2
- 8
0
votes
2 answers
AspxComboBox in AspxGridView
I've been struggling to find a simple example or guidance to my problem. Basically, I have one dataset. This table has three columns,
Document Name (string)
Document Owner (string)
Permission (int)
I want to bind this DataTable to a AspxGridView.…

AshesToAshes
- 937
- 3
- 14
- 31