Skip to content

Commit

Permalink
change asset to 1.5.4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
sheillendra committed Apr 17, 2018
1 parent dc023eb commit fe49cc4
Show file tree
Hide file tree
Showing 822 changed files with 6,984 additions and 6,263 deletions.
2 changes: 1 addition & 1 deletion assets/JEasyUIAsset.php
Expand Up @@ -15,7 +15,7 @@

class JEasyUIAsset extends AssetBundle {

public $sourcePath = '@sheillendra/jeasyui/assets/jquery-easyui-1.5.4';
public $sourcePath = '@sheillendra/jeasyui/assets/jquery-easyui-1.5.4.5';
public $css = [
'themes/default/easyui.css',
'themes/icon.css',
Expand Down
@@ -1,3 +1,16 @@
Version 1.5.4.x
---------------
* Bug
* tabs: The selecting history has wrong order when the title contains complex elements. fixed.
* combo: The drop-down panel may not be hidden if a bigger 'delay' value is set. fixed.
* layout: The expanding panel does not collapse when move mouse quickly away from it. fixed.
* Improvement
* combo: The 'blur' event handler is attached to the 'inputEvents' property.
* numberbox: The 'cloneFrom' method is available.
* slider: The 'step' property can be set with a floating number.
* menu: The 'findItem' method allows the user to find menu item by any parameters.
* menubutton: Add 'showEvent' and 'hideEvent' properties.

Version 1.5.4
-------------
* Bug
Expand Down
File renamed without changes.
Expand Up @@ -3,5 +3,6 @@
"email":"easyui@gmail.com",
"subject":"Subject Title",
"message":"Message Content",
"language":"de"
"language":"de",
"accept":"true"
}
Expand Up @@ -34,6 +34,10 @@ <h2>Load Form Data</h2>
<div style="margin-bottom:20px">
<select class="easyui-combobox" name="language" label="Language" style="width:100%"><option value="ar">Arabic</option><option value="bg">Bulgarian</option><option value="ca">Catalan</option><option value="zh-cht">Chinese Traditional</option><option value="cs">Czech</option><option value="da">Danish</option><option value="nl">Dutch</option><option value="en" selected="selected">English</option><option value="et">Estonian</option><option value="fi">Finnish</option><option value="fr">French</option><option value="de">German</option><option value="el">Greek</option><option value="ht">Haitian Creole</option><option value="he">Hebrew</option><option value="hi">Hindi</option><option value="mww">Hmong Daw</option><option value="hu">Hungarian</option><option value="id">Indonesian</option><option value="it">Italian</option><option value="ja">Japanese</option><option value="ko">Korean</option><option value="lv">Latvian</option><option value="lt">Lithuanian</option><option value="no">Norwegian</option><option value="fa">Persian</option><option value="pl">Polish</option><option value="pt">Portuguese</option><option value="ro">Romanian</option><option value="ru">Russian</option><option value="sk">Slovak</option><option value="sl">Slovenian</option><option value="es">Spanish</option><option value="sv">Swedish</option><option value="th">Thai</option><option value="tr">Turkish</option><option value="uk">Ukrainian</option><option value="vi">Vietnamese</option></select>
</div>
<div style="margin-bottom:20px">
<label for="accept" class="textbox-label">Accept:</label>
<input id="accept" type="checkbox" name="accept" value="true">
</div>
</form>
</div>
<script>
Expand All @@ -43,7 +47,8 @@ <h2>Load Form Data</h2>
email:'mymail@gmail.com',
subject:'subject',
message:'message',
language:'en'
language:'en',
accept:true
});
}
function loadRemote(){
Expand Down
30 changes: 30 additions & 0 deletions assets/jquery-easyui-1.5.4.5/demo/maskedbox/basic.html
@@ -0,0 +1,30 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Basic MaskedBox - jQuery EasyUI Demo</title>
<link rel="stylesheet" type="text/css" href="../../themes/default/easyui.css">
<link rel="stylesheet" type="text/css" href="../../themes/icon.css">
<link rel="stylesheet" type="text/css" href="../demo.css">
<script type="text/javascript" src="../../jquery.min.js"></script>
<script type="text/javascript" src="../../jquery.easyui.min.js"></script>
</head>
<body>
<h2>Basic MaskedBox</h2>
<p>The maskedbox enforces its structure as the user types.</p>
<div style="margin:20px 0;"></div>
<div class="easyui-panel" title="Basic MaskedBox" style="width:100%;max-width:400px;padding:30px 60px;">
<div style="margin-bottom:20px">
<input class="easyui-maskedbox" mask="(999) 999-9999" label="Phone Number:" labelPosition="top" style="width:100%">
</div>
<div style="margin-bottom:20px">
<input class="easyui-maskedbox" mask="9999 9999 9999 9999" label="Credit Card:" labelPosition="top" style="width:100%">
</div>
<div style="margin-bottom:20px">
<input class="easyui-maskedbox" mask="99%" label="Percent:" labelPosition="top" style="width:100%">
</div>
</div>


</body>
</html>

0 comments on commit fe49cc4

Please sign in to comment.