Skip to content

Commit 3479aff

Browse files
committed
Added install.txt with installation notes.
1 parent b736e30 commit 3479aff

File tree

2 files changed

+44
-41
lines changed

2 files changed

+44
-41
lines changed

Changes.txt

Lines changed: 1 addition & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -254,47 +254,7 @@ Upgrade from 3.4.x to 3.5 beta.
254254

255255
1. Installation
256256
--------------
257-
Download the jqGrid package from the www.trirand/blog site section downloads.
258-
Note the new download manager where you can choose which modules you want to
259-
include in the download.
260-
261-
In order to use jqGrid 3.5, first a UI theme css file should be loaded.
262-
Download the desired theme (or build a custom one) from jQueryUI site
263-
(www.jqueryui.com) and point in your link tag in head section the path to the
264-
theme css
265-
266-
<link rel="stylesheet" type="text/css" media="screen" href="path_to_ui_css_file/jquery-ui-1.7.1.custom.css" />
267-
268-
where the path_to_ui_css_file is a valid path to the ui theme file
269-
270-
Extract the jqGrid package and copy the ui.jqgrid.css from css directory to
271-
your webserver directory. It is not necessary that the jqgrid css file is in
272-
the same directory as those of the jquery ui css.
273-
274-
<link rel="stylesheet" type="text/css" media="screen" href="path_to_jqgrid_css_file/ui.jqgrid.css" />
275-
276-
Starting with this version, jqGrid does not use a loader (which loads the
277-
needed files one by one), but all the needed code is contained in one file.
278-
The desired modules can be built using the jqGrid download manager from the
279-
site pointed above. In order to use this, first a language file should be
280-
loaded and then the jqgrid file.
281-
282-
Copy the desired language file from js/i18n directory to your web server
283-
directory where you store the java script files. Every language file is
284-
named grid.locale-XX.js, where XX is a two-letter code for the language.
285-
Copy the jquery.jqGid.min.js file to the same or other valid directory in
286-
your web server
287-
288-
Include both the files in script tags in the head section
289-
290-
<script src="path_to_js_files/grid.locale-en.js" type="text/javascript"></script>
291-
<script src="path_to_js_files/jquery.jqGrid.min.js" type="text/javascript"></script>
292-
293-
For debugging purposes, I have created a grid.loader.js which does the same
294-
loading of the files as in previous versions. The location of the file is in
295-
src directory of the package. In order to use this, the variable pathojsfiles
296-
should be adjusted to point to the appropriate folder - see 3.4.x docs.
297-
257+
See install.txt
298258

299259
2. Code changes
300260
---------------

install.txt

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
Installation
2+
3+
Download the jqGrid package from the www.trirand/blog site section downloads.
4+
Note the new download manager where you can choose which modules you want to
5+
include in the download.
6+
7+
In order to use jqGrid 3.5, first a UI theme css file should be loaded.
8+
Download the desired theme (or build a custom one) from jQueryUI site
9+
(www.jqueryui.com) and point in your link tag in head section the path to the
10+
theme css
11+
12+
<link rel="stylesheet" type="text/css" media="screen" href="path_to_ui_css_file/jquery-ui-1.7.1.custom.css" />
13+
14+
where the path_to_ui_css_file is a valid path to the ui theme file
15+
16+
Extract the jqGrid package and copy the ui.jqgrid.css from css directory to
17+
your webserver directory. It is not necessary that the jqgrid css file is in
18+
the same directory as those of the jquery ui css.
19+
20+
<link rel="stylesheet" type="text/css" media="screen" href="path_to_jqgrid_css_file/ui.jqgrid.css" />
21+
22+
Starting with this version, jqGrid does not use a loader (which loads the
23+
needed files one by one), but all the needed code is contained in one file.
24+
The desired modules can be built using the jqGrid download manager from the
25+
site pointed above. In order to use this, first a language file should be
26+
loaded and then the jqgrid file.
27+
28+
Copy the desired language file from js/i18n directory to your web server
29+
directory where you store the java script files. Every language file is
30+
named grid.locale-XX.js, where XX is a two-letter code for the language.
31+
Copy the jquery.jqGid.min.js file to the same or other valid directory in
32+
your web server
33+
34+
Include both the files in script tags in the head section
35+
36+
<script src="path_to_js_files/grid.locale-en.js" type="text/javascript"></script>
37+
<script src="path_to_js_files/jquery.jqGrid.min.js" type="text/javascript"></script>
38+
39+
For debugging purposes, I have created a grid.loader.js which does the same
40+
loading of the files as in previous versions. The location of the file is in
41+
src directory of the package. In order to use this, the variable pathojsfiles
42+
should be adjusted to point to the appropriate folder - see 3.4.x docs.
43+

0 commit comments

Comments
 (0)