diff options
author | michael.leibman <michael.leibman@daa67922-0c33-11de-a42d-873b86d837ff> | 2009-11-28 03:08:34 +0000 |
---|---|---|
committer | michael.leibman <michael.leibman@daa67922-0c33-11de-a42d-873b86d837ff> | 2009-11-28 03:08:34 +0000 |
commit | de4920ccbea479755e7b981f85eb6fa24a3ac507 (patch) | |
tree | c1066339a0cfabb6dbab4eee18fd418032961ee0 /slick.editors.js | |
parent | dafcf83b90ae9ecc8ca91b8fab0ec824b880f742 (diff) | |
download | SlickGrid-de4920ccbea479755e7b981f85eb6fa24a3ac507.zip SlickGrid-de4920ccbea479755e7b981f85eb6fa24a3ac507.tar.gz SlickGrid-de4920ccbea479755e7b981f85eb6fa24a3ac507.tar.bz2 |
Improvements to AJAX example:
- Abortable JSONP requests.
- Better "buffering" indicator.
- Sorting support (Digg only supports sorting on diggs for the feed I'm using).
plus some other minor stuff.
Diffstat (limited to 'slick.editors.js')
-rw-r--r-- | slick.editors.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/slick.editors.js b/slick.editors.js index 1b63bf8..10e7774 100644 --- a/slick.editors.js +++ b/slick.editors.js @@ -24,7 +24,7 @@ var GraphicalPercentCompleteCellFormatter = function(row, cell, value, columnDef else
color = "green";
- return "<span style='display:inline-block;background:" + color + ";height:6px;width:" + value + "%'></span>";
+ return "<span class='percent-complete-bar' style='background:" + color + ";width:" + value + "%'></span>";
};
var YesNoCellFormatter = function(row, cell, value, columnDef, dataContext) {
|