diff --git a/README.md b/README.md
index 6e6ec07..b492dcf 100644
--- a/README.md
+++ b/README.md
@@ -10,6 +10,10 @@ This adds a filter to the column header, displaying an ordered list of the value
The plugin relies on the grid data being sourced from a DataView as it handles the filtering.
+Options:
+* sortAvailable (default: true). Set to false to remove the ability to sort columns via the plugin.
+* Column option: unfiltered (If set to true, that column will not have a header filter available).
+
Overlays (ext.overlays.js)
--------
diff --git a/css/slick.grid.css b/css/slick.grid.css
index 6a416db..8b2f35f 100644
--- a/css/slick.grid.css
+++ b/css/slick.grid.css
@@ -53,11 +53,11 @@ classes should alter those!
}
.slick-sort-indicator-desc {
- background: url(images/sort-desc.gif);
+ background: url(../images/sort-desc.png);
}
.slick-sort-indicator-asc {
- background: url(images/sort-asc.gif);
+ background: url(../images/sort-asc.png);
}
.slick-resizable-handle {
diff --git a/examples/example-3-with-sort-and-search.htm b/examples/example-3-with-sort-and-search.htm
new file mode 100644
index 0000000..8b5a03a
--- /dev/null
+++ b/examples/example-3-with-sort-and-search.htm
@@ -0,0 +1,260 @@
+
+
+
+
+
+
+ SlickGrid Filter and Overlay example
+
+
+
+
+
+
+
+
+
Demonstrates the Row and Header overlays, the Selected Cell overlay, filter, and Fill Down
+
The Title column is editable so has the fill down function enabled
+
Sorting from the filer menu is turned off. Columns can be sorted by clicking on the header. Multi-sort works by holding down shift when clicking on a second header
+
The search box allows for searching all columns within filtered rows: