I just downloaded and inserted the php recordset pagination in one of my project. Everything is working perfectly, but the css class are not rendered into browser. I am using bootstrap framework. I selected "active" in current page style" and "disabled" in "non active link style" both of them are defined well in bootstrap css file. My page renders perfect with all other style definitions coming from the bootstrap css. Just the pagination shows simple numbers and first, last text. Can anyone give me any clue?
below is my code --------------------
<nav> <ul class="pagination"> <?php //********************************* //* RECORDSET PAGING - NUMERIC //* http://www.DwZone-it.com //* Version 1.0.16 //********************************* $dwzPaging_0 = new dwzRecPaging(); $dwzPaging_0->Init(); $dwzPaging_0->SetTypeNumeric(); $dwzPaging_0->SetRecordset("newsheads"); $dwzPaging_0->SetRecPaging(); $dwzPaging_0->SetPages(5); $dwzPaging_0->SetStyle("None", "active", "disabled"); $dwzPaging_0->SetText("»", "«", "First", "Last"); $dwzPaging_0->SetSeparator(" "); $dwzPaging_0->SetLinkMask("{1}"); $dwzPaging_0->GetPaging(); //********************************* //* RECORDSET PAGING - NUMERIC //********************************* ?> </ul> </nav> |
|
|