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>