0

まず第一に、私はJqueryから始めます、そして私の質問は少し初心者ですが、私は解決策を見つけることができませんでした。公式のコンボボックスの例を入手しました。Jsonソースを使用するように変更しました。しかし、ソースのURLが異なるコンボボックスのインスタンスが2つ必要です。

(ソースを変更するためだけに2番目のコンボボックス関数を作成する必要はないと思います。間違っているかどうか教えてください)

これが私のコードです:

<div id="etape1">
<div class="ui-widget">
    <label>Veuillez selectionner une application: </label>
    <select id="combobox_application">
        <option value="">Select one...</option>
        <option value="Chargement en cours">Chargement en cours</option>

    </select>
</div>

<button id="create-user">Ajouter une application</button>
</div>
<div id="etape2" style="display:none">
<div class="ui-widget">
    <label>Veuillez selectionner un scenario: </label>
    <select id="combobox_scenario">
        <option value="">Select one...</option>
        <option value="ActionScript">ActionScript</option>
        <option value="AppleScript">AppleScript</option>
    </select>
</div>

編集

あなたの助けのためのThx、残念ながらそれは動作しません。私はここにいます:

  • jquery-combobox.jsを入手しました(以下のソース)
  • 私のメインページで、これを手に入れました:

    <script>
    $(function() {
    $('#combobox_application').combobox({
        source: function(req,add) {
            $.ajax({
                url: "?module=gestionApplication&action=getListeApplications",
                dataType:"json",
                success: function(data, textStatus, XMLHttpRequest){
                    alert(data);
                    add(data);
                }
            });
        },
        selected: function(event, ui) {
            $("#etape2").css('display', 'block');
        }
    });
       $('#combobox_scenario').combobox({
        source: function(req,add) {
            $.ajax({
                url: "?module=gestionApplication&action=getListeScenarios",
                dataType:"json",
                success: function(data, textStatus, XMLHttpRequest){
                    alert(data);
                    add(data);
                }
            });
        }
    });
    

jquery-combobox.js:

-

(function( $ ) {
$.widget( "ui.combobox", {
    _create: function() {
        var input,
            self = this,
            select = this.element.hide(),
            selected = select.children( ":selected" ),
            value = selected.val() ? selected.text() : "",
            wrapper = this.wrapper = $( "<span>" )
                .addClass( "ui-combobox" )
                .insertAfter( select );
        input = $( "<input>" )
            .appendTo( wrapper )
            .val( value )
            .addClass( "ui-state-default ui-combobox-input" )
            .autocomplete({
                delay: 0,
                minLength: 0,

                // Need define source in my main js
                //~ source: function( request, response ) {
                    //~ $.ajax({
                        //~ url: "?module=gestionApplication&action=getListeApplications",
                        //~ dataType: "json",

                        //~ success: function( data ) {
                            //~ response( $.map( data, function( item ) {
                                //~ return {
                                    //~ label: item.nom,
                                    //~ value: item.nom,
                                    //~ option: this
                                //~ }
                            //~ }));
                        //~ }
                    //~ });
                //~ },
                select: function( event, ui ) {
                    ui.item.option.selected = true;
                    self._trigger( "selected", event, {
                        item: ui.item.option
                    });
                },
                change: function( event, ui ) {
                    if ( !ui.item ) {
                        var matcher = new RegExp( "^" + $.ui.autocomplete.escapeRegex( $(this).val() ) + "$", "i" ),
                            valid = false;
                        select.children( "option" ).each(function() {
                            if ( $( this ).text().match( matcher ) ) {
                                this.selected = valid = true;
                                return false;
                            }
                        });
                        if ( !valid ) {
                            // remove invalid value, as it didn't match anything
                            $( this ).val( "" );
                            select.val( "" );
                            input.data( "autocomplete" ).term = "";
                            return false;
                        }
                    }
                }
            })
            .addClass( "ui-widget ui-widget-content ui-corner-left" );

        input.data( "autocomplete" )._renderItem = function( ul, item ) {
            return $( "<li></li>" )
                .data( "item.autocomplete", item )
                .append( "<a>" + item.label + "</a>" )
                .appendTo( ul );
        };

        $( "<a>" )
            .attr( "tabIndex", -1 )
            .attr( "title", "Show All Items" )
            .appendTo( wrapper )
            .button({
                icons: {
                    primary: "ui-icon-triangle-1-s"
                },
                text: false
            })
            .removeClass( "ui-corner-all" )
            .addClass( "ui-corner-right ui-combobox-toggle" )
            .click(function() {
                // close if already visible
                if ( input.autocomplete( "widget" ).is( ":visible" ) ) {
                    input.autocomplete( "close" );
                    return;
                }

                // work around a bug (likely same cause as #5265)
                $( this ).blur();

                // pass empty string as value to search for, displaying all results
                input.autocomplete( "search", "" );
                input.focus();
            });
    },

    destroy: function() {
        this.wrapper.remove();
        this.element.show();
        $.Widget.prototype.destroy.call( this );
    }
});
})( jQuery );

しかし、これは機能しません。選択しても問題ありませんが、ソースは何も変更しないようです。

あなたの助けのためにたくさん感謝します!

4

1 に答える 1

1

コードを関数に変換します(別のファイルに格納できます)

次に、関数を呼び出すときにid、url、selectedなどを渡します。

例えば

 $(function() {

    createCombobox('#combobox_application','?module=gestionApplication&action=getListeApplications',
     function(event, ui) { $("#etape2").css('display', 'block');  }
    );

    createCombobox('#combobox_scenario','?module=gestionApplication&action=getListeScenarios')   

  });

編集

私はあなたの問題を理解していると思います。

ページにウィジェットコードを含めました。追加の.jsファイルに含めることができます

これだけが必要です

 $(function() {
   $('#combobox_application').combobox({  
        source: function(req,add) {  
                      $.ajax({  
                        url: "SOME_URL",  
                       dataType:"json",  
                       success: function(data, textStatus, XMLHttpRequest){  
                         add(data);  
                       }  
                   });  

        },  
        select: function(event, ui) {  
                       $("#etape2").css('display', 'block');
        }});  

   $('#combobox_scenario').combobox({  
        source: function(req,add) {  
                      $.ajax({  
                        url: "SOME_URL",  
                       dataType:"json",  
                       success: function(data, textStatus, XMLHttpRequest){  
                         add(data);  
                       }  
                   });  

        }}); 
    });  

外部の.jsファイル参照を含めることを忘れないでください

于 2012-07-23T10:20:51.800 に答える