ASPxGridView is usually in reference to the ASPxGridView provided by DevExpress. Its one of the prime products offered by DevExpress Inc.in support of ASP.Net WebForms.

learn more… | top users | synonyms

0
votes
2answers
22 views

Selecting a row in gridview then passing the selected row to another page

I am writing a web application in ASP.NET using C# with SQL Server. Basically I want to be able to select a specific row in a GridView and pass the primary key from that row to another page which ...
0
votes
1answer
18 views

How to remove caption of field in DevExpress ASPxGridView EditForm

I am developing a custom column for DevExpress ASPxGridView. At EditForm, I replaced the default edit textbox with a custom control that contains some other controls (label-textbox pairs). ...
0
votes
2answers
20 views

How to convert Gridview row to int OR How to promote the row down and above

I'm trying to make a list. When I select a row in Gridview, red line with the lines above and below THIS THE SIDE OF THE ASP protected void rowCommand(object sender, GridViewCommandEventArgs e) { ...
0
votes
0answers
29 views

Unable to export to Excel spreadsheet (ThreadAbortException)

I have data bound to an ASPxGridView via a DataTable, which displays the data perfectly fine. However, when I try to export the data to an Excel spreadsheet, I get the following exception. Unable ...
0
votes
0answers
95 views

Issue in exporting asp.net gridview data to excel or word

I have a master page and a child page which is created using master page. I have a asp.net grid view data in childpage.aspx When i export the gridview contents to Excel/ pdf / Word , i am getting div ...
0
votes
1answer
39 views

Field/Property not found on data source

I am updating an older program which collects information from different tables (using stored procedures) and displays them on an ASPxGridView. I've added three more columns and tried to bind them to ...
0
votes
0answers
25 views

checkbox in DevExpress ASPxGridView

