primefaces / primeui

Rich set of javascript-css only widgets
http://www.primefaces.org/primeui
278 stars 125 forks source link

p-picklist -- filterMatchMode unimplemented #260

Open ensemblebd opened 7 years ago

ensemblebd commented 7 years ago

line # 2371. filterMatchMode: this.filtermatchmode,

created: function() {
                var element = $(this),
                itemTemplate = element.children('template'),
                $this = this;

                element.children('select').wrapAll('<div></div>');
                this.xtag.container = element.children('div');

                $(this.xtag.container).puipicklist({
                    effect: this.effect||'fade',
                    effectSpeed: this.effectspeed||'fast',
                    sourceCaption: this.sourcecaption,
                    targetCaption: this.targetcaption,
                    showSourceControls: this.showsourcecontrols,
                    showTargetControls: this.showtargetcontrols,
                    filter: this.filter,
                    filterMatchMode: this.filtermatchmode,
                    responsive: this.responsive,
                    filterFunction: this.filterfunction ? PUI.resolveObjectByName(this.filterfunction): null,
                    dragdrop: this.dragdrop ? JSON.parse(this.dragdrop) : true,
                    template: itemTemplate.length ? itemTemplate : null,
                    transfer: this.ontransfer ? function(event, param) {PUI.executeFunctionByName($this.ontransfer, param);} : null
                });
            }

easy fix. you want a pull request or?