Hello.
I have GridGroupingControl containing variable number of rows made of label and input fields (in other words 2 colons, 1st label and 2nd input field).
In order to continue with application execution, said input fields need to be checked if they are not empty.
This I want to happen on the client side.
I manage to do that via getElementById( GridGroupingControl ID+"some gibberish" ) and then array tags returned getElementsByTagName("input").
Input fields are created dynamically with know id prefix, so JS startsWith function comes in very handy.
My question is: Is there a way to do this kind of validation in more concise way?
Thank you & best regards.