if (context instanceof FieldContext) {
Binding binding = (Binding) context.get(Binding.class);
if (binding != null) {
// replace the binding with a wrapped one that ignores postbacks
context.put(Binding.class, new IgnorePostbackBinding(binding));
}
}
// first let subsequent handlers wrap or enrich the binding/operation
chain.proceed();