I am using DevExpress pivotgrid for displaying data. How to show only the dimensions in the DevExpress pivotgrid FieldList/CustomizationForm, when we right click on pivot grid and select "Show field list"?
Thanks in advance.
This can be easily accomplished by setting the PivotGridField.Options.ShowInCustomizationForm property to false.
EDIT:
Related
How to add control(combobox, checkbox, radio, button ...) in cell of devexpress spreadsheet ?
Thank you !
If you are using a WinForms XtraSpreadsheet control - take a look at the example on the DevExpress site. It describes how to display custom controls instead of the standard cell editor.
In gridview my data showing in horizontal direction how to change that in vertical direction
Because I'm using ItemTemplate and TemplateField in gridview and I want to see the data one by one i.e in Row
please follow below link It might help u to solve your problem
May be this is what you're looking for:
http://forums.asp.net/post/2305635.aspx
You can also follow below link:
http://www.c-sharpcorner.com/Forums/Thread/214138/change-orientation-of-a-grid-view.aspx
I want to add a addtional value "ALL" into devExpress grid pager dropdown.Default display following setting
<PageSizeItemSettings Items="10,20,50,100" Visible="True">
</PageSizeItemSettings>
I want to add one addition value All into PageSizeItemSettings dropdown.When i clicked on All it should display all the table row. How can i do this?
I got the solution related display All option in pager.
I need to place a DevExpress combo edit where the drop-down is a TreeView. DevExpress has a bunch of partial explinations of this, but no complete source. Anyone have a sample?
The solution is to use a PopupContainerEdit control. To do this you also create a PopupContainerControl, put a TreeView in the PopupContainerControl (set to fill size) and then have the PopupContainerEdit.Popup point to the PopupContainerControl.
Full source at DevExpress combo box with a TreeView dropdown
How to get the values of a selected row in the Advanced DataGrid control in Flex ?
thanks
'SelectedCells' property will help you here.
You can learn more on this at
'http://livedocs.adobe.com/flex/3/langref/mx/controls/AdvancedDataGrid.html#eventSummary'
Click any cell in the row to select the row. After the selection, selectedCells contains a single Object:
[{rowIndex:selectedRowIndex, columnIndex: -1}]
Hope that helps.
Ashine.