Visualizzazione dei risultati da 1 a 2 su 2
  1. #1
    Utente di HTML.it
    Registrato dal
    Jul 2005
    Messaggi
    509

    aiuto per modificare jquery ui combobox

    ciao a tutti,
    sto cercando di modificare lo script per un combobox associato a tutti gli elemen che iniziano con un dato id.

    la modifica che vorrei apportare è associare all'evento select, la modifica di un menù a tendina successivo.

    posto il codice per esser più chiari.

    quello che non riesco ad ottenere è l'id completo del select che ha l'idi che inizia con "rsclie_" o indicare di modificare il select successivo.

    ho tentato con $(this).attr('id');
    con .next() con .parent().next() ma alla fine otengo sempre "undefinied"

    un aiutino?


    codice:
    (function( $ ) {
    	$.widget( "ui.combobox", {
    		_create: function() {
    			var input,
    				self = this,
    				select = this.element.hide(),
    				selected = select.children( ":selected" ),
    				value = selected.val() ? selected.text() : "",
    				wrapper = $( "<span>" )
    					.addClass( "ui-combobox" )
    					.insertAfter( select );
    			input = $( "<input>" )
    				.appendTo( wrapper )
    				.val( value )
    				.addClass( "ui-input" )
    				.autocomplete({
    					delay: 0,
    					minLength: 0,
    					source: function( request, response ) {
    						var matcher = new RegExp( $.ui.autocomplete.escapeRegex(request.term), "i" );
    						response( select.children( "option" ).map(function() {
    							var text = $( this ).text();
    							if ( this.value && ( !request.term || matcher.test(text) ) )
    								return {
    									label: text.replace(
    										new RegExp(
    											"(?![^&;]+;)(?!<[^<>]*)(" +
    											$.ui.autocomplete.escapeRegex(request.term) +
    											")(?![^<>]*>)(?![^&;]+;)", "gi"
    										), "$1" ),
    									value: text,
    									option: this
    								};
    						}) );
    					},
    					select: function( event, ui ) {
    						ui.item.option.selected = true;
    						self._trigger( "selected", event, {
    							item: ui.item.option
    						});
    							
    						/* inserire funzione per modifica select successivo*/
    					},
    					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;
    							}
    						}
    					}
    				})
    			input.data( "autocomplete" )._renderItem = function( ul, item ) {
    				return $( "[*]" )
    					.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-button-icon" )
    				.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 );
    codice:
    //CODICE HTML RIPULITO 
    .....
    <tr>
       <td >
          <select id="rsclie_'.$y.'" >
                 .......
           </select>
       </td>
       <td>
     <select id="codprg_'.$y.'"  >
        .........
       </select>
       </td>
    .....

  2. #2
    Utente di HTML.it
    Registrato dal
    Jul 2005
    Messaggi
    509
    sto continuando a fare prove per cercare di capire come risolvere.
    ma purtroppo trovo sempre soluzioni con ID fisso.

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.