我有一个Entity age在下面:
public class Tage implements Serializable {
private int id=0;
private String text="";
private String color=null;
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getText() {
return text;
}
public void setText(String text) {
this.text = text;
}
public String getColor() {
return color;
}
public void setColor(String color) {
this.color = color;
}
}
和下列类别中使用的age列表:
public class Tages implements Serializable {
private int _size = 0;
private List<Tage> _texts = null;
private Tage _tar = null;
private String[] _colors = new String[]{"red", "blue", "pink"};
public Tages() {
}
@PostConstruct
public void init() {
_texts = new ArrayList<Tage>();
}
public void addsTextss() {
Tage _tage = new Tage();
_tage.setColor(_colors[_size]);
_tage.setId(++_size);
get_texts().add(_tage);
}
public void removeText() {
if (_size - 1 <= get_tar().getId()) {
--_size;
}
get_texts().remove(get_tar());
}
public List<Tage> get_texts() {
return _texts;
}
public void set_texts(List<Tage> _texts) {
this._texts = _texts;
}
public int get_size() {
return _size;
}
public void set_size(int _size) {
this._size = _size;
}
public Tage get_tar() {
return _tar;
}
public void set_tar(Tage _tar) {
this._tar = _tar;
}
}
和JSF页面中ages类的使用:
<h:panelGroup layout="block" id="panel_topic" styleClass="panel_topic">
<div class="title_topic">#{msg['tages.title']}</div>
<ui:repeat varStatus="loop" value="#{tages._texts}" var="txt">
<div class="tage">
<p:commandLink type="button" styleClass="close" aria-hidden="true"
action="#{tages.removeText}" update="@(.panel_topic)">
<f:setPropertyActionListener target="#{tages._tar}" value="#{txt}"/>
<h:outputText escape="false" value="&times;"/>
</p:commandLink>
<h:inputText id="text" styleClass="text" value="#{tages._texts[loop.index].text}"></h:inputText>
<div class="color_item" style="background-color:#{txt.color}"></div>
</div>
</ui:repeat>
<p:commandButton id="add_item" styleClass="add_item" action="#{tages.addsTextss}"
value="#{msg['tages.addItem']}"
update="@(.panel_topic)">
</p:commandButton>
</h:panelGroup>
在运行时,当用户更改inputText上的文本未设置为bean时,如果刷新页面,则清除inputText。
如何解决这个问题?
试试这个,
<c:forEach var="txt" items="#{tages._texts}" varStatus="loop">
<div class="tage">
<p:commandLink type="button" styleClass="close" aria-hidden="true"
action="#{tages.removeText}" update="@(.panel_topic)">
<f:setPropertyActionListener target="#{tages._tar}" value="#{txt}"/>
<h:outputText escape="false" value="&times;"/>
</p:commandLink>
<h:inputText id="text" styleClass="text" value="#{tages._texts[loop.index].text}"></h:inputText>
<div class="color_item" style="background-color:#{txt.color}"></div>
</div>
</c:forEach>