Create an abstract UI

Create an abstract UI

Hi,

i'm trying to develop my own UI components to do a little framework.

In this way, I'm trying to develop an "abstract" plugin that I'll use later in order to add some specific stuff on each sub-plugin.

Abstract :
  1. (function($) {
  2.     
  3.     $.widget("ui.myAbstract", {
  4.        _create: function() {
  5.             this.element.data("status", "C")
  6.         }
  7.     });
  8. }) (jQuery);

Now, a sub-plugin :

  1. (function($) {
  2.       $.widget("ui.building", $.ui.myAbstract, {
  3.                   _create() {
  4.                         // How to call myAbstract._create() here?
  5.                         // Do some more stuff here
  6.                   }
  7.             }
  8.       });
  9. }) (jQuery);
What I'm trying to do is possible or not?

I don't know how I can call the base function in addition of the plugin base one.

Thanks