EasyUI Forum

General Category => News => Topic started by: stworthy on November 03, 2014, 01:36:15 AM



Title: jQuery EasyUI 1.4.1 Release
Post by: stworthy on November 03, 2014, 01:36:15 AM
We are pleased to announce the availability of jQuery EasyUI 1.4.1.

  • Some bugs in previous version are fixed.
  • Some new properties and methods are added.
  • The 'cloneFrom' method is added in date components.
  • ...

Please visit http://www.jeasyui.com/download/v141.php to see more details.


Title: Re: jQuery EasyUI 1.4.1 Release
Post by: aswzen on November 05, 2014, 09:35:42 PM
 thank you for your great work.. :)


Title: Re: jQuery EasyUI 1.4.1 Release
Post by: A-K on November 10, 2014, 08:09:09 AM
Thank you!


Title: Re: jQuery EasyUI 1.4.1 Release
Post by: Juan Antonio Martínez on November 18, 2014, 12:59:57 AM
Good Job, thanks!

So I assume that your patch for 1.4.0 is no longer needed ¿right?
http://www.jeasyui.com/download/downloads/jquery-easyui-1.4-patch.zip

Juan Antonio


Title: Re: jQuery EasyUI 1.4.1 Release
Post by: stworthy on November 18, 2014, 01:21:32 AM
When using version 1.4.1, the patch for version 1.4 is no longer needed.


Title: Re: jQuery EasyUI 1.4.1 Release
Post by: aswzen on December 30, 2014, 09:35:53 PM
is this feature http://www.jeasyui.com/forum/index.php?topic=4115.msg9789#msg9789 (http://www.jeasyui.com/forum/index.php?topic=4115.msg9789#msg9789) already supported?


Title: Re: jQuery EasyUI 1.4.1 Release
Post by: stworthy on December 31, 2014, 12:56:09 AM
The 'onBeforeSelect' event will be supported in next version(1.4.2). To get this event to work in version 1.4.1, please download the patch from http://www.jeasyui.com/download/downloads/jquery-easyui-1.4.1-patch.zip.
Code:
$('#tt').tabs({
onBeforeSelect:function(title,index){
if (index==1){return false}
}
})


Title: Re: jQuery EasyUI 1.4.1 Release
Post by: aswzen on April 23, 2015, 11:03:39 PM
i can not find it on documentation about "onBeforeSelect" for tab , maybe you forget this one :)

but it seems not working..
tries to put in console log, but no one output out..

Code:
                onBeforeSelect: function(title,index){
                    console.log(title);
                    console.log(index);
                }


Title: Re: jQuery EasyUI 1.4.1 Release
Post by: stworthy on April 24, 2015, 12:40:33 AM
Please use the panel's 'onBeforeOpen' event instead.
Code:
<script>
    function onBeforeOpen(){
        var title = $(this).panel('options').title;
        console.log('before opening '+title)
        if (title == 'Help'){
            return false;
        }
    }
</script>
<div class="easyui-tabs" style="width:700px;height:250px" id="tt">
    <div title="About">
    </div>
    <div title="My Documents" data-options="onBeforeOpen:onBeforeOpen">
    </div>
    <div title="Help" data-options="iconCls:'icon-help',closable:true,onBeforeOpen:onBeforeOpen">
    </div>
</div>


Title: Re: jQuery EasyUI 1.4.1 Release
Post by: vencelylalas on May 04, 2015, 02:17:49 AM
thanks for a great news..now a new and better works can be accomplish right away


Title: Re: jQuery EasyUI 1.4.1 Release
Post by: vencelylalas on May 06, 2015, 07:57:09 PM
Thank u also