I have a data entry page with two grids representing one to many relationship. I have attached an onRowSelect event to the first grid to handle reloading of data in the second grid. Is it possible to prevent user from selecting a different row in the parent table while the child table is in the process of being reloaded?
I found a work around by using layout cell’s progressOn() and progreeOff() methods. I invoke progressOn method on the first grid’s cell in the onRowSelect handler and progressOff in the second grid’s onXLE handler. Please advise if there is a better way to do it.