Page 1 of 1

Total Records View in Custom View

Posted: 2015-10-19 15:40
by ashekgo
In Northwind Inventory apps we have Customers Table View Form. In Table View, in table footer it displays something like "Records 1 of 91"

Now I want to display the total customer number like "91" in my custom page. I Know how to make custom page but I don't know how to display total customers number.

Can anyone help me in this advance topics?

Re: Total Records View in Custom View

Posted: 2015-10-28 17:55
by a.gneady
You could use something like this code:

Code: Select all

echo sqlValue("select count(1) from customers");
I'm assuming that you are using a custom page as explained in https://bigprof.com/appgini/help/advanc ... cess-pages