Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 58f39bf

Browse files
author
harrydeluxe
committed
update to 4.1.1
1 parent 3b5edb4 commit 58f39bf

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

example/grid/sortmenu.html

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,29 @@
1+
<!DOCTYPE html>
12
<html>
23
<head>
34
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
45
<title>Sortmenu Example</title>
5-
<link rel="stylesheet" type="text/css" href="http://extjs.cachefly.net/ext-4.1.0-gpl/resources/css/ext-all.css" />
6-
<link rel="stylesheet" type="text/css" href="http://extjs.cachefly.net/ext-4.1.0-gpl/examples/shared/example.css" />
7-
<link rel="stylesheet" type="text/css" href="http://extjs.cachefly.net/ext-4.1.0-gpl/examples/ux/css/CheckHeader.css" />
6+
<link rel="stylesheet" type="text/css" href="http://extjs.cachefly.net/extjs-4.1.1-gpl/resources/css/ext-all.css" />
7+
<link rel="stylesheet" type="text/css" href="http://extjs.cachefly.net/extjs-4.1.1-gpl/examples/shared/example.css" />
8+
<link rel="stylesheet" type="text/css" href="http://extjs.cachefly.net/extjs-4.1.1-gpl/examples/ux/css/CheckHeader.css" />
89
<style type="text/css">
910
.employee-add {
10-
background-image: url('http://extjs.cachefly.net/ext-4.1.0-gpl/examples/shared/icons/fam/user_add.gif') !important;
11+
background-image: url('http://extjs.cachefly.net/extjs-4.1.1-gpl/examples/shared/icons/fam/user_add.gif') !important;
1112
}
1213

1314
.employee-remove {
14-
background-image: url('http://extjs.cachefly.net/ext-4.1.0-gpl/examples/shared/icons/fam/user_delete.gif') !important;
15+
background-image: url('http://extjs.cachefly.net/extjs-4.1.1-gpl/examples/shared/icons/fam/user_delete.gif') !important;
1516
}
1617
</style>
1718
</head>
1819
<body>
1920
<h1>Sortmenu Example</h1>
2021
<p>The js is not minified so it is readable. See <a href="sortmenu.js">sortmenu.js</a>.</p>
21-
<p>Note: Works with 4.1.0</p>
22+
<p>Note: Works with 4.1.1</p>
2223
<div id="editor-grid"></div>
2324
<p></p>
2425
<div id="editor-grid2"></div>
25-
<script type="text/javascript" src="http://extjs.cachefly.net/ext-4.1.0-gpl/bootstrap.js"></script>
26+
<script type="text/javascript" src="http://extjs.cachefly.net/extjs-4.1.1-gpl/bootstrap.js"></script>
2627
<script type="text/javascript" src="sortmenu.js"></script>
2728
</body>
2829
</html>

example/grid/sortmenu.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Ext.Loader.setConfig({
22
enabled: true,
33
paths: {
4-
'Ext.ux': 'http://extjs.cachefly.net/ext-4.1.0-gpl/examples/ux/',
4+
'Ext.ux': 'http://extjs.cachefly.net/extjs-4.1.1-gpl/examples/ux/',
55
'Ext.ux.grid': '../../ux/grid',
66
'Ext.ux.grid.plugin': '../../ux/grid/plugin'
77
}
@@ -14,6 +14,7 @@ Ext.require([
1414
'Ext.state.*',
1515
'Ext.form.*',
1616
'Ext.ux.CheckColumn',
17+
'Ext.ux.grid.plugin.SortMenu',
1718
'Ext.ux.grid.plugin.RowEditing'
1819
]);
1920

0 commit comments

Comments
 (0)