与其像上面那样创建一个顶点组件,为什么我们不像下面那样创建一个复选框组件
public Boolean chkBox{
get{
if(myMap.get(myList[i]) == true){
return true;
}
return false;
}
set;
在 Visualforce 页面上,我们可以编写如下
<apex:outputLabel value="Check Box Label"/> <apex:inputCheckBox value="{!chkBox}"><apex:actionSupport event="onclick" rerender="TheBlock" status="showCredentialing" />
由于 VF 错误没有行号,因此错误也可能是由于视觉力页面上出现的其他一些输出字段错误。
我试图在visualforce页面中实现一个独立的Component.Apex.inputCheckbox。请尝试以下代码
控制器
public class testcontroller {
public Component.Apex.inputCheckbox chkBox { get; set; }
public Component.Apex.inputCheckbox dyCheckbox;
public PageReference chkBox3() {
this.chkBox = new Component.Apex.inputCheckbox();
System.debug('Here is Test');
this.chkBox.value = true;
return null;
}
public String chkBox2 { get; set; }
public testcontroller(){
this.chkBox2 = 'false';
}
public Component.Apex.inputCheckbox getInputCheckbox() {
Component.Apex.inputCheckbox dyCheckbox = new Component.Apex.inputCheckbox();
dyCheckbox.value = 'true';
return dyCheckbox;
}
}
视觉力量页面
<apex:page controller="testcontroller">
<!-- Begin Default Content REMOVE THIS -->
<h1>Congratulations</h1>
This is your new Page: test
<apex:form >
<apex:outputLabel value="Check Box Label"/>
<apex:inputCheckBox value="{!chkBox2}"/>
<apex:dynamicComponent componentValue="{!InputCheckbox}" />
<apex:commandButton value="sd" action="{!chkBox3}" title="asdf"/>
</apex:form>
<!-- End Default Content REMOVE THIS -->
</apex:page>