Extend bootstrap select plugin

1.4k Views Asked by At

In my previous question I was talking about the bootstrap select plugin where the destroy method is doing something that I don't want. I edit manually the plugin but this is not a good practice.

Bootstrap select destroy removes the original select from DOM

I would like to extend the plugin with a custom method so that it can do exactly wat I want.

I extend the plugin with folloing method:

$.extend(true, $.fn.selectpicker.prototype, {
    customRemove: function () {
        this.$newElement.remove();
        this.$element.show();
    }
});

This is located in another js file under the bootstrap select script file.

How do I call this new method? I tried the following without success:

$('select#begin' + _week + _day).selectpicker("customRemove");

or

$('select#begin' + _week + _day).selectpicker().customRemove();

Am I missing something?

The original method of the destroy function in the bootstrap select plugin:

remove: function () {
  this.$newElement.remove();
  this.$element.show();
}
2

There are 2 best solutions below

0
On

I think, you have the correct answer in other your question:
https://stackoverflow.com/a/31852632/4928642

jQuery.fn.selectpicker.Constructor.prototype.customRemove = function () {
  this.$newElement.remove();
  this.$element.show();
};

then

$smth.selectpicker("customRemove");
0
On

You could proxy the function with your own function using a mixin closure, like:

(function()
{
  // grab a reference to the existing remove function
  var _remove = $.fn.selectpicker.prototype.remove;

  // anything declared in here is private to this closure
  // so you could declare helper functions or variables
  // ...

  // extend the prototype with your mixin
  $.extend(true, $.fn.selectpicker.prototype, 
  {
    // this will replace the original $.fn.selectpicker.prototype.remove function
    remove: function () 
    {
      // call whatever code you want here
      // ...
      // ... like grabbing the DOM element
      // ...
      // then call the original remove function
      _remove.apply(this, arguments);

      // then call whatever you want here, like re-adding the DOM element
    }
  });
}());

Note: this will overweite the prototype for all Bootstrap selects and modify its behaviour.