我有一个在对话框中打开的表单。其中一个字段具有自动完成功能。构建所有字段并将服务器值存储在其中以预填表单。
var mydiv = jQuery("#editform");
var $myform = jQuery("<form id='EditForm' method='post' action='index.php?option=com_component&task=edit'></form>");
...
var $mylabel10 = jQuery("<label for='EditSelect'>A label</label>");
var $myinput9 = jQuery("<input id='EditSelect' name='EditSelect' type='text' />");
var $mylabel9 = jQuery("<label for='EditSelect2'>Another label</label>");
var $myinput8 = jQuery("<input id='EditSelect2' name='add_path' value='" +path + "' />"); //path is a value passed in from the server
$myform.append(... $mylabel10, $myinput9, $mylabel9, $myinput8);
mydiv.append($myform);
//autocomplete code - order is important to have autocomplete go outside dialog
var available = [
{ label : 'foo', value : 'bar' },
{ label : 'xyz', value : 'abc' },
...
];
jQuery( "#EditSelect", mydiv ).autocomplete({
source: available,
focus : function(){ return false; }
})
.on( 'autocompleteselect', function( e, ui ){
var t = jQuery(this),
details = jQuery('#EditSelect2'),
label = ( e.type == 'autocompleteresponse' ? ui.content[0].label : ui.item.label ),
value = ( e.type == 'autocompleteresponse' ? ui.content[0].value : ui.item.value );
t.val( label );
details.val( value ); //doesn't update the form here?
return false;
});
// get reference to autocomplete element
var autoComplete = jQuery("#EditSelect", mydiv).autocomplete("widget");
var dialogOpts = {
modal: true,
autoOpen: true,
resizable: false,
width: 525,
height: 'auto',
title: 'Edit settings'
};
mydiv.dialog(dialogOpts);
autoComplete.insertAfter(mydiv.parent());
在此编辑对话框中是一个自动完成,选中后应更新其他输入字段(#EditSelect2
)。目前#EditSelect2具有来自服务器的值(在变量path
中)。
当从自动填充中选择新值时,我希望表格会因为此代码而更新:details.val( value );
。现在,自动完成工作正常,但在自动完成中选择新选项后,服务器(path
)的值不会更新。
希望这是有道理的。
答案 0 :(得分:1)
myinput8语句中存在一个小的语法错误:
$myinput8 = jQuery("<input id='EditSelect2' name='add_path' value='" +path + " />");
应该是:
$myinput8 = jQuery("<input id='EditSelect2' name='add_path' value='" +path + "' />");
请注意最后的额外单引号。