|
|
@ -57234,17 +57234,16 @@ BI.AllCountPager = BI.inherit(BI.Widget, { |
|
|
|
vgap: 0, |
|
|
|
vgap: 0, |
|
|
|
value: o.curr, |
|
|
|
value: o.curr, |
|
|
|
errorText: BI.i18nText("BI-Please_Input_Positive_Integer"), |
|
|
|
errorText: BI.i18nText("BI-Please_Input_Positive_Integer"), |
|
|
|
width: 35, |
|
|
|
width: 40, |
|
|
|
height: 16 |
|
|
|
height: 24 |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
this.pager = BI.createWidget({ |
|
|
|
this.pager = BI.createWidget({ |
|
|
|
type: "bi.pager", |
|
|
|
type: "bi.pager", |
|
|
|
width: 36, |
|
|
|
width: 58, |
|
|
|
layouts: [{ |
|
|
|
layouts: [{ |
|
|
|
type: "bi.horizontal", |
|
|
|
type: "bi.horizontal", |
|
|
|
hgap: 1, |
|
|
|
lgap: 5 |
|
|
|
vgap: 1 |
|
|
|
|
|
|
|
}], |
|
|
|
}], |
|
|
|
|
|
|
|
|
|
|
|
dynamicShow: false, |
|
|
|
dynamicShow: false, |
|
|
@ -57259,16 +57258,18 @@ BI.AllCountPager = BI.inherit(BI.Widget, { |
|
|
|
value: "prev", |
|
|
|
value: "prev", |
|
|
|
title: BI.i18nText("BI-Previous_Page"), |
|
|
|
title: BI.i18nText("BI-Previous_Page"), |
|
|
|
warningTitle: BI.i18nText("BI-Current_Is_First_Page"), |
|
|
|
warningTitle: BI.i18nText("BI-Current_Is_First_Page"), |
|
|
|
height: 20, |
|
|
|
height: 22, |
|
|
|
cls: "all-pager-prev column-pre-page-h-font" |
|
|
|
width: 22, |
|
|
|
|
|
|
|
cls: "bi-border all-pager-prev pull-up-font" |
|
|
|
}, |
|
|
|
}, |
|
|
|
next: { |
|
|
|
next: { |
|
|
|
type: "bi.icon_button", |
|
|
|
type: "bi.icon_button", |
|
|
|
value: "next", |
|
|
|
value: "next", |
|
|
|
title: BI.i18nText("BI-Next_Page"), |
|
|
|
title: BI.i18nText("BI-Next_Page"), |
|
|
|
warningTitle: BI.i18nText("BI-Current_Is_Last_Page"), |
|
|
|
warningTitle: BI.i18nText("BI-Current_Is_Last_Page"), |
|
|
|
height: 20, |
|
|
|
height: 22, |
|
|
|
cls: "all-pager-next column-next-page-h-font" |
|
|
|
width: 22, |
|
|
|
|
|
|
|
cls: "bi-border all-pager-next pull-down-font" |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
hasPrev: o.hasPrev, |
|
|
|
hasPrev: o.hasPrev, |
|
|
@ -57290,13 +57291,14 @@ BI.AllCountPager = BI.inherit(BI.Widget, { |
|
|
|
|
|
|
|
|
|
|
|
this.allPages = BI.createWidget({ |
|
|
|
this.allPages = BI.createWidget({ |
|
|
|
type: "bi.label", |
|
|
|
type: "bi.label", |
|
|
|
width: 30, |
|
|
|
|
|
|
|
title: o.pages, |
|
|
|
title: o.pages, |
|
|
|
text: "/" + o.pages |
|
|
|
text: "/" + o.pages, |
|
|
|
|
|
|
|
lgap: 5 |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
this.rowCount = BI.createWidget({ |
|
|
|
this.rowCount = BI.createWidget({ |
|
|
|
type: "bi.label", |
|
|
|
type: "bi.label", |
|
|
|
|
|
|
|
cls: "row-count", |
|
|
|
height: o.height, |
|
|
|
height: o.height, |
|
|
|
hgap: 5, |
|
|
|
hgap: 5, |
|
|
|
text: o.count, |
|
|
|
text: o.count, |
|
|
@ -57323,7 +57325,7 @@ BI.AllCountPager = BI.inherit(BI.Widget, { |
|
|
|
BI.createWidget({ |
|
|
|
BI.createWidget({ |
|
|
|
type: "bi.center_adapt", |
|
|
|
type: "bi.center_adapt", |
|
|
|
element: this, |
|
|
|
element: this, |
|
|
|
columnSize: ["", 35, 40, 36], |
|
|
|
columnSize: ["", 40, 20, 58], |
|
|
|
items: [count, this.editor, this.allPages, this.pager] |
|
|
|
items: [count, this.editor, this.allPages, this.pager] |
|
|
|
}); |
|
|
|
}); |
|
|
|
}, |
|
|
|
}, |
|
|
|