Skip to content

Commit

Permalink
Item11938: upgrade to jqgrid-4.3.3
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.foswiki.org/trunk@14970 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
MichaelDaum authored and MichaelDaum committed Jun 12, 2012
1 parent 325d857 commit 369bbbe
Show file tree
Hide file tree
Showing 74 changed files with 8,062 additions and 4,406 deletions.
1 change: 1 addition & 0 deletions JQGridPlugin/data/System/JQGridPlugin.txt
Expand Up @@ -171,6 +171,7 @@ Custom grid connectors must process the following parameters:
| Release: | %$RELEASE% |
| Version: | %$VERSION% |
| Change History: | <!-- versions below in reverse order --> |
| 12 Jun 2012: | (2.10) upgraded to jqgrid-4.3.3 |
| 18 May 2012: | (2.03) GRID macro now passes _connectorparam parameters to the grid connector; \
Added !ExternalConnectors configure parameter. (Foswiki:Main/KipLubliner) |
| 19 Oct 2011: | (2.02) Fixed bugs with SEARCH connector: broken on Foswiki 1.1.x, corrected column sorting quirks;\
Expand Down
2 changes: 1 addition & 1 deletion JQGridPlugin/lib/Foswiki/Plugins/JQGridPlugin.pm
Expand Up @@ -17,7 +17,7 @@ use strict;
use warnings;

