在我的一个对话框中,我有一个xtype为" pathfield"的字段。根据此字段的值,我想更改"选择框"的选项。 (的xtype ="选择",类型="选择&#34)。
我使用过听众并在事件上添加了一个功能"更改"和" dialogclose" for" pathfield"领域。
我可以调用servlet并发送带有选项的JSON响应,但是,我无法使用这些选项填充选择框。
以下是dialog.xml的代码
<select-product jcr:primaryType="cq:Widget"
fieldDescription="Select Product (Product Details Page)"
fieldLabel="Select Product"
height="{Long}40" key="productPath"
name="./productPath"
style="height:21px"
width="{Long}350"
rootPath="/content/MY_MSM_PATH"
xtype="pathfield">
<listeners jcr:primaryType="nt:unstructured"
change="function(){ var selectBox=$('select[name=features]');
$.getJSON('/bin/featuresservlet?path=' + this.value,
function(jsonData){
$.each(jsonData, function(i,data){
$('<option>').val(data.value).text(data.name).appendTo('select[name=features]');
});
}); }"
dialogclose="function(){
var selectBox=$('select[name=features]');
$.getJSON('/bin/featuresservlet?path=' + this.value, function(jsonData){
$.each(jsonData, function(i,data){
$('<option>').val(data.value).text(data.name).appendTo('select[name=features]');
});
}); }" />
</select-product>
<features jcr:primaryType="cq:Widget"
fieldLabel="Select Features:"
key="features"
name="./features"
type="select"
xtype="selection" />
答案 0 :(得分:4)
您可以使用选择xtype的set选项方法。将您的监听器修改为类似
的内容dialogclose="function(pathfield){
var dialog = pathfield.findParentByType('dialog');
var selectBox = dialog.findByType('selection')[0]; //assuming this is the only selection you have
$.getJSON('/bin/featuresservlet?path=' + this.value, function(jsonData){
selectBox.setOptions(jsonData);
selectBox.doLayout(flase,false);
}); }"
servlet返回的数据必须采用以下格式:
[
{
"value": "valueOfOption1",
"text": "textOfOption1"
},
{
"value": "valueOfOption2",
"text": "textOfOption2"
}
]
参考:http://dev.day.com/docs/en/cq/5-6/widgets-api/index.html?class=CQ.form.Selection