Tagged Questions
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.
8
votes
2answers
825 views
TotalSummary of GroupSummaries in Devexpress
I have a ASPxGridview like this;
Is there any way calculate Total of GroupSummary to TotalSummary without Grouping.
GroupSummary's SummeryType="AVERAGE"
For Example;
MUS_K_ISIM ...
3
votes
1answer
2k views
set column width of a gridview in asp.net
I dragged and dropped a GridView from toolbox to Aspx page.the design code looks like this
<asp:GridView ID="gridview1" runat="server" style="text-align:center;width: 1327px;"
...
2
votes
0answers
53 views
How to aggregate a collection of items in one cell of an ASPxGridView
I'm using ASP.NET 3.5, LLBLGenPro 3.0, and DevExpress 10.1.7. I have an ASPxGridView with a LinqServerModeDataSource. Each row of the ASPxGridView corresponds to a TaskEntity from LLBLGenPro. One ...
2
votes
2answers
314 views
How to programmatically reach any AspxControl inside an AspXGridView's EditItemTemplate
Its very simple and i feel myself as an idiot :(
I newly started to using DevX Controls. Its documentation and sample projects are SUCKS!
My problem is:
I have an ASPxGridView on my aspx page:
...
2
votes
1answer
388 views
Calculate GroupSummary Value Programmaticly in DevExpress
In my code; i calculate 3 GroupSummary value with ASPxGridview;
<dx:ASPxSummaryItem FieldName="RISK_EUR" SummaryType="SUM" ShowInGroupFooterColumn="RISK_EUR" DisplayFormat="n0" />
...
2
votes
1answer
1k views
Devexpress grid - PerformCallback generates Invalid viewstate
I have a DevExpress grid that needs to be refreshed every time the value in a combobox is changed. For example, I have a combobox that sets the grid's page size. One of the requirements is that the ...
2
votes
1answer
2k views
ASPxGridView — How to simply add example values with only a DataSource property?
Hello I have a ASPxGridView. In it(for the uninformed) is only a DataSource property for telling it what data to load. My problem is that I'm simply trying to mock up an example and don't need to tie ...
1
vote
1answer
24 views
ASPxGridView and Eval(string) method
I'm trying to add column to ASPxGridView which would have link to other page:
<Columns>
...
<dxwgv:GridViewDataColumn Caption=" " VisibleIndex="10">
...
1
vote
1answer
28 views
Insert/Update/Delete is disabled for this control. message of EntityDataSource
I use ASPxGridView and EntityDataSource as its datasource. In EntityDataSource, I write CommandText, so I can not set "EnableInsert", "EnableUpdate", or "EnableDelete" to true. That's why, I ...
1
vote
2answers
86 views
How to adjust Devexpress grid width dynamically?
I have a table with 3 tds, 1st td with 1% width and a image button control(Pin image) in it. 2nd with 98% and DevExpress GridView in it and the 3rd is also 1% width and a image button control.
When ...
1
vote
1answer
122 views
ASPxGridView paging issue
I have an ASPxGridView and 2 radio buttons on my project. When I change selection of the radio button group, it changes the select command of the data source. After that, when I clicked on 2nd page, ...
1
vote
2answers
183 views
how to write trigger combobox events which is present inside aspxgridview
I am using devexpress asp:GridView in asp.net with two columns: "status" and "percentage"
The column "status" is a GridViewDataComboBoxColumn which contain two values: "progress" and "completed"
The ...
1
vote
0answers
153 views
How to do client side paging on a DevExpress GridView using a List DataSoure dynamically?
Using DevExpress v11.1 I've implemented a List based datasource bound to the gridview dynamically in code behind. Attached to this I use the client side PerformCallback to populate the grid with data ...
1
vote
1answer
48 views
Aggregating one side of a many-to-many and bind to gridview in Entity Framework
I have a many-to-many structure in place in my database / Entity Framework model.
CompanyNotice (M-M) CompanyNoticesLocations (M-M) Locations
I am trying to aggregate the Locations for one ...
1
vote
2answers
189 views
ASPxGridView: How to use standard validation within an edit form template?
I want to use ASP.NET's native validation inside my ASPxGridView's edit form template. I do not want to use DevEx's validation, but instead have standard ASP.NET validators in the edit form that ...
1
vote
2answers
66 views
Dropdown event not firing
I am having a DropdownLIst in the HeaderTemplate of the Grid
I have written some server side code on selectedINdexChanged event of this dropdown
But this event never fires.
I have also Enabled the ...
1
vote
1answer
620 views
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 ...
1
vote
1answer
176 views
focus to next textbox in present devepxress gridview Error
I am using Devexpress 9 gridview. gridview is bounded to datsource.
i have 3 colom shown below and say 10 row are generated after databinding.
<dxwgv:GridViewDataTextColumn Caption="New Rate" ...
1
vote
1answer
385 views
devexpress gridview filter solution
I have a devexpress gridview within my asp.net page which has a filter row. The built-in feature needs me to filter the from the first letters not the letters in between.
So "Sa" would find "Samuel" ...
1
vote
2answers
744 views
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 ...
1
vote
1answer
874 views
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() {
...
1
vote
1answer
336 views
Performing Delete operation in GridView control in ASP.NET when a Edit Operation takes place at the same time
Currently I am using the which is the standard way to perform Editing in a GridView control. But this allows me to perform only one operation at a time.In my application when one value of one field ...
1
vote
1answer
949 views
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 ...
1
vote
2answers
527 views
Retrieve values from custom form in ASPxGridView
I have a custom edit form made for ASPxGridView but have a big problem retrieving the values when inserting.
The template:
<Templates>
<EditForm>
Company Name: ...
1
vote
1answer
424 views
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 ...
1
vote
1answer
618 views
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 ...
1
vote
1answer
158 views
AspxGridView: Unable to sort without SortCount at the beginning
I'm using ASPxGridView with its default sorting property.
Before, it was not viewing any record after I press to any column name for sorting. But(there's a view all button) after I click to "View ...
1
vote
3answers
271 views
.Net numbers formatting
I've gone over all the numbers formatting options of .Net framework ,
and I cannot find the formatting I need.
I have a float variable for which I
need a format string ( not code ) which does the ...
1
vote
3answers
364 views
Best strategy for retrieving large dynamically-specified tables on an ASP.NET page
Looking for a bit of advice on how to optimise one of our projects. We have a ASP.NET/C# system that retrieves data from a SQL2008 data and presents it on a DevExpress ASPxGridView. The data that's ...
1
vote
1answer
127 views
devexpressgrid filteration
i was trying to implement aspxgridview with filteration.i have enabled the "Enable filteration" for the aspx gridview .
but when i try to type some letter in filter text box of the aspx grid view the ...
1
vote
1answer
2k views
ASPxGridview undefined
I have a basic 1 table grid. I have a field called Branch type. The branch type can only be Corporate or Franchise. When i click on the edit button on the ASPxgridview row , i would like to display ...
1
vote
1answer
504 views
Highlight GridView Rows only when Delete button is clicked
what i want do is to when the user click on Delete button i want to highlight the entire row and ask for confirmation before it deletes, and the below is my code and iw ant to execute two steps:
1) ...
1
vote
1answer
393 views
Configuring the ObjectDataSource for Sorting
System.NotSupportedException was unhandled by user code
Message=The data source does not support sorting.
Source=namespace
StackTrace:
at ...
1
vote
3answers
287 views
Adding objects to javascript array and later accessing them in the same .js file
Long time reader, first time poster!
I'm trying to add Div Objects to an array and trying to access them later when I call my loadViews function.
All of my alerts fire, in the proper order, but the ...
1
vote
1answer
1k views
How can i access in server side AspxGridView combobox selected value
I want to access selected value of GridViewDataComboBoxColumn in server side at GridViewUpdated event. Do you have any idea about how can it be?
Here is columns of AspxGridView
...
1
vote
1answer
977 views
ASPxGridview Dynamically Change Page Size
I'm having an issue with the aspxgridview control. I have an aspxcombobox which allows the user to set a page size. Can anyone provide a proper example to achieve this. I've had it almost working but ...
1
vote
3answers
296 views
datagridview in asp.net retrieve value
i am working on visual stdio 2008 and my database is in sql server 2005
MY table has three columns
1. SenderName
2. RecieverName
3. Message
i have displayed this table in GridView and add a ...
1
vote
2answers
1k views
AspxGridView default focused row
I have an AspxGridView in my project with AllowFocusedRow="True". Every time I load the page (with the table) the first row is focused. When I assign -1 to gvMain.FocusedRowIndex on server side ...
1
vote
1answer
1k views
DevExpress ASPxGridView callbacks and jQuery
we have a DevExpress ASPxGridView in our webapp with EnableCallbacks=true to allow client side events for this grid. As soon as we include jQuery (1.4.1 or 1.4.2) and perform eg. a filtering on the ...
1
vote
3answers
305 views
asp.net GridView isn't updating properly
I have a Gridview with these parameters:
<asp:GridView runat="server" ID="ItemGrid" CssClass="Grid"
AutoGenerateColumns="false"
AutoGenerateDeleteButton="true" ...
1
vote
1answer
979 views
DevExpress Datagrid sorting
In a DexEpress ASPxGridView I have a column that contains voltage. The original values look like 200, 1000, 120 but I am applying a scaling that transforms the values into 200 V, 1 kV and 120 V.
How ...
1
vote
4answers
5k views
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 ...
1
vote
0answers
89 views
Asp.net grid view
I am nt able to edit the details in gridview.
When i click on Edit link(Command Field), row editing event is fired but when i click on update link , row editing event is fired again and update event ...
1
vote
2answers
1k views
ObjectDataSource -> SelectMethod is not specified
I created a UserControl with ObjectDataSource + ASPxGridView. SelectMethod of ObjectDataSource I set the dynamicly depending on public parameter of UserControl:
private int _companyID = -1;
public ...
1
vote
1answer
888 views
DevExpress ASPxGridView Fitlers
I have DevExpress grid in the page.
For one column I enable filter in header of the table.
But by default Grid select the first filter expression.
What can I do to select another filter from C#?
...
1
vote
2answers
6k views
ASPXGridView Custom CallBack
We have the DevExpress grid and in the OnCustomCallback event we need to assign a hidden field value=true. After we need to get the hidden field value to javascript?
We tried in following manner:
...
1
vote
1answer
1k views
devexpress aspxgridview - setting label with page number
I am using devexpress aspxgridview in asp.net 3.5 web application.
on pageload, I have a label control on top of the page whose text for example is "abc".
I am trying to set the value of the label ...
1
vote
2answers
2k views
devexpress aspxgridview - custom text for paging
Is there a way to customize the top and bottom paging display? Like I want to display the
Top as "Now displaying 1 - 10 of 1000 records for ".
Bottom page as normal grid style like [1][2]...
1
vote
1answer
3k views
AspxGridview Update Row Default Value
I have a devXpress Gridview and there's a functionality to edit specific rows. I have two columns called "dateModified" and "modifiedBy". I want it to automatically populate those two fields with the ...
0
votes
3answers
50 views
DevExpress MVC Gridview + LINQ
We have a DX gridview being rendered in a specifically designed view. We pass a predefined ViewModel object whose values are filled from a Linq-2-Entities query. The problem is that in our callback ...