Let the pagination can be manually adjusted in FluTableView.
parent
eaad0dc565
commit
26e9b5d298
|
@ -118,6 +118,7 @@ Item {
|
|||
id:pagination
|
||||
height: 40
|
||||
pageCurrent: control.pageCurrent
|
||||
onPageCurrentChanged: control.pageCurrent = pageCurrent
|
||||
itemCount: control.itemCount
|
||||
pageCount: control.pageCount
|
||||
onRequestPage:
|
||||
|
@ -128,6 +129,15 @@ Item {
|
|||
top: parent.top
|
||||
right: parent.right
|
||||
}
|
||||
Connections{
|
||||
target: control
|
||||
function onPageCurrentChanged(){
|
||||
if (control.pageCurrent!==pagination.pageCurrent)
|
||||
{
|
||||
pagination.calcNewPage(control.pageCurrent)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
model:model_data_source
|
||||
|
|
Loading…
Reference in New Issue