UI 설정값 변경
This commit is contained in:
parent
b9dde1b3bc
commit
50db67ddca
@ -76,7 +76,8 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
Grid.prototype = {
|
Grid.prototype = {
|
||||||
width: "auto",
|
//width: "auto",
|
||||||
|
width: "100%", /* NLIB */
|
||||||
height: "auto",
|
height: "auto",
|
||||||
updateOnResize: true,
|
updateOnResize: true,
|
||||||
|
|
||||||
@ -124,16 +125,23 @@
|
|||||||
sortAscClass: "jsgrid-header-sort jsgrid-header-sort-asc",
|
sortAscClass: "jsgrid-header-sort jsgrid-header-sort-asc",
|
||||||
sortDescClass: "jsgrid-header-sort jsgrid-header-sort-desc",
|
sortDescClass: "jsgrid-header-sort jsgrid-header-sort-desc",
|
||||||
|
|
||||||
paging: false,
|
paging: true,
|
||||||
pagerContainer: null,
|
pagerContainer: null,
|
||||||
pageIndex: 1,
|
pageIndex: 1,
|
||||||
pageSize: 20,
|
//pageSize: 20,
|
||||||
pageButtonCount: 15,
|
pageSize: 10, /* NLIB */
|
||||||
pagerFormat: "Pages: {first} {prev} {pages} {next} {last} {pageIndex} of {pageCount}",
|
//pageButtonCount: 15,
|
||||||
pagePrevText: "Prev",
|
pageButtonCount: 10, /* NLIB */
|
||||||
pageNextText: "Next",
|
//pagerFormat: "Pages: {first} {prev} {pages} {next} {last} {pageIndex} of {pageCount}",
|
||||||
pageFirstText: "First",
|
pagerFormat: "{first} {prev} {pages} {next} {last}", /* NLIB */
|
||||||
pageLastText: "Last",
|
//pagePrevText: "Prev",
|
||||||
|
pagePrevText: " < ", /* NLIB */
|
||||||
|
//pageNextText: "Next",
|
||||||
|
pageNextText: " > ", /* NLIB */
|
||||||
|
//pageFirstText: "First",
|
||||||
|
pageFirstText: " << ", /* NLIB */
|
||||||
|
//pageLastText: "Last",
|
||||||
|
pageLastText: " >> ", /* NLIB */
|
||||||
pageNavigatorNextText: "...",
|
pageNavigatorNextText: "...",
|
||||||
pageNavigatorPrevText: "...",
|
pageNavigatorPrevText: "...",
|
||||||
pagerContainerClass: "jsgrid-pager-container",
|
pagerContainerClass: "jsgrid-pager-container",
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user