Closed GoogleCodeExporter closed 8 years ago
Users can now extend the abstract class TriggerField and impelment the
onTriggerClick(..) method to build custom TriggerField's. For example :
public class LookupField extends TriggerField {
private LayoutDialog dialog;
public LookupField() {
}
public LookupField(TriggerFieldConfig config) {
super(config);
}
protected void onTriggerClick(EventObject event) {
if (dialog == null) {
dialog = new LayoutDialog(
new LayoutDialogConfig() {
{
setWidth(400);
setHeight(200);
}
}, new LayoutRegionConfig());
}
dialog.show();
}
}
Original comment by sanjiv.j...@gmail.com
on 2 Oct 2007 at 11:32
With the example above, the dialog now shows, however if I use this
TriggerField as
the editor of a grid cell, the grid stops editing the cell as soon as I click
anywhere in the dialog. Any suggestions?
Original comment by pkonigsb...@unica.com
on 28 Jan 2008 at 6:57
I'm struggling with the same issue. It seems we're only part way to actually
implementing a real TriggerField as a ComboBox extension.
ComboBox will close if you blur from the Field part, but I've had no success
binding
an event to onBlur for my TriggerField. Of course, if I got that part working,
but it
kept on turning off editing of a cell/field when I move focus to the dialog,
then
I'd have other problems.
Was TriggerField only intended to work with model dialogs that cover the page?
I'm
trying to get it to do an in-place grid+checkbox mashup.
Original comment by brian.du...@gmail.com
on 3 Jul 2008 at 11:29
Original issue reported on code.google.com by
intern...@gmail.com
on 21 Aug 2007 at 3:24