Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[riena-dev] Be careful with configureRidgets in afterBind

Just quickly sharing one of my own bugs:

Since configureRidgets() is called from the DefaultBindingManager, I accidentally caused it to be called twice in 3-4 of my examples, where I was calling it from afterBind():

@Override
public void afterBind() {
  super.afterBind();
  configureRidgets();
}

It turns out the method above is unecessary.

Kind regards,
Elias.




Back to the top