Skip to main content
Version: Java (Groovy)

isRefreshing

The isRefreshing method returns a boolean value that is true if the table is refreshing, or false if it is not.

Syntax

source.isRefreshing()

Parameters

This method takes no arguments.

Returns

A boolean value that is true if the table is refreshing or false if it is not.

Example

In this example, we create two tables - a static table and a time table - and check whether they are refreshing.

t1 = newTable(
stringCol("Title", "content"),
stringCol("ColumnName", "column_content"),
stringCol("AnotherColumn", "string"),
)

t2 = timeTable("PT1S")

println t1.isRefreshing()
println t2.isRefreshing()