How to dynamically create commandNavigationItem at runtime
I you want to make a dynamic navigation Pane like this when you click on the tree node on the right side, the page fragment on the left side is populated dynamically at runtime with a navigationPane.The commandNavigationItems are rendered at runtime. To do this , follow theses steps: 1- you must have a database table that stores the data of the commandNavigationItem like this CREATE TABLE SMM_SYS_OBJECTS ( ID NUMBER(10) NOT NULL, OBJECT_REASON VARCHAR2(3 BYTE) DEFAULT 'REP' NOT NULL, OBJ_SEQ NUMBER(3), FILE_TYPE VARCHAR2(1 BYTE) DEFAULT 'M' NOT ...