Hi Experts,
I am using SAP MII 14.0 SP04 version. I have a scenario where I am creating a Report using an I5Grid. Based on some selection parameters on my web page, I want I5Grid Data to be refeshed.
Code:
var GridA = new com.sap.xmii.grid.init.i5Grid('UIGridPath', 'Query');
GridA.setGridWidth("1550px");
GridA.setGridHeight("800px");
GridA.draw("GridA");
I tried passing parameter to this grid as follows:
Grid.getQueryObject().setParam("1", Value);
Grid.getQueryObject().setParameter("1", Value);
GridA.refresh; or GridA.Update(true);
But grid data does not get refresh. Need to know, if this is a bug in SAP MII 14.0 or if I am doing some mistake in passing these details.
Appreciate your help with this.