Skip to main content



      Home
Home » Eclipse Projects » Nebula » Disposing off the GridEditor
Disposing off the GridEditor [message #585713] Thu, 25 October 2007 06:55
Eclipse UserFriend
Hi

I am adding a GridEditor to each cell of the Grid whenever that particular
cell is clicked as in the code...

expectedPeaksGrid.addMouseListener(new MouseAdapter()
{
Text textControl;

GridItem item1;

public void mouseDown(MouseEvent r)
{
if (expectedPeaksGrid.getCellSelectionCount() != 0)
{
Point p1 = expectedPeaksGrid.getCellSelection()[0];

gridEditor = new GridEditor(expectedPeaksGrid);
textControl = new Text(expectedPeaksGrid, SWT.NONE);
textControl.setText(" ");
textControl.pack();
gridEditor.grabHorizontal = true;
gridEditor.horizontalAlignment = SWT.FILL;
gridEditor.setEditor(textControl, expectedPeaksGrid
.getItem(p1.y), p1.x);
}

}
});

Now I want this grideditor to be disposed as soon as the focus shifts from
the cell that is being edited..

Can anybody suggest how to accomplish this ..

Thanks
Ramya
Previous Topic:[CompositeTable] Non-Native Re sizable Header
Next Topic:Grid : When Headers meet Footers
Goto Forum:
  


Current Time: Mon Jul 07 23:08:24 EDT 2025

Powered by FUDForum. Page generated in 0.06298 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top