FAQ (Frequently Asked Questions)
1
Q: Is there's a possibility to add pagination to the Enhanced Grid Pro?
A: No, that's not possible, we only support "infinite scroll". To be honest, at the moment there are no plans on making pagination available.
2
Q: Using Dynamic actions - is it possible to use "Execute Server-side Code" to get/set/validate values in cells (client-side)?
A: No, not yet. For now, you can only use our JavaScript API to do this.
3
Q: How to trigger "save" from an external button?
A: Here's the code sample (replace "STATIC_ID" below with the static ID of your Grid region):
let ucGrid = $("#ucGrid_STATIC_ID").ucGrid("instance"); ucGrid.save();
For other functions available, please check JavaScript API.