I am using 6.0.6 CE to develop a requirement where a page has two portlets. One at left and other at right hand side. 1. Custom portlet which loads list of folders in a Tree structure for a given community. Here I am using jQuery zTree where doView get me the list of folders in JSON array. http://www.ztree.me/v3/demo.php#_102
- Document Library portlet
Every node folder has URL of document library such as: http://yourdomain.com/web/oracle/home/-/document_library/view/11614
When I click any of it, reloads the entire page and DL portlet shows children of the given folder id 11614. But because of this left hand side tree structure gets collapsed.
I wanted to retain the user selection on left side. For this I just thought of rendering only document library portlet on clicking on the folder but I am not able to achieve it thru any of the IPC.
Any suggestions would be appreciated.
Thanks Prasad
Currently I am following this approach: During page load I am getting the folderId from URL and in doView(), I am passing it as renderRequest param. long selectedFolderId = 0;
Refer this post https://www.liferay.com/community/forums/-/message_boards/message/47300920
There should be another approach to achieve reloading of only document Library portlet instead of entire page reload. Please let me know if there is any better approach for this.