Skip to content

Commit

Permalink
Now activeIndex can be used the EL expressions again.
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanrauh committed Jan 17, 2016
1 parent 55bcd3d commit 6b7d643
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public void encodeBegin(FacesContext context, UIComponent component) throws IOEx
final String hiddenInputFieldID = clientId.replace(":", "_") + "_activeIndex";
writer.writeAttribute("name", hiddenInputFieldID, "name");
writer.writeAttribute("id", hiddenInputFieldID, "id");
writer.writeAttribute("value", tabView.getActiveIndex(), "value");
writer.writeAttribute("value", "", "value");
writer.endElement("input");

writer.startElement("div", tabView);
Expand Down

0 comments on commit 6b7d643

Please sign in to comment.