PMCORE-3793: First and Last buttons now working as expected
This commit is contained in:
9
resources/assets/js/admin/settings/customCaseList/Tables.vue
Normal file → Executable file
9
resources/assets/js/admin/settings/customCaseList/Tables.vue
Normal file → Executable file
@@ -87,6 +87,11 @@ export default {
|
|||||||
tableData: [],
|
tableData: [],
|
||||||
options: {
|
options: {
|
||||||
filterable: true,
|
filterable: true,
|
||||||
|
pagination: {
|
||||||
|
chunk: 3,
|
||||||
|
nav: 'scroll',
|
||||||
|
edge: true
|
||||||
|
},
|
||||||
headings: {
|
headings: {
|
||||||
name: this.$i18n.t("ID_NAME"),
|
name: this.$i18n.t("ID_NAME"),
|
||||||
process: this.$i18n.t("ID_PROCESS"),
|
process: this.$i18n.t("ID_PROCESS"),
|
||||||
@@ -98,8 +103,8 @@ export default {
|
|||||||
},
|
},
|
||||||
texts: {
|
texts: {
|
||||||
count: this.$i18n.t("ID_SHOWING_FROM_RECORDS_COUNT"),
|
count: this.$i18n.t("ID_SHOWING_FROM_RECORDS_COUNT"),
|
||||||
first: this.$i18n.t("ID_FIRST"),
|
first: "<<",
|
||||||
last: this.$i18n.t("ID_LAST"),
|
last: ">>",
|
||||||
filter: this.$i18n.t("ID_FILTER") + ":",
|
filter: this.$i18n.t("ID_FILTER") + ":",
|
||||||
limit: this.$i18n.t("ID_RECORDS") + ":",
|
limit: this.$i18n.t("ID_RECORDS") + ":",
|
||||||
page: this.$i18n.t("ID_PAGE") + ":",
|
page: this.$i18n.t("ID_PAGE") + ":",
|
||||||
|
|||||||
9
resources/assets/js/home/AdvancedSearch/AdvancedSearch.vue
Normal file → Executable file
9
resources/assets/js/home/AdvancedSearch/AdvancedSearch.vue
Normal file → Executable file
@@ -163,6 +163,11 @@ export default {
|
|||||||
options: {
|
options: {
|
||||||
filterable: false,
|
filterable: false,
|
||||||
perPageValues: [],
|
perPageValues: [],
|
||||||
|
pagination: {
|
||||||
|
chunk: 3,
|
||||||
|
nav: 'scroll',
|
||||||
|
edge: true
|
||||||
|
},
|
||||||
headings: {
|
headings: {
|
||||||
case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
|
case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
|
||||||
process_category: this.$i18n.t("ID_CATEGORY_PROCESS"),
|
process_category: this.$i18n.t("ID_CATEGORY_PROCESS"),
|
||||||
@@ -178,8 +183,8 @@ export default {
|
|||||||
},
|
},
|
||||||
texts: {
|
texts: {
|
||||||
count:this.$i18n.t("ID_SHOWING_FROM_RECORDS_COUNT"),
|
count:this.$i18n.t("ID_SHOWING_FROM_RECORDS_COUNT"),
|
||||||
first: this.$i18n.t("ID_FIRST"),
|
first: "<<",
|
||||||
last: this.$i18n.t("ID_LAST"),
|
last: ">>",
|
||||||
filter: this.$i18n.t("ID_FILTER") + ":",
|
filter: this.$i18n.t("ID_FILTER") + ":",
|
||||||
limit: this.$i18n.t("ID_RECORDS") + ":",
|
limit: this.$i18n.t("ID_RECORDS") + ":",
|
||||||
page: this.$i18n.t("ID_PAGE") + ":",
|
page: this.$i18n.t("ID_PAGE") + ":",
|
||||||
|
|||||||
9
resources/assets/js/home/CaseDetail.vue
Normal file → Executable file
9
resources/assets/js/home/CaseDetail.vue
Normal file → Executable file
@@ -170,6 +170,11 @@ export default {
|
|||||||
showTable: true,
|
showTable: true,
|
||||||
tableData: [],
|
tableData: [],
|
||||||
options: {
|
options: {
|
||||||
|
pagination: {
|
||||||
|
chunk: 3,
|
||||||
|
nav: 'scroll',
|
||||||
|
edge: true
|
||||||
|
},
|
||||||
headings: {
|
headings: {
|
||||||
task: this.$i18n.t("ID_TASK"),
|
task: this.$i18n.t("ID_TASK"),
|
||||||
thread_title: this.$i18n.t('ID_CASE_THREAD_TITLE'),
|
thread_title: this.$i18n.t('ID_CASE_THREAD_TITLE'),
|
||||||
@@ -180,8 +185,8 @@ export default {
|
|||||||
},
|
},
|
||||||
texts: {
|
texts: {
|
||||||
count:this.$i18n.t("ID_SHOWING_FROM_RECORDS_COUNT"),
|
count:this.$i18n.t("ID_SHOWING_FROM_RECORDS_COUNT"),
|
||||||
first: this.$i18n.t("ID_FIRST"),
|
first: "<<",
|
||||||
last: this.$i18n.t("ID_LAST"),
|
last: ">>",
|
||||||
filter: this.$i18n.t("ID_FILTER") + ":",
|
filter: this.$i18n.t("ID_FILTER") + ":",
|
||||||
limit: this.$i18n.t("ID_RECORDS") + ":",
|
limit: this.$i18n.t("ID_RECORDS") + ":",
|
||||||
page: this.$i18n.t("ID_PAGE") + ":",
|
page: this.$i18n.t("ID_PAGE") + ":",
|
||||||
|
|||||||
9
resources/assets/js/home/CustomCaseList/CustomCaseList.vue
Normal file → Executable file
9
resources/assets/js/home/CustomCaseList/CustomCaseList.vue
Normal file → Executable file
@@ -338,10 +338,15 @@ export default {
|
|||||||
options: {
|
options: {
|
||||||
filterable: false,
|
filterable: false,
|
||||||
perPageValues: [],
|
perPageValues: [],
|
||||||
|
pagination: {
|
||||||
|
chunk: 3,
|
||||||
|
nav: 'scroll',
|
||||||
|
edge: true
|
||||||
|
},
|
||||||
texts: {
|
texts: {
|
||||||
count: this.$i18n.t("ID_SHOWING_FROM_RECORDS_COUNT"),
|
count: this.$i18n.t("ID_SHOWING_FROM_RECORDS_COUNT"),
|
||||||
first: this.$i18n.t("ID_FIRST"),
|
first: "<<",
|
||||||
last: this.$i18n.t("ID_LAST"),
|
last: ">>",
|
||||||
filter: this.$i18n.t("ID_FILTER") + ":",
|
filter: this.$i18n.t("ID_FILTER") + ":",
|
||||||
limit: this.$i18n.t("ID_RECORDS") + ":",
|
limit: this.$i18n.t("ID_RECORDS") + ":",
|
||||||
page: this.$i18n.t("ID_PAGE") + ":",
|
page: this.$i18n.t("ID_PAGE") + ":",
|
||||||
|
|||||||
9
resources/assets/js/home/Draft/Draft.vue
Normal file → Executable file
9
resources/assets/js/home/Draft/Draft.vue
Normal file → Executable file
@@ -311,6 +311,11 @@ export default {
|
|||||||
options: {
|
options: {
|
||||||
filterable: false,
|
filterable: false,
|
||||||
perPageValues: [],
|
perPageValues: [],
|
||||||
|
pagination: {
|
||||||
|
chunk: 3,
|
||||||
|
nav: 'scroll',
|
||||||
|
edge: true
|
||||||
|
},
|
||||||
headings: {
|
headings: {
|
||||||
detail: this.$i18n.t("ID_DETAIL_CASE"),
|
detail: this.$i18n.t("ID_DETAIL_CASE"),
|
||||||
case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
|
case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
|
||||||
@@ -336,8 +341,8 @@ export default {
|
|||||||
},
|
},
|
||||||
texts: {
|
texts: {
|
||||||
count:this.$i18n.t("ID_SHOWING_FROM_RECORDS_COUNT"),
|
count:this.$i18n.t("ID_SHOWING_FROM_RECORDS_COUNT"),
|
||||||
first: this.$i18n.t("ID_FIRST"),
|
first: "<<",
|
||||||
last: this.$i18n.t("ID_LAST"),
|
last: ">>",
|
||||||
filter: this.$i18n.t("ID_FILTER") + ":",
|
filter: this.$i18n.t("ID_FILTER") + ":",
|
||||||
limit: this.$i18n.t("ID_RECORDS") + ":",
|
limit: this.$i18n.t("ID_RECORDS") + ":",
|
||||||
page: this.$i18n.t("ID_PAGE") + ":",
|
page: this.$i18n.t("ID_PAGE") + ":",
|
||||||
|
|||||||
9
resources/assets/js/home/Inbox/Inbox.vue
Normal file → Executable file
9
resources/assets/js/home/Inbox/Inbox.vue
Normal file → Executable file
@@ -342,6 +342,11 @@ export default {
|
|||||||
options: {
|
options: {
|
||||||
filterable: false,
|
filterable: false,
|
||||||
perPageValues: [],
|
perPageValues: [],
|
||||||
|
pagination: {
|
||||||
|
chunk: 3,
|
||||||
|
nav: 'scroll',
|
||||||
|
edge: true
|
||||||
|
},
|
||||||
headings: {
|
headings: {
|
||||||
detail: this.$i18n.t("ID_DETAIL_CASE"),
|
detail: this.$i18n.t("ID_DETAIL_CASE"),
|
||||||
case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
|
case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
|
||||||
@@ -357,8 +362,8 @@ export default {
|
|||||||
},
|
},
|
||||||
texts: {
|
texts: {
|
||||||
count: this.$i18n.t("ID_SHOWING_FROM_RECORDS_COUNT"),
|
count: this.$i18n.t("ID_SHOWING_FROM_RECORDS_COUNT"),
|
||||||
first: this.$i18n.t("ID_FIRST"),
|
first: "<<",
|
||||||
last: this.$i18n.t("ID_LAST"),
|
last: ">>",
|
||||||
filter: this.$i18n.t("ID_FILTER") + ":",
|
filter: this.$i18n.t("ID_FILTER") + ":",
|
||||||
limit: this.$i18n.t("ID_RECORDS") + ":",
|
limit: this.$i18n.t("ID_RECORDS") + ":",
|
||||||
page: this.$i18n.t("ID_PAGE") + ":",
|
page: this.$i18n.t("ID_PAGE") + ":",
|
||||||
|
|||||||
9
resources/assets/js/home/MyCases/MyCases.vue
Normal file → Executable file
9
resources/assets/js/home/MyCases/MyCases.vue
Normal file → Executable file
@@ -165,6 +165,11 @@ export default {
|
|||||||
options: {
|
options: {
|
||||||
filterable: false,
|
filterable: false,
|
||||||
perPageValues: [],
|
perPageValues: [],
|
||||||
|
pagination: {
|
||||||
|
chunk: 3,
|
||||||
|
nav: 'scroll',
|
||||||
|
edge: true
|
||||||
|
},
|
||||||
headings: {
|
headings: {
|
||||||
case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
|
case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
|
||||||
process_category: this.$i18n.t("ID_CATEGORY_PROCESS"),
|
process_category: this.$i18n.t("ID_CATEGORY_PROCESS"),
|
||||||
@@ -179,8 +184,8 @@ export default {
|
|||||||
},
|
},
|
||||||
texts: {
|
texts: {
|
||||||
count: this.$i18n.t("ID_SHOWING_FROM_RECORDS_COUNT"),
|
count: this.$i18n.t("ID_SHOWING_FROM_RECORDS_COUNT"),
|
||||||
first: this.$i18n.t("ID_FIRST"),
|
first: "<<",
|
||||||
last: this.$i18n.t("ID_LAST"),
|
last: ">>",
|
||||||
filter: this.$i18n.t("ID_FILTER") + ":",
|
filter: this.$i18n.t("ID_FILTER") + ":",
|
||||||
limit: this.$i18n.t("ID_RECORDS") + ":",
|
limit: this.$i18n.t("ID_RECORDS") + ":",
|
||||||
page: this.$i18n.t("ID_PAGE") + ":",
|
page: this.$i18n.t("ID_PAGE") + ":",
|
||||||
|
|||||||
9
resources/assets/js/home/Paused/Paused.vue
Normal file → Executable file
9
resources/assets/js/home/Paused/Paused.vue
Normal file → Executable file
@@ -342,6 +342,11 @@ export default {
|
|||||||
options: {
|
options: {
|
||||||
filterable: false,
|
filterable: false,
|
||||||
perPageValues: [],
|
perPageValues: [],
|
||||||
|
pagination: {
|
||||||
|
chunk: 3,
|
||||||
|
nav: 'scroll',
|
||||||
|
edge: true
|
||||||
|
},
|
||||||
headings: {
|
headings: {
|
||||||
detail: this.$i18n.t("ID_DETAIL_CASE"),
|
detail: this.$i18n.t("ID_DETAIL_CASE"),
|
||||||
case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
|
case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
|
||||||
@@ -357,8 +362,8 @@ export default {
|
|||||||
},
|
},
|
||||||
texts: {
|
texts: {
|
||||||
count:this.$i18n.t("ID_SHOWING_FROM_RECORDS_COUNT"),
|
count:this.$i18n.t("ID_SHOWING_FROM_RECORDS_COUNT"),
|
||||||
first: this.$i18n.t("ID_FIRST"),
|
first: "<<",
|
||||||
last: this.$i18n.t("ID_LAST"),
|
last: ">>",
|
||||||
filter: this.$i18n.t("ID_FILTER") + ":",
|
filter: this.$i18n.t("ID_FILTER") + ":",
|
||||||
limit: this.$i18n.t("ID_RECORDS") + ":",
|
limit: this.$i18n.t("ID_RECORDS") + ":",
|
||||||
page: this.$i18n.t("ID_PAGE") + ":",
|
page: this.$i18n.t("ID_PAGE") + ":",
|
||||||
|
|||||||
9
resources/assets/js/home/Unassigned/Unassigned.vue
Normal file → Executable file
9
resources/assets/js/home/Unassigned/Unassigned.vue
Normal file → Executable file
@@ -334,6 +334,11 @@ export default {
|
|||||||
options: {
|
options: {
|
||||||
filterable: false,
|
filterable: false,
|
||||||
perPageValues: [],
|
perPageValues: [],
|
||||||
|
pagination: {
|
||||||
|
chunk: 3,
|
||||||
|
nav: 'scroll',
|
||||||
|
edge: true
|
||||||
|
},
|
||||||
headings: {
|
headings: {
|
||||||
detail: this.$i18n.t("ID_DETAIL_CASE"),
|
detail: this.$i18n.t("ID_DETAIL_CASE"),
|
||||||
case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
|
case_number: this.$i18n.t("ID_MYCASE_NUMBER"),
|
||||||
@@ -349,8 +354,8 @@ export default {
|
|||||||
},
|
},
|
||||||
texts: {
|
texts: {
|
||||||
count:this.$i18n.t("ID_SHOWING_FROM_RECORDS_COUNT"),
|
count:this.$i18n.t("ID_SHOWING_FROM_RECORDS_COUNT"),
|
||||||
first: this.$i18n.t("ID_FIRST"),
|
first: "<<",
|
||||||
last: this.$i18n.t("ID_LAST"),
|
last: ">>",
|
||||||
filter: this.$i18n.t("ID_FILTER") + ":",
|
filter: this.$i18n.t("ID_FILTER") + ":",
|
||||||
limit: this.$i18n.t("ID_RECORDS") + ":",
|
limit: this.$i18n.t("ID_RECORDS") + ":",
|
||||||
page: this.$i18n.t("ID_PAGE") + ":",
|
page: this.$i18n.t("ID_PAGE") + ":",
|
||||||
|
|||||||
Reference in New Issue
Block a user