Hello all,
I have a ASPxGridView with DetailRow in this row there are three additional ASPxGridViews. Each detail ASPxGridView contains EmptyDataRow templates with link to create a new row:
<a href="javascript:gridViewDetails1.AddNewRow();">AddNewRecord</a>
When master ASPxGridView rows is 1 or 2 then new rows in detail grids adding ...
I really like ASPxGridView, but I can't use .NET to develop my applications. I wonder if there is a Java or more generic alternative to it.
Thanks
...
i am using devexpress grid with edit functioality to update the records in the gridview
the codeis being done in asp.net & c#.net
but while clikcing the update after editing the records . it just shoes the progressbar runnning and doesn't invokes the updating event ?
...
I'm having a look at the developer express grid for ASP.NET.
I'm happy with how to set it up in conjunction with an object data source to do updates etc.
However I dont want to save as I go along, I want to perform multiple updates and then save them all at once.
I'm assuming that I need to store the interim updates somewhere e.g. in ...
Yet another problem with DevExpress AspxGridView :)
The context:
One Page
In the Page, a custom control
In the custom Control, a AspxDropDown
The AspxDropDown, has a DropDownWindowTemplate
In the DropDownItemTemplate, I add a GridView and a paging/sorting/filtering enabled ObjectDataSource
When handling the Selecting event of the Obje...
Hello all,
I use the ASPxGridView with paging, pager settings is next:
<SettingsPager
Mode="ShowPager"
Position="Bottom"
Visible="true">
Also I have a CustomButtonInitialize event:
protected void gridViewInvoices_CustomButtonInitialize(object sender, ASPxGridViewCustomButtonEventArgs e)
{
if (!e.IsEditingRow)
{
...
The context is as follows:
One DexExpress AspxGridView with a server-side paging/filtering/sorting mechanism (using ObjectDataSource).
I've been having problems with the filter mechanism ( see this stack ).
Now, the problem I'm having is this: the client-side events get mangled between DataSource events. :O .
Let me explain what happ...
Hello @,
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 is not getting fired at all.
Any suggestions ??
...
i have a div which contains devexpress grid ondeleting a record in the grid it shows a loading panel and the displays the updated grid.
The problem is that the loading panel appears in the left top corner of the browser and not in the center of the grid, where it should be?
can any one guide me in that
...
Hi all,
I am using a datagrid and using Edit link command.
I am suppose to take the new values on rowUpdating command and fire it to database. But I am getting only old values.
I wrote an another page with little functionality, and it is working fine. I am anable to understand what is wrong with my code. I am posting the code below.
...
I have a DevXpress ASPXGridview, and I am using ObjectDataSource for custom paging. This is my objectDataSource code on aspx page.
<asp:ObjectDataSource ID="ObjectDataSource1" runat="server" SelectMethod="GetItems" EnablePaging="true"
TypeName="BLL.Item" StartRowIndexParameterName="startIndex" MaximumRowsParameterName="pageSize"
Select...
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 it to an actual database. How would I do this? I basically just want a few rows and some columns but since it only takes a datasource I'm n...
Hi,
I have a AspxGridView and when i double click to a row, it shows a modal window. What i want to do is, send one columns' value to a AspxLabel which is at ModalWindow. But i couldn't manage to do it, in gridview i use ClientSideEvents RowDblClick to get row value. Here is the code:
GridView:
<dxwgv:ASPxGridView ID="gw_Parameters" r...
Hi,
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 ClientSideEvents of a button it always returns "0". What do i do wrong, i couldn't find it?
...
Hi
I'm trying to change the values of some of the controls in the ASPxGridview Edit Form, however they are not changing. It seems to be resetting?
How can I do this and in which event would I do this in?
Thanks,
Joe
...
Hi,
I'm trying to Find a control in my edit form just before I hit the submit button on it(custom), however it isnt returning any value entered in the memo, even though I have inputted some value. It seems like its resetting. Its not binding to anything.
Code:
Dim Memo As ASPxMemo = CType(ASPxGridView_BranchQueue.FindEditFormTempla...
Hi all,
Consider two tables, Product and Supplier. To get the required data for a grid view I need to do something like the following code snippet. SupplierID is a foreign key in the products table, but needs to be displayed in the user friendly SupplierName from the Supplier table.
SELECT Product.ProductID, Product.ProductName, Produc...
I'm using DevExpress ASPxGridView edit form, using default edit form. However when I open the edit form in IE6 and click "update" to insert the record, it causes a JavaScript error that says "type" is null or not an object". However it works fine in IE7. I am puzzled and unsure of how to resolve this. Code is below.
<dx:ASPxGridView ID=...
Hi,
In the AspxGridView there are two comboboxes in DataItemTemplate, manually loaded. So when user selects one field of the first combo second will be disabled, i wrote this:
<dxe:ASPxComboBox ID="cmbEqualNotEqual" runat="server"
ClientInstanceName="cmbCEqualNotEqual" EnableClientSideAP...
Hi
Im new on Dxpreince 10.(and don't think im expert on this)
I wrote simple webpage. For setting values in grid view i use list and bind that to Aspxgridview.Datasouce. so how access to the selected row ?(plz help with sample code)
I want to get this value in my self defined method not in Selection-changed method! and access to all part...