In WebCombo, you can get the total retrieved rows.
In this topic, you will learn how to use TotalRetrievedRows method.
To get total retrieved rows in WebCombo
- Drag a HTML button and leave the Id as it is, which is Button1.
- Double click the HTML button and add the following code in the defined client side event handler:
 JavaScript  Copy Code Copy Codefunction Button1_onclick() { var WebCombo1 = ISGetObject("WebCombo1"); var result = WebCombo1.TotalRetrievedRows; alert(result); }
 
- Run the project.
 
     
     
     
     
     
    