我正在创建一个虚拟的visualforce页面,其代码是
<apex:page controller="sampleCon">
<apex:form>
<apex:pageMessages id="message" />
<apex:pageBlock>
<apex:pageBlockTable value="{!wrap1}" var="item" id="hello">
<apex:column headerValue="String" value="{! item.x}"></apex:column>
<apex:column headerValue="Action"><apex:commandButton value="{!if(item.i == size-1,'Add','Delete')}" onclick="AddOrDelete({! item.i});" rerender="message"></apex:commandButton></apex:column>
</apex:pageBlockTable>
</apex:pageBlock>
<apex:actionRegion >
<apex:actionFunction name="AddOrDelete" action="{!addElement}" reRender="message,hello">
<apex:param value="" name="fieldName" />
</apex:actionFunction>
</apex:actionRegion>
</apex:form>
</apex:page>
控制器代码是
public class sampleCon {
public List<Wrapper> wrap1{get;set;}
public Integer size{get;set;}
public sampleCon(){
wrap1=new List<Wrapper>();
wrap1.add(new wrapper(0));
size=wrap1.size();
}
public PageReference addElement(){
size=wrap1.size();
System.debug('Hello ji'+Apexpages.currentPage().getParameters().get('fieldName')+'size is'+size);
Integer i=Integer.valueOf(ApexPages.currentPage().getParameters().get('fieldName'));
if(i == size-1)
{
wrap1.add(new wrapper(size));
size++;
}
return null;
}
public class wrapper{
public integer i{get;set;}
public String x{get;set;}
public wrapper(Integer p){
i=p;
}}
}
我正在尝试的是最后一行按钮标签应该是添加,其他按钮标签应该是删除当我按下添加按钮时添加一个新行并且标签应该相应地更改为此我添加行但它没有按预期工作
初始页面截图是 当我按下添加按钮屏幕看起来像这样。 当我再次按下添加按钮屏幕看起来像第一个屏幕截图。我期待当我点击上面屏幕截图中的添加按钮时会再添加一行。谁能告诉我为什么当我点击添加按钮时只显示一行第二个屏幕截图以及如何更正它,当我再次单击屏幕上方的添加按钮时,将再添加一行而不是显示初始屏幕。