How do I show XtraGrid Control in XtraTreeList on specific Node during TreeBuilding ?
It is impossible to show an XtraGrid in a TreeList node. Currently, this can be done in ASP.NET only...
Related
I have a problem with my form TabPageContent:
I have to create several tabPages, each tabPage contains grids with "New" button, all these grids point to the same datasource.
when I click on "new" in tabPage 2 the cursor changes to tabPage1 without creating the new line on the grid of the tabPage2.
I do not think this is a supported scenario: several grids using the same datasource. The reason is that Ctrl-N or New button set focus on the first grid of the datasource. Read only it works fine, it seems.
You can have several datasources with the same table, each datasource can be referenced by one grid.
I need to define a 10*10 grid of nodes. Each cell in the grid has to contain exactly one node.
A newly created node gets inserted into the next available cell and a new node can not be step to occupy an occupied cell.
That's the scenario I am trying to accomplish but I need suggestions how I do it.
How are your nodes currently being displayed? What version of Drupal are you using?
If you are using Views 7.x-3.x, there's a style plugin called "Grid" bundled with the module. When editing your view, click on Format and select Grid. Click "Apply", and on the following page set the number of columns to 10.
Finally, you probably want to disable the Views pager, but limit the results to 100.
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
My current CheckedComboBox has a large list of items. I need to have selected list out of those items checked when the drop down is clicked. e.g CheckedComboBox will have P,Q,R and S as the itmes. But only P will have a tick in front of it.
Is there a property for this defined already?
Thanks
The CheckedComboBox control does not provide the CheckedItems (or SelectedItems) property .Use the editor's EditValue property to determine which Items are selected.
I am using Advanced DataGrid of Flex 3 with hierarchical data. The itemRenderer is a TextInput which accepts numbers. When I enter data into the given field and click the corresponding expand tree icon for the row, I want the amount entered in tree node should get cascaded to its child rows. But I found the nature of advanced DataGrid erroneous.
When I enter data and click on tree icon, the data is not populated in child windows unless i wont take the focus out from the editing control.
I tried using itemEditEnd, itemFocusOut etc but of no use. I have to explicitly click on any of the other columns and then expand tree.
Am I making any mistake anywhere?
I found solution to my problem, its bit ugly but it works. I had to register two events for textinput as follows
addEventListener(FocusEvent.MOUSE_FOCUS_CHANGE, allocateAmount);
addEventListener(FocusEvent.KEY_FOCUS_CHANGE, allocateAmount);
and then by using IViewCursor I could able to update data.