I have a checkbox checked problem in ASPxGridView. When i checked checkbox and click button, everytime checkbox.checked return false. my code; protected void btnConfirm_Click(object ...
0
votes
0answers
31 views

Disable ASPxGridView Column Validation in PageLoad

I have a ascx page that I'm using ASPxGridView. I'm also using this gridview to add/update records to my DB. For each column on gridview, while I'm adding/updating a record I'm using Required Field ...
0
votes
2answers
51 views

checkbox inside gridview item template is generating a span

I have the following grid: <asp:GridView ID="myGrid" AutoGenerateColumns="true" runat="server" CellPadding="4" ForeColor="#333333" GridLines="None" ...
0
votes
0answers
28 views

dropdownlist preserve selected item in grideview

i have a grid view which has data tabe inside there is a column with drop down list i need to maintain the selected value of dropdown list when adding a row to the table here is the code aspx: ...
0
votes
1answer
36 views

How to display result from selection of two drop down list?

I got two drop down list, and I want to display result on grid. For example when I choose 'KOR' from drop1 and 'Email Error' from drop2, it will display the result(from Views inside database) that I ...
1
vote
0answers
25 views

ASPxGridView coloring

Is there a way to change all background colors of this control. Styles property has like 50 parts that can be changed, and although I think I changed all of them, I still have few parts with default ...
0
votes
0answers
85 views

Issue with CellEditorInitialize in ASPxGridview

Hi all I am using ASPXGridview and I am assigning the combo box values in CellEditorInitialize as follows protected void ASPxGrid_CellEditorInitialize(object sender, ...
0
votes
0answers
92 views

Cannot filter DevExpress AspxGridView special columns with FilterExpression

I have a simple DevExpress AspxGridView on my page with different columns: GridViewDataColumn GridViewDataHyperLinkColumn (or any other special column in fact) ... If I set the ...
0
votes
0answers
74 views

How to created an event of a control created during GridView RowDataBound?

I programmatically created ImageButton on RowDataBound Event. I want to make ModalPopup appear when the ImageButton is clicked. How can i create an ImageButton_Click Event for the ImageButton? ...
0
votes
0answers
80 views

Assign textbox text outside aspxgridview on HtmlRowPrepared event

Hi all I have written a code to display the textbox text which is outside aspxgridview by performing some operation under HtmlRowPrepared event of aspxgridview. This is my sample code double ...
0
votes
0answers
60 views

Devexpress aspxgridview with wcf datasource and paging on the database server.

I have an AspxGridView. I use WCF services to retrieve data from the database server. I currently use ObjectDataSource and the bad thing about is that it retrieves the whole result set even though ...
3
votes
1answer
269 views

C# GridView Design

At the moment I am programming a Social Media website in aspx.net. I am using a MySQL (phpmyadmin) Database where I store my data, en read my data from. For example: When a user posts something on ...
0
votes
0answers
70 views

DevExpress AspxGridView Display Message while Paging

I have a DevExpress GridView and I am using Paging for that GridView. Now,I want to Display a Message like "Previous Page's Data will be lost" while Paging. I want to Know,Which Event Fires,When we do ...
1
vote
1answer
49 views

No value given for one or more required parameters. when updating entry

I am getting the following error message when trying to update customer details. I am using detailsview. Exception Details: System.Data.OleDb.OleDbException: No value given for one or more ...
0
votes
0answers
39 views

Using LinqToSql to bind a table along with an unspecified amount of related key/value-pairs to an ASPxGridView

I'm using an ASPxGridView to display information about a single article. (The displayed article is chosen by clicking on the article in another aspxGridView) This is the relevant tables in the ...
0
votes
1answer
80 views

Load iFrame on page callback

I'm looking for a way to load a PDF file onto an iFrame whenever a callback is triggered by GridViewCommandColumnCustomButton within an ASPxGridView. The reason for it is that I need a different PDF ...
0
votes
1answer
252 views

ASPxGridView GetSelectedFieldValues not retrieving values

I'm trying to make such a simple thing as getting one value from the selected row in an ASPxGridView with the GetSelectedFieldValues method with a button. I've followed the steps from DevExpress ...
0
votes
1answer
141 views

ASPxGridView - when I submit changes I always see them from one edit before

I've got a problem with GridView on my WebForms page. I hope maybe you can help me. I've got a Grid binded by LinqDataSource through Entity Framework to SQL Server view. View basically aggregates ...
0
votes
0answers
53 views

Why the filter expression isn't applied?

I am using ASPxGridView, grid, and I use these kind of ASPxGridView on 3 pages. When I set grid.FilterExpression = "[Name] = 'name1'"; on one page the aspgrid is sort and it work fine. On the other 2 ...
0
votes
1answer
95 views

Is this the best/correct way to use the DevExpress ASPxGridView to edit a List<T>?

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 ...
0
votes
0answers
255 views

Login form with validation and call code behind from javascript using Devexpress

Now i have situation that i want create a login form with validation. When user leave empty string and click submit, validation popup will be showed. Otherwise, if user enter wrong username or ...
0
votes
0answers
152 views

Select the row when you right click on a DevExpress MVCxGridView/ ASPXGridView?

Working in ASP.NET MVC 3, using Devexpress controls, I have a MVCxGridView that is bound to a PopupMenu contorl, using DevExpress 12.2 Suite. The problem I have is that when a user right clicks on a ...
0
votes
0answers
36 views

how to perform selected change of gridviewdatacombobox column of dev express gridview?

I have a aspxgridview having country and state columns.I want to get the list of states in state column on country change without using templates.
0
votes
1answer
168 views

aspxgridview header filter multi select from column content

I'm using aspxgridview in my project and i have a language column as seen above. Each row is for a product. First product has 2 languages, second has 4 and 3rd has 3 languages... In product table i ...
1
vote
3answers
489 views

How to arrange datatable columns inside gridview?

My gridview is having a template field bound from the aspx designer. I'm binding a data table to it. Now my template field, which is having few action buttons, is coming as the first column. Is there ...
0
votes
1answer
199 views

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 ...
0
votes
2answers
348 views

How to populate ASPxComboBox?

I have Editable ASPxGridView and confused how to populate the ASPxComboBox init. Consider The following scenario in which we have a list of cars with colors. After Edit is clicked. I want to ...
0
votes
0answers
118 views

DevExpress ASPxGridView's CSS images relative paths

If the intranet website is hosted under a folder on the web server, the relative paths in the *.axd files are not set correctly, and the paths are generating 404 errors in the application. For ...
0
votes
0answers
267 views

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 ...
0
votes
1answer
260 views

Devexpress ASPxGridViewExporter will not export leading zeros

Is there a property I need to set for it to export this number with leading zeroes to excel? or Perhaps a setting on the grid itself? Something to force it to be treated as a string instead of ...
1
vote
1answer
143 views

Alternating row style in Gridview

Is it possible to apply alternating row style in gridview column level . I have rowspan for gridview column if the values are equal . I dont alternating row style to be applied for first 2 columns ...
1
vote
1answer
627 views

Fill GridViewDataComboBoxColumn using value of the aspxgridview

I'm a novice C# programmer (about 6 months) and I'm using DevExpress components in my current work with ASP.NET. I have no idea about fill a combox that is inside my grid. The problem is basically ...
0
votes
1answer
158 views

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 ...
0
votes
1answer
596 views

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 ...
0
votes
1answer
919 views

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, ...
0
votes
0answers
237 views

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 ...
-1
votes
3answers
1k views

ASPxGridview get row data from server-side

I'm working on a DevExpress Gridview and I want to get the data of the selected row (only one row can be selected at the time). I'm working on the Server-Side and I'm using FocusedRowChanged function. ...
0
votes
1answer
359 views

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") { ...
0
votes
1answer
148 views

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 ...
1
vote
2answers
417 views

Access row data via client side API of GridView

I have a DevExpress GridView in my Asp.NET MVC 4 application and want to access row data on the client side via JavaScript. At the moment I am doing the following: Specify which values should be ...
0
votes
1answer
842 views

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 ...
0
votes
1answer
348 views

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 ...
0
votes
1answer
129 views

Change the Next button of Gridview not fire pageindexchanging

I have a gridview which has paging property. From code behind i am changing the Next text with an image with the following code. the image is successfulu loaded instead of next text but when i am ...
0
votes
0answers
378 views

ASPxGridView With ASPxCheckBox in DataItemTemplate

I'm very new on ASP.Net and i have a problem. I'm trying to make a matrix grid on a ASP.NET form. I'm using E.F 4.0 and i have a table as Form template to generate the matrix grid. The ASPxGridView ...

1 2 3 4 5 7