jQWidgets Forums

jQuery UI Widgets Forums Grid Checkbox filtering issue

This topic contains 1 reply, has 2 voices, and was last updated by  Christopher 8 years, 4 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • Checkbox filtering issue #88964

    ettemlevest
    Participant

    Hi jQWidgets team!

    I’m using jqxgrid (in the v4.3.0 package) with server side paging, filtering, sorting and trying to use a dropdownlist for a column filter with the code below:

    
    createfilterwidget: function (column, columnElement, widget) {
    	var source = {
    		url: 'grid/megbizasok.php',
    		type: 'POST',
    		data: { pluck: 'felvevo_nev' },
    		datatype: 'json',
    		datafields: [
    			{ name: 'felvevo', type: 'int' },
    			{ name: 'felvevo_nev', type: 'string' }
    		],
    		id: 'felvevo',
    	};
    
    	var dataAdapter = new $.jqx.dataAdapter(source);
    
    	widget.jqxDropDownList({
    		source: dataAdapter,
    		displayMember: 'felvevo_nev',
    		valueMember: 'felvevo_nev',
    	});
    }
    

    Everything works fine except one strange behaviour (example gif): all four list elements shows up but the first one works as if it was a “(Select all)” like item in the normal filterrow dropdowns. Am i missing a dropdownlist option or where do i went wrong?

    Best Regards,
    Imre

    Checkbox filtering issue #88988

    Christopher
    Participant

    Hi ettemlevest,

    Please share the rest of the code along with the jqxGrid initialization so we can investigate thoroughly.

    Best Regards,
    Christopher

    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.