ExtJS 6.5 Treegrid with different model for Parent and Child - extjs

I am loading a dynamic treegrid with children loading only after expanding the tree column (separate rest call). The parent model is different from the child model other than the shared Key. I am able to do load the parent tree store. I was also able to load and add childnodes to the parent node. When i expand the treecolumn, i only see the shared Key but not the other columns of the childnode. Can the loaded child node have its own model ? Also, is there a way to display the childnode column names in a separate grid-like view ?
Thanks.

Related

How can I ensure that NSOutlineView.parent(forItem:) returns the correct parent object if the same child object exists multiple times?

I have just encountered a problem when using NSOutlineView and wonder is anyone has a solution.
I have a hierarchy of items and the lowest nodes are objects that can appear in more than one location.
For example:
Country
Town
Car Manufacturer
USA
Chicago
Toyota
Dallas
Toyota
Now if the user selects the 'Toyota' items in the list and if I then try and find the parent for the selected item using the outlineView.parent(forItem:) API it will always return the same parent item, presumably the first one it encounters.
It seems that outlineView does not independently keep track of the parent item when loading data from the data source.
Presumably the only way to overcome this would be to create some sort of unique wrapper object, a struct maybe, at each node to hold the common object.
Anyone have any idea what methods NSOutlineView uses to find the parent of a given object?
From NSOutlineView Class Reference (emphasis mine):
An outline view has the following features:
A user can expand and collapse rows.
Each item in the outline view must be unique. In order for the collapsed state to remain consistent between reloads the item's pointer must remain the same and the item must maintain isEqual: sameness.

ADF tree binding issue

I'm using 3 levels tree VO's. All three VO's has bind variables. The VO's are connected via View link. I'm using createViewLinkAccessorRS in order to pass the variables from parent to child VO.. i defined Target Data Source (EL_expression) for second and third level.The tree works fine, and the nodes filled correctly (all the way down). The Problem is that the second and the third tree level attributes are only shown in the tree component. anywhere else in the page it looks like they are empty ({bindings.(attname).inputValue} = null) (E.g - after dragging the third tree level "FlowOrder" from the AppModuleDataControl and create a form out of it, and selecting the second node of the tree will update all the third level tree node (please see attached image), but will leave the entire form which was just created empty)
Any idea why the FlowOrder bindings are empty? i assume that maybe it has to do with the bind variable of the VO .. i even thought i would change the tree selection listener so on the second level click it will perform a full query of "FlowOrder" via executewithparams, but it does not make any sense because the data was fetched already after clicking level 2 tree)
(Jdeveloper : 12.2.1.2.0)
attached image: Details
Check out my explanation on trees and example application in another post: ADF filter table based on tree selection The tree shows data from view link accessors. The form shows data from view instance. They are in different state.

Hibernate: How to persist Child object and not to touch/update parent in hibernate

I have a parent-child relationship in a class and I have defined the relationship as one to many.
I have a use case where I need to save only child objects and ideally not update Parent object on a button click?
how do I it.
Call session.save on child objects.
Have a look into this tutorial https://www.baeldung.com/hibernate-one-to-many
Here session.save(item1); only saves changes of child object item1.

Treepanel losing selection after appending nodes. (ExtJS / Rally)

I am creating a treepanel object in Ext JS which dynamically adds nodes to the tree based on child information returned from the server. The problem I'm having is that I would like to be able to select multiple objects from the tree and have that selection remain after expanding a node. Since appending nodes is effectively changing the tree, the selection is lost. Is there any way I can preserve this selection after appending the new nodes?
you could save the nodes or ids of the nodes being selected and then reselect them after appending additional nods.

Load empty values from referenced node in Views (Drupal 7)

I have a view displaying nodes of two content types. The nodes all have a cck field made with Entity Reference referencing a "parent" node. If the displayed node in the view has an empty value, the view should display the value in the parent node. Simple as that.
The filters should also be able to filter on the parent's values...
I'm thinking it should be solved with handlers somehow, but I'm having a lot of trouble finding my way through the documentation. Could anybody please help?
I'm working with Drupal 7.14, Views 7.x-3.3 and Entity Reference 7.x-1.0-rc3+2-dev.
-- Mikkel

Resources