very nice, thank you! As student I just started working with Apex and this is really helpful. But what is the point of the 'add education' button? Cant I simply create a new Education with the create button? Also, how can you create a new Education without selecting a new Education ID on the 'Add Education' Button - isn't the Education ID mandatory since it is a primary key?
@@OracleApexTutorials Hi for example Chart of Accounts 1st Assets 2nd Liabilities 3rd Income 4th Expanse these are my parent in a child will like Under 1st Asset Fixed asset, Debtors like this I want create tree chart of account
Why this video and the sample are not good: Video: 1. Why do I have to watch you typing? You would rather type: "Today I will show you how to create an editable Tree" 2. You do things in the video not relevant to the the tree sample (styling, etc.) 3. You don't talk and you don't explain what and why you are doing it 4. You don't mention the Apex version you are working with Sample: This sample should not be used to interact with Hierarchy Trees in Apex: 1. You have to copy more or less the same page and you need to maintain both in case of enhancements 2. The user has to drill down to a new element he just has added and this every-time (not user friendly) Some explanations for others: 1. The reason he copies the page is that Apex (up to 20.1) does not allow to refresh the Tree (well, there is a refresh function in the API but that one does just re-render the Tree but not update it with changed data from DB 2. Instead of copying and switch between the pages you simply can use Javascript to reload the page: location.reload() in order to refresh the Tree 3. On adding nodes/leafs to the Tree you should add them directly (visually) while saving those in the related table at the same time. Whenever the user reloads the page it has the current state.
Hi, Do you know how to avoid collapsing the tree after pressing node? Edit: I've already figured it out, just include Selected Node Page Item in Tree Attributes View
what is there in the education table ?
I AM NOT ABLE TO GET PARENT EDUCATION NAME IN THE SELECT LIST , INSTEAD GETTTING IDS,
sir you copy the sql code which I can't understand
How Can you make a search text also above the tree ! .. Thanks for you great videos
very nice, thank you! As student I just started working with Apex and this is really helpful. But what is the point of the 'add education' button? Cant I simply create a new Education with the create button? Also, how can you create a new Education without selecting a new Education ID on the 'Add Education' Button - isn't the Education ID mandatory since it is a primary key?
Education Id is primary key and it is auto generated from trigger. Thanks for your valuable comments.
Hi good can we create Accounts Tree let me know brother
Can you explain. Actually what you want ?
@@OracleApexTutorials Hi for example Chart of Accounts 1st Assets 2nd Liabilities 3rd Income 4th Expanse these are my parent in a child will like Under 1st Asset Fixed asset, Debtors like this I want create tree chart of account
@@kulkarnibs8179 Yes Brother, I have already create Chart of Account using Tree.
@@OracleApexTutorials Thanks for information Brother can send me how you created this let me know.
Thanks!!! Remember you can always share the application source.... would be nice...
Welcome Bro.
Why this video and the sample are not good:
Video:
1. Why do I have to watch you typing? You would rather type: "Today I will show you how to create an editable Tree"
2. You do things in the video not relevant to the the tree sample (styling, etc.)
3. You don't talk and you don't explain what and why you are doing it
4. You don't mention the Apex version you are working with
Sample:
This sample should not be used to interact with Hierarchy Trees in Apex:
1. You have to copy more or less the same page and you need to maintain both in case of enhancements
2. The user has to drill down to a new element he just has added and this every-time (not user friendly)
Some explanations for others:
1. The reason he copies the page is that Apex (up to 20.1) does not allow to refresh the Tree (well, there is a refresh function in the API but that one does just re-render the Tree but not update it with changed data from DB
2. Instead of copying and switch between the pages you simply can use Javascript to reload the page: location.reload() in order to refresh the Tree
3. On adding nodes/leafs to the Tree you should add them directly (visually) while saving those in the related table at the same time. Whenever the user reloads the page it has the current state.
Hi,
Do you know how to avoid collapsing the tree after pressing node?
Edit: I've already figured it out, just include Selected Node Page Item in Tree Attributes View