How to add eyelid field manager to grid field manager.
I have created a grid layout.Now i want to add an eyelid field manager on top of it.
I have been able to add both of them separately but now am unable to use them together.
Following code was used when i wanted to integrate
_eyelidFieldManager.add(grid);
add(_eyelidFieldManager);
How else can this be accomplished?
I have also tried adding this way
grid.add(_eyelidFieldManager);
add(grid);
But what what i get is the eye lid field manager comes below the grid.I want to superimpose the eyelid on top of grid.So that when i click anywhere on the screen of grid,the eyelid opens.Your help will be appreciated.