Jump to content

How to enable pagination on spotfire table


Anil Rajan

Recommended Posts

There is no out of the box functionality for Pagination in the TablePlot visualization.

One workaround is to use an Button in text area that executes an IronPython script which sets an expression to limit the data shown in the TablePlot. Something like,

from Spotfire.Dxp.Application.Visuals import *

 

viz = v.As[TablePlot]()

e = "setIndex"

viz.Data.WhereClauseExpression ="RowId()= "+str(e-2)https://docs.tibco.com/pub/doc_remote/sfire_dev/area/doc/api/TIB_sfire-a...

https://docs.tibco.com/pub/doc_remote/sfire_dev/area/doc/api/TIB_sfire-a...

https://docs.tibco.com/pub/doc_remote/sfire_dev/area/doc/api/TIB_sfire-a...

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...