jQWidgets Forums

This topic contains 1 reply, has 2 voices, and was last updated by  Peter Stoev 9 years, 2 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • scrollbar for jqxinput widget ? #82619

    nico86
    Participant

    Hi,

    On my app, I have a button to display a dialog box
    and this action :

    $("#desc").button({ icons: { primary: "ui-icon-help"}});
    	$( "#labeldesc" ).dialog({title:"Help",
    		autoOpen: false,
    		show: {
            duration: 800
    		},
          hide: {
            duration: 800
          },
    	  height: 450,
    	  width: 520
        });
    
    When i click on this button, i have a dialog box with a JqxInput which run correctly
    
    	$( "#desc" ).click(function() {
          $( "#labeldesc" ).dialog( "open" );
                    $("#input").jqxInput({placeHolder: "Enter a word to search a check", height: 20, width: 200, minLength: 2,dropDownWidth: 500, items: 1000, source: contro, theme: 'metro' });
          		return false;   
        });
    

    But my problem is when the number of elements return is too big, the windows is greater that my dialog box. (see screen)
    jqxinput

    Is there a solution to the widget does not overflow of my dialogbox and appears with scrollbar (I want to keep all result and not reduce the items) ?

    Thanks for your help.
    Nicolas.

    scrollbar for jqxinput widget ? #82623

    Peter Stoev
    Keymaster

    Hi nico86,

    If you’re looking for a popup with auto-complete that has scrollbars, then you can use jqxComboBox instead.

    Best Regards,
    Peter Stoev

    jQWidgets Team
    http://www.jqwidgets.com

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.