Hi,
I customized a button to browse docbase with dialogcontainer ,but it doesn't show me the fodler path for me to go back to previous folder. My coding to call the button as below:
public void onSelectFile(Control control, ArgumentList args) throws DfException { System.out.println("server side doLocator"); ArgumentList list = new ArgumentList(); list.add("component", "alldocumentlocator"); setComponentNested("dialogcontainer", list, getContext(), this); } public void onReturn(Form arg0, Map arg1) { try { LocatorItemResultSet rs = (LocatorItemResultSet) arg1 .get("_locator_sel"); IDfPersistentObject pObj = null; rs.first(); for (int i = 0; i < rs.getResultsCount(); i++) { pObj = rs.getPersistentObject(); ((Text) getControl("txtAttach", Label.class)).setValue(pObj .getString("object_name")); } } catch (DfException e) { e.printStackTrace(); } }Below is the output of my coding but it doesn't show me the folder path

Actually we want to achieve the screen as below like virtual doc addchild component:

Any idea to get the folder path like screen above???