EasyUI Forum
March 28, 2024, 12:55:45 PM *
Welcome, Guest. Please login or register.

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


View Profile Email
« on: April 22, 2018, 05:43:13 AM »

We are pleased to announce the availability of jQuery EasyUI 1.5.5.

  • Some bugs in previous version are fixed.
  • Some new properties and methods are added.
  • Add 'showEvent' and 'hideEvent' properties to the menubutton plugin.
  • The 'markedbox' plugin is added.
  • ...

Please visit http://www.jeasyui.com/download/v155.php to see more details.
Logged
fgendorf
Newbie
*
Posts: 24


View Profile Email
« Reply #1 on: April 26, 2018, 09:27:09 AM »

Hi, why the size of fonts and borders, padding, etc are increased in this last version?
Logged
stworthy
Administrator
Hero Member
*****
Posts: 3581


View Profile Email
« Reply #2 on: April 26, 2018, 06:06:42 PM »

The bigger layout makes the user feel more comfortable. It can improve the user experience. You can still use the theme builder tool to set the font-size you want.
Logged
l.scorcia
Newbie
*
Posts: 3


View Profile
« Reply #3 on: May 11, 2018, 12:53:26 AM »

Can you please update the nuget package at https://www.nuget.org/packages/EasyUI/ ? It is stuck at version 1.4.5.

Thanks in advance
Logged
iklotzko
Newbie
*
Posts: 15


View Profile Email
« Reply #4 on: September 21, 2018, 08:19:07 AM »

We have a fairly serious issue with this release... The sizing has changed, significantly. Yes, the font-size can be reduced, but it's so much more. While I appreciate efforts to make this library more appealing, it can't be done at the expense of backwards compatibility.

Yes, I could take the next day meticulously going through the CSS and modifying various items.

Yes, I could override the javascript functions.

But, that is not the point, it shouldn't be this difficult. I certainly hope the entire look of the widget library can be reverted with overrides and extensions.

Please try and provide another option. We are using your library extensively in a fairly large intranet application and the customer is extremely disappointed.

Please advise or provide some workaround.
Logged
stworthy
Administrator
Hero Member
*****
Posts: 3581


View Profile Email
« Reply #5 on: September 22, 2018, 01:13:56 AM »

You can custom the theme font size.

1. Open the theme builder tool https://www.jeasyui.com/themebuilder/index.php.

2. Set the ‘template-version’ to 1 and change the ‘font-size’ to 12px.

3. Switch to the ‘CSS’ panel on the left side.

4. Copy the generated css code and save them to the ‘easyui.css’ file.

The older themes can also be downloaded from https://jeasyui.com/extension/themes_older.php
Logged
iklotzko
Newbie
*
Posts: 15


View Profile Email
« Reply #6 on: September 23, 2018, 09:02:13 AM »

Fantastic, thanks for the help on this!

Could you document these and other items somewhere? I had a hunch it could be the template but there was no documentation anywhere that referred to what templates were with what versions.

Thank you again for the help.
Logged
pratikk
Newbie
*
Posts: 49


View Profile Email
« Reply #7 on: January 21, 2020, 11:50:14 PM »

After I upgraded to vers 1.9  I custom the theme font size as you have written below.

You can custom the theme font size.
1. Open the theme builder tool https://www.jeasyui.com/themebuilder/index.php.
2. Set the ‘template-version’ to 1 and change the ‘font-size’ to 12px.
3. Switch to the ‘CSS’ panel on the left side.
4. Copy the generated css code and save them to the ‘easyui.css’ file.
The older themes can also be downloaded from https://jeasyui.com/extension/themes_older.php

But this time there is a problem with the grid scroll bar. On the right side after the scroll bar there is a space. How can I get rid of it ?
Logged
stworthy
Administrator
Hero Member
*****
Posts: 3581


View Profile Email
« Reply #8 on: January 22, 2020, 09:24:33 AM »

This issue has been fixed. Please use a lower version of jQuery such as 1.9.x, or re-generate or re-download the themes from the site.
Logged
pratikk
Newbie
*
Posts: 49


View Profile Email
« Reply #9 on: January 22, 2020, 11:03:29 AM »

When  I re generate and download the default theme for version 1 and font-size 12 then as seen on the picture happens . But the scroll works properly. I found out that this is due to the code below

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

If I erase these lines  then the scroll on the right is not working properly, but the others are normal.
If I add these lines then the scroll on the right is working properly but other things go wrong as in the picture.

As seen on the picture the header and footer height is narrow

I am using chrome browser and I found that

  -webkit-box-sizing: border-box;

the line above is making the problem
« Last Edit: January 22, 2020, 11:10:52 AM by pratikk » Logged
stworthy
Administrator
Hero Member
*****
Posts: 3581


View Profile Email
« Reply #10 on: January 23, 2020, 06:08:32 AM »

Please look at this example http://code.reloado.com/oqowux/edit#preview. The head of dialog displays well in chrome browser.
Logged
pratikk
Newbie
*
Posts: 49


View Profile Email
« Reply #11 on: January 23, 2020, 07:54:32 AM »

I am using easyui-draggable everywhere. all of the Headers and footers have the same problem.

It is almost impossible for me to change all of the code.

    <div id="carifis_list" class="easyui-draggable" data-options="handle:'#carifislist_header',edge:10">
        <div id="carifislist_header" class="header"></div>
        <div class="mainbody">
Logged
pratikk
Newbie
*
Posts: 49


View Profile Email
« Reply #12 on: January 23, 2020, 08:00:53 AM »

Is there a way to change height of  header and footer of easyui-draggable ?
In your example header is also narrower than the older style that I use
« Last Edit: January 23, 2020, 08:35:52 AM by pratikk » Logged
pratikk
Newbie
*
Posts: 49


View Profile Email
« Reply #13 on: January 23, 2020, 08:19:33 AM »

The problem is the lines below

* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

Logged
pratikk
Newbie
*
Posts: 49


View Profile Email
« Reply #14 on: January 23, 2020, 01:10:56 PM »

I used older version of jquery and also I used vers 1.5.2  version's  easyui.css file. With these two changes. It is working as before. Only number spinner's spinbutton is not showing.

Pls make some changes so we can use the new versions backward compatible.
Logged
Pages: [1] 2
  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!