0

我有一个在对话框中打开的表单。其中一个字段具有自动完成功能。所有字段都已构建,服务器值存储在其中以预填写表单。

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中选择新选项后,来自服务器 ( ) 的值不会更新。

希望这是有道理的。

4

1 回答 1

1

您的 myinput8 语句中有一个小语法错误:

$myinput8 = jQuery("<input id='EditSelect2' name='add_path' value='" +path + " />");

应该:

$myinput8 = jQuery("<input id='EditSelect2' name='add_path' value='" +path + "' />");

请注意末尾的额外单引号。

于 2013-06-22T21:24:06.227 回答