our $VERSION = '$Rev$';
our $RELEASE = '2.03';
our $RELEASE = '2.10';
our $SHORTDESCRIPTION = 'jQuery grid widget for Foswiki';
our $NO_PREFS_IN_TOPIC = 1;
our $doInit = 0;
Expand Down
4 changes: 2 additions & 2 deletions JQGridPlugin/lib/Foswiki/Plugins/JQGridPlugin/GRID.pm
@@ -1,6 +1,6 @@
# Plugin for Foswiki - The Free and Open Source Wiki, http://foswiki.org/
#
# Copyright (C) 2009-2011 Michael Daum, http://michaeldaumconsulting.com
# Copyright (C) 2009-2012 Michael Daum, http://michaeldaumconsulting.com
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
Expand Down Expand Up @@ -58,7 +58,7 @@ sub new {
my $this = bless($class->SUPER::new(
$session,
name => 'Grid',
version => '4.1.2',
version => '4.3.3',
author => 'Tony Tomov',
homepage => 'http://www.trirand.com/blog/',
puburl => '%PUBURLPATH%/%SYSTEMWEB%/JQGridPlugin',
Expand Down
11 changes: 11 additions & 0 deletions JQGridPlugin/lib/Foswiki/Plugins/JQGridPlugin/MANIFEST
Expand Up @@ -81,6 +81,12 @@ pub/System/JQGridPlugin/i18n/grid.locale-gl.uncompressed.js 0644
pub/System/JQGridPlugin/i18n/grid.locale-he.js 0644
pub/System/JQGridPlugin/i18n/grid.locale-he.js.gz 0644
pub/System/JQGridPlugin/i18n/grid.locale-he.uncompressed.js 0644
pub/System/JQGridPlugin/i18n/grid.locale-hr1250.js 0644
pub/System/JQGridPlugin/i18n/grid.locale-hr1250.js.gz 0644
pub/System/JQGridPlugin/i18n/grid.locale-hr1250.uncompressed.js 0644
pub/System/JQGridPlugin/i18n/grid.locale-hr.js 0644
pub/System/JQGridPlugin/i18n/grid.locale-hr.js.gz 0644
pub/System/JQGridPlugin/i18n/grid.locale-hr.uncompressed.js 0644
pub/System/JQGridPlugin/i18n/grid.locale-hu.js 0644
pub/System/JQGridPlugin/i18n/grid.locale-hu.uncompressed.js 0644
pub/System/JQGridPlugin/i18n/grid.locale-is.js 0644
Expand Down Expand Up @@ -129,6 +135,9 @@ pub/System/JQGridPlugin/i18n/grid.locale-sp.js.gz 0644
pub/System/JQGridPlugin/i18n/grid.locale-sp.uncompressed.js 0644
pub/System/JQGridPlugin/i18n/grid.locale-sr.js 0644
pub/System/JQGridPlugin/i18n/grid.locale-sr.js.gz 0644
pub/System/JQGridPlugin/i18n/grid.locale-sr-latin.js 0644
pub/System/JQGridPlugin/i18n/grid.locale-sr-latin.js.gz 0644
pub/System/JQGridPlugin/i18n/grid.locale-sr-latin.uncompressed.js 0644
pub/System/JQGridPlugin/i18n/grid.locale-sr.uncompressed.js 0644
pub/System/JQGridPlugin/i18n/grid.locale-sv.js 0644
pub/System/JQGridPlugin/i18n/grid.locale-sv.js.gz 0644
Expand All @@ -146,6 +155,7 @@ pub/System/JQGridPlugin/i18n/Makefile 0644
pub/System/JQGridPlugin/jqDnR.js 0644
pub/System/JQGridPlugin/jqModal.js 0644
pub/System/JQGridPlugin/jquery.additional-fmatter.js 0644
pub/System/JQGridPlugin/jquery.contextmenu.js 0644
pub/System/JQGridPlugin/jquery.fmatter.js 0644
pub/System/JQGridPlugin/jquery.jqgrid.init.js 0644
pub/System/JQGridPlugin/jquery.jqgrid.init.js.gz 0644
Expand All @@ -154,6 +164,7 @@ pub/System/JQGridPlugin/jquery.jqgrid.js 0644
pub/System/JQGridPlugin/jquery.jqgrid.js.gz 0644
pub/System/JQGridPlugin/jquery.jqgrid.uncompressed.js 0644
pub/System/JQGridPlugin/jquery.searchFilter.js 0644
pub/System/JQGridPlugin/jquery.tablednd.js 0644
pub/System/JQGridPlugin/JsonXml.js 0644
pub/System/JQGridPlugin/Makefile 0644
pub/System/JQGridPlugin/Makefile.include 0644
Expand Down
3 changes: 2 additions & 1 deletion JQGridPlugin/pub/System/JQGridPlugin/JsonXml.js
Expand Up @@ -86,6 +86,7 @@ var xmlJsonClass = {
xml += ind + "<" + name + ">" + "<![CDATA[" + v + "]]>" + "</" + name + ">";
}
else {
if (v === undefined ) { v = ""; }
if (v.toString() === "\"\"" || v.toString().length === 0) {
xml += ind + "<" + name + ">__EMPTY_STRING_</" + name + ">";
}
Expand Down Expand Up @@ -262,7 +263,7 @@ var xmlJsonClass = {
//}
}
else {
json += (name && ":") + "\"" + o.toString()+ "\"";
json += (name && ":") + o.toString();
}
return json;
},
Expand Down
2 changes: 2 additions & 0 deletions JQGridPlugin/pub/System/JQGridPlugin/Makefile
Expand Up @@ -15,6 +15,8 @@ JSSOURCE=\
grid.celledit.js\
jqModal.js\
jqDnR.js\
jquery.tablednd.js \
jquery.contextmenu.js \
grid.subgrid.js\
grid.treegrid.js\
grid.grouping.js\
Expand Down
26 changes: 13 additions & 13 deletions JQGridPlugin/pub/System/JQGridPlugin/css/ellipsis-xbl.xml
@@ -1,13 +1,13 @@
<?xml version="1.0"?>
<bindings
xmlns="http://www.mozilla.org/xbl"
xmlns:xbl="http://www.mozilla.org/xbl"
xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<binding id="ellipsis">
<content>
<xul:window><!-- xul:window tag required for FF2 -->
<xul:description crop="end" xbl:inherits="value=xbl:text"><children/></xul:description>
</xul:window>
</content>
</binding>
</bindings>
<?xml version="1.0"?>
<bindings
xmlns="http://www.mozilla.org/xbl"
xmlns:xbl="http://www.mozilla.org/xbl"
xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<binding id="ellipsis">
<content>
<xul:window><!-- xul:window tag required for FF2 -->
<xul:description crop="end" xbl:inherits="value=xbl:text"><children/></xul:description>
</xul:window>
</content>
</binding>
</bindings>
Expand Up @@ -7,14 +7,16 @@
.ui-jqgrid .ui-jqgrid-titlebar-close { position: absolute;top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height:18px;}.ui-jqgrid .ui-jqgrid-titlebar-close span { display: block; margin: 1px; }
.ui-jqgrid .ui-jqgrid-titlebar-close:hover { padding: 0; }
/* header*/
.ui-jqgrid .ui-jqgrid-hdiv {position: relative; margin: 0em;padding: 0em; overflow-x: hidden; overflow-y: auto; border-left: 0px none !important; border-top : 0px none !important; border-right : 0px none !important;}
.ui-jqgrid .ui-jqgrid-hdiv {position: relative; margin: 0em;padding: 0em; overflow-x: hidden; border-left: 0px none !important; border-top : 0px none !important; border-right : 0px none !important;}
.ui-jqgrid .ui-jqgrid-hbox {float: left; padding-right: 20px;}
.ui-jqgrid .ui-jqgrid-htable {table-layout:fixed;margin:0em;}
.ui-jqgrid .ui-jqgrid-htable th {height:22px;padding: 0 2px 0 2px;}
.ui-jqgrid .ui-jqgrid-htable th div {overflow: hidden; position:relative; height:17px;}
.ui-th-column, .ui-jqgrid .ui-jqgrid-htable th.ui-th-column {overflow: hidden;white-space: nowrap;text-align:center;border-top : 0px none;border-bottom : 0px none;}
.ui-th-ltr, .ui-jqgrid .ui-jqgrid-htable th.ui-th-ltr {border-left : 0px none;}
.ui-th-rtl, .ui-jqgrid .ui-jqgrid-htable th.ui-th-rtl {border-right : 0px none;}
.ui-first-th-ltr {border-right: 1px solid; }
.ui-first-th-rtl {border-left: 1px solid; }
.ui-jqgrid .ui-th-div-ie {white-space: nowrap; zoom :1; height:17px;}
.ui-jqgrid .ui-jqgrid-resize {height:20px !important;position: relative; cursor :e-resize;display: inline;overflow: hidden;}
.ui-jqgrid .ui-grid-ico-sort {overflow:hidden;position:absolute;display:inline; cursor: pointer !important;}
Expand All @@ -38,7 +40,7 @@ tr.ui-search-toolbar select {margin: 1px 0px 0px 0px}
.ui-jqgrid tr.ui-row-ltr td {text-align:left;border-right-width: 1px; border-right-color: inherit; border-right-style: solid;}
.ui-jqgrid tr.ui-row-rtl td {text-align:right;border-left-width: 1px; border-left-color: inherit; border-left-style: solid;}
.ui-jqgrid td.jqgrid-rownum { padding: 0 2px 0 2px; margin: 0px; border: 0px none;}
.ui-jqgrid .ui-jqgrid-resize-mark { width:2px; left:0; background-color:#777; cursor: e-resize; cursor: col-resize; position:absolute; top:0; height:100px; overflow:hidden; display:none; border:0 none;}
.ui-jqgrid .ui-jqgrid-resize-mark { width:2px; left:0; background-color:#777; cursor: e-resize; cursor: col-resize; position:absolute; top:0; height:100px; overflow:hidden; display:none; border:0 none; z-index: 99999;}
/* footer */
.ui-jqgrid .ui-jqgrid-sdiv {position: relative; margin: 0em;padding: 0em; overflow: hidden; border-left: 0px none !important; border-top : 0px none !important; border-right : 0px none !important;}
.ui-jqgrid .ui-jqgrid-ftable {table-layout:fixed; margin-bottom:0em;}
Expand All @@ -58,12 +60,15 @@ tr.ui-search-toolbar select {margin: 1px 0px 0px 0px}
.ui-jqgrid .ui-pg-selbox {font-size:.8em; line-height:18px; display:block; height:18px; margin: 0em;}
.ui-jqgrid .ui-separator {height: 18px; border-left: 1px solid #ccc ; border-right: 1px solid #ccc ; margin: 1px; float: right;}
.ui-jqgrid .ui-paging-info {font-weight: normal;height:19px; margin-top:3px;margin-right:4px;}
.ui-jqgrid .ui-jqgrid-pager .ui-pg-div {padding:1px 0;float:left;list-style-image:none;list-style-position:outside;list-style-type:none;position:relative;}
.ui-jqgrid .ui-jqgrid-pager .ui-pg-div {padding:1px 0;float:left;position:relative;}
.ui-jqgrid .ui-jqgrid-pager .ui-pg-button { cursor:pointer; }
.ui-jqgrid .ui-jqgrid-pager .ui-pg-div span.ui-icon {float:left;margin:0 2px;}
.ui-jqgrid td input, .ui-jqgrid td select .ui-jqgrid td textarea { margin: 0em;}
.ui-jqgrid td textarea {width:auto;height:auto;}
.ui-jqgrid .ui-jqgrid-toppager {border-left: 0px none !important;border-right: 0px none !important; border-top: 0px none !important; margin: 0px !important; padding: 0px !important; position: relative; height: 25px !important;white-space: nowrap;overflow: hidden;}
.ui-jqgrid .ui-jqgrid-toppager .ui-pg-div {padding:1px 0;float:left;position:relative;}
.ui-jqgrid .ui-jqgrid-toppager .ui-pg-button { cursor:pointer; }
.ui-jqgrid .ui-jqgrid-toppager .ui-pg-div span.ui-icon {float:left;margin:0 2px;}
/*subgrid*/
.ui-jqgrid .ui-jqgrid-btable .ui-sgcollapsed span {display: block;}
.ui-jqgrid .ui-subgrid {margin:0em;padding:0em; width:100%;}
Expand Down Expand Up @@ -102,7 +107,7 @@ tr.ui-search-toolbar select {margin: 1px 0px 0px 0px}
.ui-jqdialog-content input.FormElement {padding:.3em}
.ui-jqdialog-content .data-line {padding-top:.1em;border: 0px none;}

.ui-jqdialog-content .CaptionTD {text-align: left; vertical-align: middle;border: 0px none; padding: 2px;white-space: nowrap;}
.ui-jqdialog-content .CaptionTD {vertical-align: middle;border: 0px none; padding: 2px;white-space: nowrap;}
.ui-jqdialog-content .DataTD {padding: 2px; border: 0px none; vertical-align: top;}
.ui-jqdialog-content .form-view-data {white-space:pre}
.fm-button { display: inline-block; margin:0 4px 0 0; padding: .4em .5em; text-decoration:none !important; cursor:pointer; position: relative; text-align: center; zoom: 1; }
Expand All @@ -114,6 +119,11 @@ tr.ui-search-toolbar select {margin: 1px 0px 0px 0px}
/* End Eorm edit */
/*.ui-jqgrid .edit-cell {}*/
.ui-jqgrid .selected-row, div.ui-jqgrid .selected-row td {font-style : normal;border-left: 0px none;}
/* inline edit actions button*/
.ui-inline-del.ui-state-hover span, .ui-inline-edit.ui-state-hover span,
.ui-inline-save.ui-state-hover span, .ui-inline-cancel.ui-state-hover span {
margin: -1px;
}
/* Tree Grid */
.ui-jqgrid .tree-wrap {float: left; position: relative;height: 18px;white-space: nowrap;overflow: hidden;}
.ui-jqgrid .tree-minus {position: absolute; height: 18px; width: 18px; overflow: hidden;}
Expand All @@ -131,7 +141,7 @@ tr.ui-search-toolbar select {margin: 1px 0px 0px 0px}
.ui-jqgrid .ui-sort-rtl {left:0px;}
.ui-jqgrid .tree-wrap-ltr {float: left;}
.ui-jqgrid .tree-wrap-rtl {float: right;}
.ui-jqgrid .ui-ellipsis {text-overflow:ellipsis; -moz-binding:url('ellipsis-xbl.xml#ellipsis');}
.ui-jqgrid .ui-ellipsis {text-overflow:ellipsis;}
/* Multiselect
----------------------------------*/

Expand Down Expand Up @@ -166,5 +176,4 @@ tr.ui-search-toolbar select {margin: 1px 0px 0px 0px}
.ui-searchFilter table td {margin: 0em; padding: 1px;}
.ui-searchFilter table td input, .ui-searchFilter table td select {margin: 0.1em;}
.ui-searchFilter .ui-state-default { cursor: pointer; }
.ui-searchFilter .divider { height: 1px; }
.ui-searchFilter .divider div { background-color: black; height: 1px; }
.ui-searchFilter .divider hr {margin: 1px; }
Expand Up @@ -3,5 +3,4 @@
.ui-searchFilter table td {margin: 0em; padding: 1px;}
.ui-searchFilter table td input, .ui-searchFilter table td select {margin: 0.1em;}
.ui-searchFilter .ui-state-default { cursor: pointer; }
.ui-searchFilter .divider { height: 1px; }
.ui-searchFilter .divider div { background-color: black; height: 1px; }
.ui-searchFilter .divider hr {margin: 1px; }
20 changes: 15 additions & 5 deletions JQGridPlugin/pub/System/JQGridPlugin/css/ui.jqgrid.css
Expand Up @@ -7,14 +7,16 @@
.ui-jqgrid .ui-jqgrid-titlebar-close { position: absolute;top: 50%; width: 19px; margin: -10px 0 0 0; padding: 1px; height:18px;}.ui-jqgrid .ui-jqgrid-titlebar-close span { display: block; margin: 1px; }
.ui-jqgrid .ui-jqgrid-titlebar-close:hover { padding: 0; }
/* header*/
.ui-jqgrid .ui-jqgrid-hdiv {position: relative; margin: 0em;padding: 0em; overflow-x: hidden; overflow-y: auto; border-left: 0px none !important; border-top : 0px none !important; border-right : 0px none !important;}
.ui-jqgrid .ui-jqgrid-hdiv {position: relative; margin: 0em;padding: 0em; overflow-x: hidden; border-left: 0px none !important; border-top : 0px none !important; border-right : 0px none !important;}
.ui-jqgrid .ui-jqgrid-hbox {float: left; padding-right: 20px;}
.ui-jqgrid .ui-jqgrid-htable {table-layout:fixed;margin:0em;}
.ui-jqgrid .ui-jqgrid-htable th {height:22px;padding: 0 2px 0 2px;}
.ui-jqgrid .ui-jqgrid-htable th div {overflow: hidden; position:relative; height:17px;}
.ui-th-column, .ui-jqgrid .ui-jqgrid-htable th.ui-th-column {overflow: hidden;white-space: nowrap;text-align:center;border-top : 0px none;border-bottom : 0px none;}
.ui-th-ltr, .ui-jqgrid .ui-jqgrid-htable th.ui-th-ltr {border-left : 0px none;}
.ui-th-rtl, .ui-jqgrid .ui-jqgrid-htable th.ui-th-rtl {border-right : 0px none;}
.ui-first-th-ltr {border-right: 1px solid; }
.ui-first-th-rtl {border-left: 1px solid; }
.ui-jqgrid .ui-th-div-ie {white-space: nowrap; zoom :1; height:17px;}
.ui-jqgrid .ui-jqgrid-resize {height:20px !important;position: relative; cursor :e-resize;display: inline;overflow: hidden;}
.ui-jqgrid .ui-grid-ico-sort {overflow:hidden;position:absolute;display:inline; cursor: pointer !important;}
Expand All @@ -38,7 +40,7 @@ tr.ui-search-toolbar select {margin: 1px 0px 0px 0px}
.ui-jqgrid tr.ui-row-ltr td {text-align:left;border-right-width: 1px; border-right-color: inherit; border-right-style: solid;}
.ui-jqgrid tr.ui-row-rtl td {text-align:right;border-left-width: 1px; border-left-color: inherit; border-left-style: solid;}
.ui-jqgrid td.jqgrid-rownum { padding: 0 2px 0 2px; margin: 0px; border: 0px none;}
.ui-jqgrid .ui-jqgrid-resize-mark { width:2px; left:0; background-color:#777; cursor: e-resize; cursor: col-resize; position:absolute; top:0; height:100px; overflow:hidden; display:none; border:0 none;}
.ui-jqgrid .ui-jqgrid-resize-mark { width:2px; left:0; background-color:#777; cursor: e-resize; cursor: col-resize; position:absolute; top:0; height:100px; overflow:hidden; display:none; border:0 none; z-index: 99999;}
/* footer */
.ui-jqgrid .ui-jqgrid-sdiv {position: relative; margin: 0em;padding: 0em; overflow: hidden; border-left: 0px none !important; border-top : 0px none !important; border-right : 0px none !important;}
.ui-jqgrid .ui-jqgrid-ftable {table-layout:fixed; margin-bottom:0em;}
Expand All @@ -58,12 +60,15 @@ tr.ui-search-toolbar select {margin: 1px 0px 0px 0px}
.ui-jqgrid .ui-pg-selbox {font-size:.8em; line-height:18px; display:block; height:18px; margin: 0em;}
.ui-jqgrid .ui-separator {height: 18px; border-left: 1px solid #ccc ; border-right: 1px solid #ccc ; margin: 1px; float: right;}
.ui-jqgrid .ui-paging-info {font-weight: normal;height:19px; margin-top:3px;margin-right:4px;}
.ui-jqgrid .ui-jqgrid-pager .ui-pg-div {padding:1px 0;float:left;list-style-image:none;list-style-position:outside;list-style-type:none;position:relative;}
.ui-jqgrid .ui-jqgrid-pager .ui-pg-div {padding:1px 0;float:left;position:relative;}
.ui-jqgrid .ui-jqgrid-pager .ui-pg-button { cursor:pointer; }
.ui-jqgrid .ui-jqgrid-pager .ui-pg-div span.ui-icon {float:left;margin:0 2px;}
.ui-jqgrid td input, .ui-jqgrid td select .ui-jqgrid td textarea { margin: 0em;}
.ui-jqgrid td textarea {width:auto;height:auto;}
.ui-jqgrid .ui-jqgrid-toppager {border-left: 0px none !important;border-right: 0px none !important; border-top: 0px none !important; margin: 0px !important; padding: 0px !important; position: relative; height: 25px !important;white-space: nowrap;overflow: hidden;}
.ui-jqgrid .ui-jqgrid-toppager .ui-pg-div {padding:1px 0;float:left;position:relative;}
.ui-jqgrid .ui-jqgrid-toppager .ui-pg-button { cursor:pointer; }
.ui-jqgrid .ui-jqgrid-toppager .ui-pg-div span.ui-icon {float:left;margin:0 2px;}
/*subgrid*/
.ui-jqgrid .ui-jqgrid-btable .ui-sgcollapsed span {display: block;}
.ui-jqgrid .ui-subgrid {margin:0em;padding:0em; width:100%;}
Expand Down Expand Up @@ -102,7 +107,7 @@ tr.ui-search-toolbar select {margin: 1px 0px 0px 0px}
.ui-jqdialog-content input.FormElement {padding:.3em}
.ui-jqdialog-content .data-line {padding-top:.1em;border: 0px none;}

.ui-jqdialog-content .CaptionTD {text-align: left; vertical-align: middle;border: 0px none; padding: 2px;white-space: nowrap;}
.ui-jqdialog-content .CaptionTD {vertical-align: middle;border: 0px none; padding: 2px;white-space: nowrap;}
.ui-jqdialog-content .DataTD {padding: 2px; border: 0px none; vertical-align: top;}
.ui-jqdialog-content .form-view-data {white-space:pre}
.fm-button { display: inline-block; margin:0 4px 0 0; padding: .4em .5em; text-decoration:none !important; cursor:pointer; position: relative; text-align: center; zoom: 1; }
Expand All @@ -114,6 +119,11 @@ tr.ui-search-toolbar select {margin: 1px 0px 0px 0px}
/* End Eorm edit */
/*.ui-jqgrid .edit-cell {}*/
.ui-jqgrid .selected-row, div.ui-jqgrid .selected-row td {font-style : normal;border-left: 0px none;}
/* inline edit actions button*/
.ui-inline-del.ui-state-hover span, .ui-inline-edit.ui-state-hover span,
.ui-inline-save.ui-state-hover span, .ui-inline-cancel.ui-state-hover span {
margin: -1px;
}
/* Tree Grid */
.ui-jqgrid .tree-wrap {float: left; position: relative;height: 18px;white-space: nowrap;overflow: hidden;}
.ui-jqgrid .tree-minus {position: absolute; height: 18px; width: 18px; overflow: hidden;}
Expand All @@ -131,4 +141,4 @@ tr.ui-search-toolbar select {margin: 1px 0px 0px 0px}
.ui-jqgrid .ui-sort-rtl {left:0px;}
.ui-jqgrid .tree-wrap-ltr {float: left;}
.ui-jqgrid .tree-wrap-rtl {float: right;}
.ui-jqgrid .ui-ellipsis {text-overflow:ellipsis; -moz-binding:url('ellipsis-xbl.xml#ellipsis');}
.ui-jqgrid .ui-ellipsis {text-overflow:ellipsis;}

0 comments on commit 369bbbe

Please sign in to comment.