Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 693 Bytes

readme.md

File metadata and controls

39 lines (31 loc) · 693 Bytes

Silvestris Paging Client Library

How to use this ?

import {requestPage} from '@itpolsri/felis-silvestris-paging';

const htmlEltOpts = {
    pageElContainerId: '#page-el-container',
    tBodyId: '#tbody',
    pageElChildClassName: 'page-el-child'
}

requestPage('YOUR_SILVESTRIS_PAGING_ENDPOINT','SILVESTRIS_QUERY_STRING_NAME',
    SILVESTRIS_QUERY_STRING_VALUE,
    htmlEltOpts,
    err=>{
        console.error(err)
    }
)

example:

requestPage('http://localhost:8080/Paging/api.php','page',
    1,
    htmlEltOpts,
    err=>{
        console.error(err)
    }
)

Silvestris server written in PHP you can visit here