Hi everybody.
Please, in the case where i have this in AllMetaExample
Code:
public class AllMetaExample extends LiteralBasedProvider {

    private static String[] completeList;
    
    static {
            completeList[] = geFromDB();
    }

    private String[] geFromDB(){
             .........
    }
}
So, how can i know the number of elements that i will be subscribed to from the client ?
What will i put in this HTML line:

Code:
            for (var i = 1; i <= ???; i++) {
Or should i use a DynaScrollTable ? Or can i still use OverwriteTable ?