the0forge / sp

GNU General Public License v3.0
0 stars 1 forks source link

jQuery Dialog Extend #14

Closed r31gnf1r3 closed 10 years ago

r31gnf1r3 commented 10 years ago

https://github.com/ROMB/jquery-dialogextend

To be added to project. To be used on main cruds. Extension of jQuery Dialog UI.

See here for working example:

http://jsbin.com/ehagoy/154

zvadym commented 10 years ago

great staff

r31gnf1r3 commented 10 years ago

Have a look again. It is to max/min windows etc.

r31gnf1r3 commented 10 years ago

Put some broken commits into the master, have a look. cheers mate.

https://github.com/the0forge/sp/commit/5f51aaa6d7b8219756d54c82f4776510ee3c8394

r31gnf1r3 commented 10 years ago

Example of use from jsbin:

        .dialogExtend({
        "closable" : true,
        "maximizable" : true,
        "minimizable" : true,
        "collapsable" : true,
        "dblclick" : "collapse",
        "titlebar" : "transparent",  
        "minimizeLocation" : "right",
        "icons" : {
          "close" : "ui-icon-circle-close",
          "maximize" : "ui-icon-circle-plus",
          "minimize" : "ui-icon-circle-minus",
          "collapse" : "ui-icon-triangle-1-s",
          "restore" : "ui-icon-bullet"
        },
        "load" : function(evt, dlg){ alert(evt.type); },
        "beforeCollapse" : function(evt, dlg){ alert(evt.type); },
        "beforeMaximize" : function(evt, dlg){ alert(evt.type); },
        "beforeMinimize" : function(evt, dlg){ alert(evt.type); },
        "beforeRestore" : function(evt, dlg){ alert(evt.type); },
        "collapse" : function(evt, dlg){ alert(evt.type); },
        "maximize" : function(evt, dlg){ alert(evt.type); },
        "minimize" : function(evt, dlg){ alert(evt.type); },
        "restore" : function(evt, dlg){ alert(evt.type); }
        });
zvadym commented 10 years ago

@r31gnf1r3 of course I have seen this

r31gnf1r3 commented 10 years ago

understood.

r31gnf1r3 commented 10 years ago

image