EasyUI Forum

General Category => News => Topic started by: stworthy on December 13, 2016, 08:18:42 AM



Title: jQuery EasyUI 1.5.1 Release
Post by: stworthy on December 13, 2016, 08:18:42 AM
We are pleased to announce the availability of jQuery EasyUI 1.5.1.

  • Some bugs in previous version are fixed.
  • Some new properties and methods are added.
  • The 'cls' property is available to add a custom style to textbox.
  • The tagbox plugin is added.
  • ...

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


Title: Re: jQuery EasyUI 1.5.1 Release
Post by: andyj on December 18, 2016, 02:22:22 AM
Tagbox is a really useful addition to the toolbox.
Thanks for your hard work and imagination.
Loving it. :)


Title: Re: jQuery EasyUI 1.5.1 Release
Post by: Pierre on December 19, 2016, 07:34:07 AM
Texteditor extension is amazing.
Thank you so much.


Title: Re: jQuery EasyUI 1.5.1 Release
Post by: l.scorcia on February 24, 2017, 03:56:11 AM
Could you please also update the NuGet package (https://www.nuget.org/packages/EasyUI/) with this version?

Thanks in advance,
Luca


Title: Re: jQuery EasyUI 1.5.1 Release
Post by: jega on December 28, 2017, 02:34:06 PM
Hi.

Can't get 'cls' property to work

<style type="text/css">
.tb {
   text-align: center;
   font-size: large;
}
</style>

<input id="vCount" name="vCount" class="easyui-textbox" data-options="editable:false,cls:'tb'">

No effect.



Title: Re: jQuery EasyUI 1.5.1 Release
Post by: stworthy on December 28, 2017, 05:07:23 PM
Yes, you can set the 'cls' property. Use this code instead.
Code:
<style type="text/css">
.tb .textbox-text{
text-align: center;
font-size: large;
}
</style>