我正在创建一个Android应用程序,其中我已经集成了salesforce SDK,在salesforce自定义对象中,我有两个选项列表(category__c& sub_category__c)如何根据所选的类别值过滤sub_category_ c salesforce中的/ em> _c。
答案 0 :(得分:0)
为category__c选项列表制作onchange事件,该事件将按标准sub_category__c进行过滤。
<apex:inputField value="{!category__c}" >
<apex:actionSupport event="onchange" rerender="subCat">
</apex:inputField>
<apex:selectList value="sub_category__c" id="subCat">
<apex:selectOptions value="{!filteredSubCategories}" />
</apex:selectList>
控制器上的位置
public void getFilteredSubCategories(){
public List<SelectOption> result = new List<SelectOption>();
for(SelectOption so : allSubCategories){ // dont forget to init allSubCategories in constructor
if(someCriteriaMet) { // add logic
result.add(so)
}
}
return result;
}