EasyUI Forum
March 28, 2024, 04:48:27 AM *
Welcome, Guest. Please login or register.

Login with username, password and session length
News:
 
   Home   Help Search Login Register  
Pages: [1]
  Print  
Author Topic: jQuery EasyUI 1.4.1 Release  (Read 85048 times)
stworthy
Administrator
Hero Member
*****
Posts: 3581


View Profile Email
« 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.
Logged
aswzen
Sr. Member
****
Posts: 287


Indonesian

aswzen
View Profile WWW Email
« Reply #1 on: November 05, 2014, 09:35:42 PM »

 thank you for your great work.. Smiley
« Last Edit: November 05, 2014, 09:53:17 PM by Agus Sigit Wisnubroto » Logged

Regards,
Sigit

- Indonesian jEasyUI Facebook page : https://www.facebook.com/groups/jeasyuiid/
A-K
Full Member
***
Posts: 122


View Profile WWW
« Reply #2 on: November 10, 2014, 08:09:09 AM »

Thank you!
Logged
Juan Antonio Martínez
Jr. Member
**
Posts: 68



View Profile
« Reply #3 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
Logged
stworthy
Administrator
Hero Member
*****
Posts: 3581


View Profile Email
« Reply #4 on: November 18, 2014, 01:21:32 AM »

When using version 1.4.1, the patch for version 1.4 is no longer needed.
Logged
aswzen
Sr. Member
****
Posts: 287


Indonesian

aswzen
View Profile WWW Email
« Reply #5 on: December 30, 2014, 09:35:53 PM »

is this feature http://www.jeasyui.com/forum/index.php?topic=4115.msg9789#msg9789 already supported?
Logged

Regards,
Sigit

- Indonesian jEasyUI Facebook page : https://www.facebook.com/groups/jeasyuiid/
stworthy
Administrator
Hero Member
*****
Posts: 3581


View Profile Email
« Reply #6 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}
}
})
Logged
aswzen
Sr. Member
****
Posts: 287


Indonesian

aswzen
View Profile WWW Email
« Reply #7 on: April 23, 2015, 11:03:39 PM »

i can not find it on documentation about "onBeforeSelect" for tab , maybe you forget this one Smiley

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);
                }
« Last Edit: April 23, 2015, 11:21:13 PM by aswzen » Logged

Regards,
Sigit

- Indonesian jEasyUI Facebook page : https://www.facebook.com/groups/jeasyuiid/
stworthy
Administrator
Hero Member
*****
Posts: 3581


View Profile Email
« Reply #8 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>
Logged
vencelylalas
Newbie
*
Posts: 7


View Profile WWW Email
« Reply #9 on: May 04, 2015, 02:17:49 AM »

thanks for a great news..now a new and better works can be accomplish right away
Logged
vencelylalas
Newbie
*
Posts: 7


View Profile WWW Email
« Reply #10 on: May 06, 2015, 07:57:09 PM »

Thank u also
Logged
Pages: [1]
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!