cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Need help navigating or using the PTC Community? Contact the community team. X

get current Datatable row count

xiaoqw
15-Moonstone

get current Datatable row count

when I write services behind current datatable, I need to get number of rows of this datatable.

this is my code I used: 

var result = me.getRowCount();

the output should be integer.

 

but after I run this code, here is output error says: cannnot find functon getRowCount in object com.thingworx.datatables.

 

how to fix this problem?

1 ACCEPTED SOLUTION

Accepted Solutions

Use this service instead:  GetDataTableEntryCount

View solution in original post

3 REPLIES 3

The getRowCount() service is only used in infotable, so it returns the size of a infotable chunk, not the Datatable entity.

Use this service instead:  GetDataTableEntryCount

xiaoqw
15-Moonstone
(To:zyuan1)

ok. thank you. it helps

Top Tags