Tuesday, May 26, 2015

Pagination Using JQuery dataTable in Liferay

Some times we will get the requirement to develop the pagination with better UI which can not be achievable using Liferay Search Container.for those requirement below example will be help to develop the pagination using JQuery.

Imports rquired for pagination :- 

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script type="text/javascript" src="http://cdn.datatables.net/1.10.2/js/jquery.dataTables.min.js"></script>

<script type="text/javascript" src="http://cdn.datatables.net/plug-ins/725b2a2115b/integration/bootstrap/2/dataTables.bootstrap.js"></script>

Html Code :-

<table class="table table-striped error" id="viewDataTables">
<thead>
<tr>
<th><liferay-ui:message key="no" /></th>
<th><liferay-ui:message key="name" /></th>
</tr>
</thead>

        <tbody>
                <tr>
<td><liferay-ui:message key="123" /></td>
<td><liferay-ui:message key="Imthiyaz" /></td>
</tr>
        </tbody>
 </table>

Note :- Here <thead> , <tbody> declaration is mandatory without these pagination will not work .

Script Code :- 

 <script type="text/javascript">

 $('#viewDataTables').dataTable({
     "bFilter" : false,
        "bLengthChange" : false,
        "iDisplayLength" : 10,
        "bSort" : true,
        "sDom" : 't <p> <"bottom"><"clear">'
    
});

 </script>  


5 comments:

Unknown said...

Wonderful blog.. Thanks for sharing informative blog.. its very useful to me..

iOS Training in Chennai

Inthiyaz Shaik said...

Thanks Abiya

Manoj Pranesh said...

Really its very useful Inthu bhai.. Learning lot of Liferay things from your blogs!!! Thanks

Unknown said...

Nice article..

Anonymous said...

Сумки из кожи актуальны всегдаи еще при грамотном ношении сочетаются практически с любой верхней. Кожаная сумка отличается большим временем использования и роскошным внешним видом. При хорошем уходе сумка из натурального природного материала проработает гораздо дольше, чем из не натурального, а также с годами сумочка, как хорошее вино, становится прекраснее, раскрывая свою настоящую красоту. Выбрать кожаную сумку нужно воспользовавшись ресурсом сумка со, так как там в наличии много вариантов сумочек. На сайте вы найдете отзывы покупателей, которые помогут вам сориентироваться и сделать лучший выбор сумочки.

Liferay DXP JNDI Data Source Cofiguration

 This Blog will help us to learn about the JNDI Data Source Configuration in Liferay DXP. We have tested this with Liferay 7.3 with Tomcat. ...