Skip to main content
Nintex Community Menu Bar

Lithium theme paging

  • January 3, 2017
  • 0 replies
  • 9 views



 

Symptoms


Lithium theme does not have the total number of pages available in a listview , even if we set SmartObject.RuntimeListViewRowCount to true.
Any workaround?
 

Diagnoses


customer resolved the issue on his own.
His last response was:
"
We found a soultion for this bug,you can find below the CSS (for LTR and RTL directions) to overcome this issue:

.grid-paging-control {width:120px !important}
.toolbar-button.paging-right {margin-left:80px !important}
.toolbar-button.paging-last {margin-left:80px !important}
.grid-paging-control-text{display:inline-block !important}
.grid-paging-control-text.current{float:left !important}
.grid-paging-control-text.total{float:none !important}

html[dir=rtl] .grid-paging-control {width:120px !important}
html[dir=rtl] .toolbar-button.paging-left {margin-left:80px !important}
html[dir=rtl] .toolbar-button.paging-first {margin-left:80px !important}
html[dir=rtl] .grid-paging-control-text{display:inline-block !important}
html[dir=rtl] .grid-paging-control-text.current{float:right !important}
html[dir=rtl] .grid-paging-control-text.total{float:none !important}
"
 

Resolution

The respected customer resolved the issue on his own.
His last response was:
"
We found a soultion for this bug,you can find below the CSS (for LTR and RTL directions) to overcome this issue:

.grid-paging-control {width:120px !important}
.toolbar-button.paging-right {margin-left:80px !important}
.toolbar-button.paging-last {margin-left:80px !important}
.grid-paging-control-text{display:inline-block !important}
.grid-paging-control-text.current{float:left !important}
.grid-paging-control-text.total{float:none !important}

html[dir=rtl] .grid-paging-control {width:120px !important}
html[dir=rtl] .toolbar-button.paging-left {margin-left:80px !important}
html[dir=rtl] .toolbar-button.paging-first {margin-left:80px !important}
html[dir=rtl] .grid-paging-control-text{display:inline-block !important}
html[dir=rtl] .grid-paging-control-text.current{float:right !important}
html[dir=rtl] .grid-paging-control-text.total{float:none !important}
"