Showing posts with label AUI TAb. Show all posts
Showing posts with label AUI TAb. Show all posts

Tuesday, 2 July 2013

Retrieve Data From Database Using Liferay Search Container in Aui Tab

Hi Liferay members in my last post i have shown to retrieve data from database but this time i am going to show data in liferay search container using aui tab.
Follow this steps.


AUI Tab in View.jsp

1)Write the following Script in your Jsp page
<script type="text/javascript">
AUI().ready(
'aui-tabs', 'substitute',
   function(A) {
       var tabs1 = new A.TabView(
           {
               boundingBox: '#markupTabs',
               listNode: '#test',
               contentNode: '#testContent'
           }
       );
       tabs1.render();        
   }
);
</script>