tags:

views:

3

answers:

1

I am developing eclipse plugin and I want to create jface Text boxes in loop dynamically. is there a way of doing it in eclipse plugin developement? do I need to redraw or something after I add Text boxes dynamically

A: 

You might need to call Composite.layout() on the parent composite of the freshly created control, depending on how you write the code.

drstupid