Skip to content

Commit

Permalink
partial solution to #135 (update region not resolved with UIRepeat bl…
Browse files Browse the repository at this point in the history
…ocks)
  • Loading branch information
stephanrauh committed Aug 7, 2015
1 parent dca62e3 commit d39d4dc
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
import javax.faces.event.ActionEvent;
import javax.faces.render.FacesRenderer;
import net.bootsfaces.C;
import net.bootsfaces.expressions.ExpressionResolver;
import net.bootsfaces.render.A;
import net.bootsfaces.render.CoreRenderer;
import net.bootsfaces.render.H;
Expand Down Expand Up @@ -149,7 +150,7 @@ private void generateOnClickHandler(FacesContext context, CommandButton componen
String type, boolean ajax) throws IOException {
StringBuilder cJS = new StringBuilder(150); // optimize int

String render = component.getUpdate();
String render = ExpressionResolver.getComponentIDs(context, component, component.getUpdate());
String complete = component.getOncomplete();
// 3) is it a Submit?
if (!type.equals(A.RESET) && !type.equals(A.BUTTON)) {
Expand Down

0 comments on commit d39d4dc

Please sign in to comment.