gridx-rails 1.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +15 -0
- data/LICENSE +2 -0
- data/README.md +18 -0
- data/Rakefile +36 -0
- data/app/assets/images/gridx/mobile/themes/iphone/images/ajax-loader.gif +0 -0
- data/app/assets/images/gridx/mobile/themes/iphone/images/arrow.png +0 -0
- data/app/assets/images/gridx/resources/images/checkboxpartial.png +0 -0
- data/app/assets/images/gridx/resources/images/checkboxpartialdisabled.png +0 -0
- data/app/assets/images/gridx/resources/images/claro-grid-header-onepixel.bmp +0 -0
- data/app/assets/images/gridx/resources/images/dndCopy.png +0 -0
- data/app/assets/images/gridx/resources/images/dndMove.png +0 -0
- data/app/assets/images/gridx/resources/images/dndNoCopy.png +0 -0
- data/app/assets/images/gridx/resources/images/dndNoMove.png +0 -0
- data/app/assets/images/gridx/resources/images/gridxCellChanged.png +0 -0
- data/app/assets/images/gridx/resources/images/header.png +0 -0
- data/app/assets/images/gridx/resources/images/header_shadow.png +0 -0
- data/app/assets/images/gridx/resources/images/loadingAnimation.gif +0 -0
- data/app/assets/images/gridx/resources/images/row_back.png +0 -0
- data/app/assets/images/gridx/resources/images/row_back_changed.png +0 -0
- data/app/assets/images/gridx/resources/images/sprite_icons.png +0 -0
- data/app/assets/images/gridx/resources/images/treeExpandImages.png +0 -0
- data/app/assets/images/gridx/resources/images/treeExpand_loading.gif +0 -0
- data/app/assets/javascripts/gridx/Grid.js +224 -0
- data/app/assets/javascripts/gridx/GridCommon.js +52 -0
- data/app/assets/javascripts/gridx/allModules.js +105 -0
- data/app/assets/javascripts/gridx/core/Cell.js +86 -0
- data/app/assets/javascripts/gridx/core/Column.js +183 -0
- data/app/assets/javascripts/gridx/core/Core.js +447 -0
- data/app/assets/javascripts/gridx/core/Row.js +174 -0
- data/app/assets/javascripts/gridx/core/_Module.js +285 -0
- data/app/assets/javascripts/gridx/core/model/Model.js +495 -0
- data/app/assets/javascripts/gridx/core/model/_Extension.js +84 -0
- data/app/assets/javascripts/gridx/core/model/cache/Async.js +469 -0
- data/app/assets/javascripts/gridx/core/model/cache/Sync.js +59 -0
- data/app/assets/javascripts/gridx/core/model/cache/_Cache.js +386 -0
- data/app/assets/javascripts/gridx/core/model/extensions/ClientFilter.js +303 -0
- data/app/assets/javascripts/gridx/core/model/extensions/FormatSort.js +103 -0
- data/app/assets/javascripts/gridx/core/model/extensions/Mark.js +370 -0
- data/app/assets/javascripts/gridx/core/model/extensions/Modify.js +418 -0
- data/app/assets/javascripts/gridx/core/model/extensions/Move.js +429 -0
- data/app/assets/javascripts/gridx/core/model/extensions/Query.js +50 -0
- data/app/assets/javascripts/gridx/core/model/extensions/Sort.js +81 -0
- data/app/assets/javascripts/gridx/core/util.js +13 -0
- data/app/assets/javascripts/gridx/mobile/Grid.js +300 -0
- data/app/assets/javascripts/gridx/mobile/LazyLoad.js +88 -0
- data/app/assets/javascripts/gridx/mobile/PullRefresh.js +117 -0
- data/app/assets/javascripts/gridx/mobile/Sort.js +66 -0
- data/app/assets/javascripts/gridx/mobile/nls/LazyLoad.js +38 -0
- data/app/assets/javascripts/gridx/mobile/nls/PullRefresh.js +39 -0
- data/app/assets/javascripts/gridx/mobile/nls/ar/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/ar/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/ar/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/bg/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/bg/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/bg/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/ca/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/ca/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/ca/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/common.js +37 -0
- data/app/assets/javascripts/gridx/mobile/nls/cs/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/cs/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/cs/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/da/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/da/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/da/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/de/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/de/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/de/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/el/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/el/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/el/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/es/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/es/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/es/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/fi/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/fi/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/fi/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/fr/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/fr/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/fr/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/he/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/he/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/he/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/hr/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/hr/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/hr/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/hu/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/hu/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/hu/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/it/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/it/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/it/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/ja/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/ja/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/ja/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/kk/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/kk/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/kk/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/ko/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/ko/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/ko/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/nb/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/nb/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/nb/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/nl/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/nl/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/nl/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/pl/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/pl/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/pl/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/pt/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/pt/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/pt/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/pt-pt/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/pt-pt/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/pt-pt/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/ro/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/ro/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/ro/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/ru/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/ru/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/ru/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/sk/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/sk/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/sk/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/sl/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/sl/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/sl/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/sv/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/sv/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/sv/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/th/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/th/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/th/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/tr/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/tr/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/tr/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/uk/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/uk/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/uk/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/zh/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/zh/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/zh/common.js +5 -0
- data/app/assets/javascripts/gridx/mobile/nls/zh-tw/LazyLoad.js +6 -0
- data/app/assets/javascripts/gridx/mobile/nls/zh-tw/PullRefresh.js +7 -0
- data/app/assets/javascripts/gridx/mobile/nls/zh-tw/common.js +5 -0
- data/app/assets/javascripts/gridx/modules/AutoScroll.js +100 -0
- data/app/assets/javascripts/gridx/modules/Bar.js +322 -0
- data/app/assets/javascripts/gridx/modules/Body.js +1059 -0
- data/app/assets/javascripts/gridx/modules/CellWidget.js +538 -0
- data/app/assets/javascripts/gridx/modules/ColumnLock.js +254 -0
- data/app/assets/javascripts/gridx/modules/ColumnResizer.js +278 -0
- data/app/assets/javascripts/gridx/modules/ColumnWidth.js +320 -0
- data/app/assets/javascripts/gridx/modules/Dod.js +368 -0
- data/app/assets/javascripts/gridx/modules/Edit.js +1024 -0
- data/app/assets/javascripts/gridx/modules/Filter.js +482 -0
- data/app/assets/javascripts/gridx/modules/Focus.js +439 -0
- data/app/assets/javascripts/gridx/modules/GroupHeader.js +437 -0
- data/app/assets/javascripts/gridx/modules/HLayout.js +139 -0
- data/app/assets/javascripts/gridx/modules/HScroller.js +172 -0
- data/app/assets/javascripts/gridx/modules/Header.js +289 -0
- data/app/assets/javascripts/gridx/modules/HeaderMenu.js +63 -0
- data/app/assets/javascripts/gridx/modules/HeaderRegions.js +201 -0
- data/app/assets/javascripts/gridx/modules/HiddenColumns.js +274 -0
- data/app/assets/javascripts/gridx/modules/IndirectSelect.js +287 -0
- data/app/assets/javascripts/gridx/modules/IndirectSelectColumn.js +277 -0
- data/app/assets/javascripts/gridx/modules/Menu.js +167 -0
- data/app/assets/javascripts/gridx/modules/NavigableCell.js +170 -0
- data/app/assets/javascripts/gridx/modules/NestedSort.js +280 -0
- data/app/assets/javascripts/gridx/modules/PagedBody.js +409 -0
- data/app/assets/javascripts/gridx/modules/Pagination.js +293 -0
- data/app/assets/javascripts/gridx/modules/Persist.js +266 -0
- data/app/assets/javascripts/gridx/modules/Printer.js +49 -0
- data/app/assets/javascripts/gridx/modules/RowHeader.js +412 -0
- data/app/assets/javascripts/gridx/modules/RowLock.js +143 -0
- data/app/assets/javascripts/gridx/modules/SingleSort.js +276 -0
- data/app/assets/javascripts/gridx/modules/SummaryBar.js +33 -0
- data/app/assets/javascripts/gridx/modules/TitleBar.js +51 -0
- data/app/assets/javascripts/gridx/modules/ToolBar.js +55 -0
- data/app/assets/javascripts/gridx/modules/TouchScroll.js +103 -0
- data/app/assets/javascripts/gridx/modules/TouchVScroller.js +89 -0
- data/app/assets/javascripts/gridx/modules/Traverse.js +159 -0
- data/app/assets/javascripts/gridx/modules/Tree.js +646 -0
- data/app/assets/javascripts/gridx/modules/VLayout.js +152 -0
- data/app/assets/javascripts/gridx/modules/VScroller.js +342 -0
- data/app/assets/javascripts/gridx/modules/View.js +540 -0
- data/app/assets/javascripts/gridx/modules/VirtualVScroller.js +445 -0
- data/app/assets/javascripts/gridx/modules/barPlugins/DropDownPager.js +16 -0
- data/app/assets/javascripts/gridx/modules/barPlugins/DropDownSizer.js +16 -0
- data/app/assets/javascripts/gridx/modules/barPlugins/GotoPageButton.js +16 -0
- data/app/assets/javascripts/gridx/modules/barPlugins/LinkPager.js +16 -0
- data/app/assets/javascripts/gridx/modules/barPlugins/LinkSizer.js +16 -0
- data/app/assets/javascripts/gridx/modules/barPlugins/Summary.js +16 -0
- data/app/assets/javascripts/gridx/modules/dnd/Avatar.js +45 -0
- data/app/assets/javascripts/gridx/modules/dnd/Column.js +210 -0
- data/app/assets/javascripts/gridx/modules/dnd/Row.js +286 -0
- data/app/assets/javascripts/gridx/modules/dnd/_Base.js +60 -0
- data/app/assets/javascripts/gridx/modules/dnd/_Dnd.js +371 -0
- data/app/assets/javascripts/gridx/modules/exporter/CSV.js +43 -0
- data/app/assets/javascripts/gridx/modules/exporter/Exporter.js +34 -0
- data/app/assets/javascripts/gridx/modules/exporter/Table.js +42 -0
- data/app/assets/javascripts/gridx/modules/extendedSelect/Cell.js +491 -0
- data/app/assets/javascripts/gridx/modules/extendedSelect/Column.js +290 -0
- data/app/assets/javascripts/gridx/modules/extendedSelect/Row.js +458 -0
- data/app/assets/javascripts/gridx/modules/extendedSelect/_Base.js +244 -0
- data/app/assets/javascripts/gridx/modules/extendedSelect/_RowCellBase.js +35 -0
- data/app/assets/javascripts/gridx/modules/filter/DistinctComboBoxMenu.js +22 -0
- data/app/assets/javascripts/gridx/modules/filter/Filter.js +16 -0
- data/app/assets/javascripts/gridx/modules/filter/FilterBar.js +649 -0
- data/app/assets/javascripts/gridx/modules/filter/FilterConfirmDialog.js +33 -0
- data/app/assets/javascripts/gridx/modules/filter/FilterDialog.js +179 -0
- data/app/assets/javascripts/gridx/modules/filter/FilterPane.js +340 -0
- data/app/assets/javascripts/gridx/modules/filter/FilterTooltip.js +103 -0
- data/app/assets/javascripts/gridx/modules/filter/QuickFilter.js +33 -0
- data/app/assets/javascripts/gridx/modules/move/Column.js +223 -0
- data/app/assets/javascripts/gridx/modules/move/Row.js +154 -0
- data/app/assets/javascripts/gridx/modules/pagination/Pagination.js +16 -0
- data/app/assets/javascripts/gridx/modules/pagination/PaginationBar.js +68 -0
- data/app/assets/javascripts/gridx/modules/pagination/PaginationBarDD.js +40 -0
- data/app/assets/javascripts/gridx/modules/pagination/_PaginationBarBase.js +105 -0
- data/app/assets/javascripts/gridx/modules/select/Cell.js +229 -0
- data/app/assets/javascripts/gridx/modules/select/Column.js +209 -0
- data/app/assets/javascripts/gridx/modules/select/Row.js +302 -0
- data/app/assets/javascripts/gridx/modules/select/_Base.js +99 -0
- data/app/assets/javascripts/gridx/modules/select/_RowCellBase.js +51 -0
- data/app/assets/javascripts/gridx/nls/Body.js +47 -0
- data/app/assets/javascripts/gridx/nls/FilterBar.js +133 -0
- data/app/assets/javascripts/gridx/nls/NestedSort.js +45 -0
- data/app/assets/javascripts/gridx/nls/PaginationBar.js +68 -0
- data/app/assets/javascripts/gridx/nls/QuickFilter.js +40 -0
- data/app/assets/javascripts/gridx/nls/SummaryBar.js +38 -0
- data/app/assets/javascripts/gridx/nls/ar/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/ar/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/ar/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/ar/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/ar/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/ar/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/bg/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/bg/FilterBar.js +88 -0
- data/app/assets/javascripts/gridx/nls/bg/NestedSort.js +12 -0
- data/app/assets/javascripts/gridx/nls/bg/PaginationBar.js +28 -0
- data/app/assets/javascripts/gridx/nls/bg/QuickFilter.js +8 -0
- data/app/assets/javascripts/gridx/nls/bg/SummaryBar.js +6 -0
- data/app/assets/javascripts/gridx/nls/ca/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/ca/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/ca/NestedSort.js +13 -0
- data/app/assets/javascripts/gridx/nls/ca/PaginationBar.js +30 -0
- data/app/assets/javascripts/gridx/nls/ca/QuickFilter.js +9 -0
- data/app/assets/javascripts/gridx/nls/ca/SummaryBar.js +7 -0
- data/app/assets/javascripts/gridx/nls/cs/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/cs/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/cs/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/cs/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/cs/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/cs/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/da/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/da/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/da/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/da/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/da/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/da/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/de/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/de/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/de/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/de/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/de/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/de/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/el/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/el/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/el/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/el/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/el/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/el/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/es/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/es/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/es/NestedSort.js +13 -0
- data/app/assets/javascripts/gridx/nls/es/PaginationBar.js +30 -0
- data/app/assets/javascripts/gridx/nls/es/QuickFilter.js +9 -0
- data/app/assets/javascripts/gridx/nls/es/SummaryBar.js +7 -0
- data/app/assets/javascripts/gridx/nls/fi/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/fi/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/fi/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/fi/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/fi/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/fi/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/fr/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/fr/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/fr/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/fr/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/fr/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/fr/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/he/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/he/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/he/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/he/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/he/QuickFilter.js +6 -0
- data/app/assets/javascripts/gridx/nls/he/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/hr/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/hr/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/hr/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/hr/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/hr/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/hr/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/hu/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/hu/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/hu/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/hu/PaginationBar.js +33 -0
- data/app/assets/javascripts/gridx/nls/hu/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/hu/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/it/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/it/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/it/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/it/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/it/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/it/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/ja/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/ja/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/ja/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/ja/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/ja/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/ja/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/kk/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/kk/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/kk/NestedSort.js +13 -0
- data/app/assets/javascripts/gridx/nls/kk/PaginationBar.js +30 -0
- data/app/assets/javascripts/gridx/nls/kk/QuickFilter.js +9 -0
- data/app/assets/javascripts/gridx/nls/kk/SummaryBar.js +7 -0
- data/app/assets/javascripts/gridx/nls/ko/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/ko/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/ko/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/ko/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/ko/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/ko/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/nb/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/nb/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/nb/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/nb/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/nb/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/nb/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/nl/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/nl/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/nl/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/nl/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/nl/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/nl/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/pl/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/pl/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/pl/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/pl/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/pl/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/pl/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/pt/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/pt/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/pt/NestedSort.js +13 -0
- data/app/assets/javascripts/gridx/nls/pt/PaginationBar.js +30 -0
- data/app/assets/javascripts/gridx/nls/pt/QuickFilter.js +9 -0
- data/app/assets/javascripts/gridx/nls/pt/SummaryBar.js +7 -0
- data/app/assets/javascripts/gridx/nls/pt-br/Body.js +6 -0
- data/app/assets/javascripts/gridx/nls/pt-br/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/pt-br/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/pt-br/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/pt-br/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/pt-br/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/pt-pt/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/pt-pt/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/pt-pt/NestedSort.js +13 -0
- data/app/assets/javascripts/gridx/nls/pt-pt/PaginationBar.js +30 -0
- data/app/assets/javascripts/gridx/nls/pt-pt/QuickFilter.js +9 -0
- data/app/assets/javascripts/gridx/nls/pt-pt/SummaryBar.js +7 -0
- data/app/assets/javascripts/gridx/nls/ro/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/ro/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/ro/NestedSort.js +13 -0
- data/app/assets/javascripts/gridx/nls/ro/PaginationBar.js +30 -0
- data/app/assets/javascripts/gridx/nls/ro/QuickFilter.js +9 -0
- data/app/assets/javascripts/gridx/nls/ro/SummaryBar.js +7 -0
- data/app/assets/javascripts/gridx/nls/ru/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/ru/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/ru/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/ru/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/ru/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/ru/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/sk/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/sk/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/sk/NestedSort.js +13 -0
- data/app/assets/javascripts/gridx/nls/sk/PaginationBar.js +30 -0
- data/app/assets/javascripts/gridx/nls/sk/QuickFilter.js +9 -0
- data/app/assets/javascripts/gridx/nls/sk/SummaryBar.js +7 -0
- data/app/assets/javascripts/gridx/nls/sl/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/sl/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/sl/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/sl/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/sl/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/sl/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/sv/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/sv/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/sv/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/sv/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/sv/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/sv/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/th/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/th/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/th/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/th/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/th/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/th/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/tr/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/tr/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/tr/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/tr/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/tr/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/tr/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/uk/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/uk/FilterBar.js +88 -0
- data/app/assets/javascripts/gridx/nls/uk/NestedSort.js +12 -0
- data/app/assets/javascripts/gridx/nls/uk/PaginationBar.js +28 -0
- data/app/assets/javascripts/gridx/nls/uk/QuickFilter.js +8 -0
- data/app/assets/javascripts/gridx/nls/uk/SummaryBar.js +6 -0
- data/app/assets/javascripts/gridx/nls/zh/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/zh/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/zh/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/zh/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/zh/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/zh/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/nls/zh-tw/Body.js +11 -0
- data/app/assets/javascripts/gridx/nls/zh-tw/FilterBar.js +89 -0
- data/app/assets/javascripts/gridx/nls/zh-tw/NestedSort.js +11 -0
- data/app/assets/javascripts/gridx/nls/zh-tw/PaginationBar.js +34 -0
- data/app/assets/javascripts/gridx/nls/zh-tw/QuickFilter.js +7 -0
- data/app/assets/javascripts/gridx/nls/zh-tw/SummaryBar.js +5 -0
- data/app/assets/javascripts/gridx/support/DropDownPager.js +111 -0
- data/app/assets/javascripts/gridx/support/DropDownSizer.js +112 -0
- data/app/assets/javascripts/gridx/support/GotoPageButton.js +92 -0
- data/app/assets/javascripts/gridx/support/GotoPagePane.js +61 -0
- data/app/assets/javascripts/gridx/support/LinkPager.js +180 -0
- data/app/assets/javascripts/gridx/support/LinkSizer.js +138 -0
- data/app/assets/javascripts/gridx/support/QuickFilter.js +138 -0
- data/app/assets/javascripts/gridx/support/Summary.js +49 -0
- data/app/assets/javascripts/gridx/support/_LinkPageBase.js +92 -0
- data/app/assets/javascripts/gridx/support/exporter/exporter.js +350 -0
- data/app/assets/javascripts/gridx/support/exporter/toCSV.js +75 -0
- data/app/assets/javascripts/gridx/support/exporter/toTable.js +92 -0
- data/app/assets/javascripts/gridx/support/menu/AZFilterMenu.js +57 -0
- data/app/assets/javascripts/gridx/support/menu/NumberFilterMenu.js +87 -0
- data/app/assets/javascripts/gridx/support/menu/_FilterMenuBase.js +83 -0
- data/app/assets/javascripts/gridx/support/printer.js +157 -0
- data/app/assets/javascripts/gridx/templates/FilterBar.html +8 -0
- data/app/assets/javascripts/gridx/templates/FilterConfirmDialog.html +5 -0
- data/app/assets/javascripts/gridx/templates/FilterDialog.html +19 -0
- data/app/assets/javascripts/gridx/templates/FilterPane.html +64 -0
- data/app/assets/javascripts/gridx/templates/GotoPagePane.html +28 -0
- data/app/assets/javascripts/gridx/templates/Grid.html +19 -0
- data/app/assets/javascripts/gridx/templates/LinkPager.html +24 -0
- data/app/assets/javascripts/gridx/templates/PaginationBar.html +60 -0
- data/app/assets/javascripts/gridx/templates/PaginationBarDD.html +23 -0
- data/app/assets/javascripts/gridx/templates/QuickFilter.html +38 -0
- data/app/assets/stylesheets/gridx/mobile/themes/iphone/Grid.css +107 -0
- data/app/assets/stylesheets/gridx/resources/Dod.css +39 -0
- data/app/assets/stylesheets/gridx/resources/Gridx.css +10 -0
- data/app/assets/stylesheets/gridx/resources/Gridx_rtl.css +5 -0
- data/app/assets/stylesheets/gridx/resources/Tree.css +46 -0
- data/app/assets/stylesheets/gridx/resources/Tree_rtl.css +4 -0
- data/app/assets/stylesheets/gridx/resources/bar.css +24 -0
- data/app/assets/stylesheets/gridx/resources/basic.css +482 -0
- data/app/assets/stylesheets/gridx/resources/basic_rtl.css +37 -0
- data/app/assets/stylesheets/gridx/resources/claro/Gridx.css +16 -0
- data/app/assets/stylesheets/gridx/resources/claro/Gridx_rtl.css +7 -0
- data/app/assets/stylesheets/gridx/resources/claro/basic.css +109 -0
- data/app/assets/stylesheets/gridx/resources/claro/basic_rtl.css +21 -0
- data/app/assets/stylesheets/gridx/resources/claro/filter.css +47 -0
- data/app/assets/stylesheets/gridx/resources/claro/lock.css +19 -0
- data/app/assets/stylesheets/gridx/resources/claro/pagination.css +33 -0
- data/app/assets/stylesheets/gridx/resources/claro/select.css +20 -0
- data/app/assets/stylesheets/gridx/resources/dnd.css +108 -0
- data/app/assets/stylesheets/gridx/resources/filter.css +321 -0
- data/app/assets/stylesheets/gridx/resources/filter_rtl.css +38 -0
- data/app/assets/stylesheets/gridx/resources/lock.css +20 -0
- data/app/assets/stylesheets/gridx/resources/pagination.css +142 -0
- data/app/assets/stylesheets/gridx/resources/pagination_rtl.css +54 -0
- data/app/assets/stylesheets/gridx/resources/select.css +39 -0
- data/app/assets/stylesheets/gridx/resources/sort.css +154 -0
- data/app/assets/stylesheets/gridx/resources/sort_rtl.css +51 -0
- data/lib/gridx-rails/engine.rb +8 -0
- data/lib/gridx-rails/version.rb +3 -0
- data/lib/gridx-rails.rb +4 -0
- data/lib/tasks/gridx-rails_tasks.rake +52 -0
- data/test/dummy/README.rdoc +261 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +15 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/config/application.rb +59 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +67 -0
- data/test/dummy/config/environments/test.rb +37 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/inflections.rb +15 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +7 -0
- data/test/dummy/config/initializers/session_store.rb +8 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +58 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/test.log +78 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +25 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +6 -0
- data/test/gridx-rails_test.rb +7 -0
- data/test/test_helper.rb +15 -0
- metadata +621 -0
|
@@ -0,0 +1,482 @@
|
|
|
1
|
+
/*Header, Body, Scroller*/
|
|
2
|
+
/*common*/
|
|
3
|
+
.gridx {
|
|
4
|
+
position: relative;
|
|
5
|
+
overflow: hidden;
|
|
6
|
+
border: 1px solid #ddd;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.gridxHeader,
|
|
10
|
+
.gridxFooter {
|
|
11
|
+
overflow: hidden;
|
|
12
|
+
background-color: #eee;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.gridxLoad {
|
|
16
|
+
display: none;
|
|
17
|
+
position: absolute;
|
|
18
|
+
top: 0;
|
|
19
|
+
left: 0;
|
|
20
|
+
}
|
|
21
|
+
.gridxLoading {
|
|
22
|
+
display: block;
|
|
23
|
+
width: 100%;
|
|
24
|
+
height: 100%;
|
|
25
|
+
background: url('images/treeExpand_loading.gif') #ddd center center no-repeat;
|
|
26
|
+
z-index: 99999;
|
|
27
|
+
opacity: 0.3;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/* Keep footer at bottom, so the grid won't distort too much when zoomed in/out*/
|
|
31
|
+
.gridxFooter {
|
|
32
|
+
position: absolute;
|
|
33
|
+
left: 0;
|
|
34
|
+
bottom: 0;
|
|
35
|
+
width: 100%;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
.gridxHScrollerInner {
|
|
39
|
+
display: none;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.gridxMain {
|
|
43
|
+
position: relative;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
/*Header*/
|
|
47
|
+
.gridxHeaderRow {
|
|
48
|
+
background-color: #eee;
|
|
49
|
+
border-bottom: 1px solid #ccc;
|
|
50
|
+
position: relative;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.gridxHeaderRowHidden {
|
|
54
|
+
height: 0;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
.gridxHeaderRowInner {
|
|
58
|
+
overflow: hidden;
|
|
59
|
+
border-style: solid;
|
|
60
|
+
border-color: #ccc;
|
|
61
|
+
border-width: 0 1px 0 0;
|
|
62
|
+
}
|
|
63
|
+
.dj_ie7 .gridxHeaderRowInner,
|
|
64
|
+
.dj_ie6 .gridxHeaderRowInner {
|
|
65
|
+
position: relative;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
.gridxHeaderRow table {
|
|
69
|
+
border-collapse: separate;
|
|
70
|
+
border-spacing: 0;
|
|
71
|
+
border: none;
|
|
72
|
+
table-layout: fixed;
|
|
73
|
+
width: 1px;
|
|
74
|
+
}
|
|
75
|
+
.gridxGH .gridxHeaderRow table {
|
|
76
|
+
width: auto;
|
|
77
|
+
}
|
|
78
|
+
.gridxPercentColumnWidth .gridxHeaderRow table,
|
|
79
|
+
.gridxPercentColumnWidth .gridxRow table.gridxRowTable {
|
|
80
|
+
width: 100%;
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
.gridxGroupHeader,
|
|
84
|
+
.gridxHeaderRow .gridxCell {
|
|
85
|
+
border-width: 1px;
|
|
86
|
+
border-style: solid;
|
|
87
|
+
border-color: transparent #ccc transparent transparent;
|
|
88
|
+
padding: 3px;
|
|
89
|
+
text-align: left;
|
|
90
|
+
overflow: hidden;
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
.gridx .gridxHeader .gridxHeaderRow .gridxHeaderRowInner .gridxCell.gridxHeaderCellFocus {
|
|
94
|
+
border: 1px dashed darkblue;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
.gridxHeaderRow :focus {
|
|
98
|
+
outline: none;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
/*Body*/
|
|
102
|
+
.gridxBody {
|
|
103
|
+
height: 100%;
|
|
104
|
+
width: 100%;
|
|
105
|
+
overflow: hidden;
|
|
106
|
+
position: absolute;
|
|
107
|
+
top: 0;
|
|
108
|
+
box-sizing: border-box; /* css3 rec */
|
|
109
|
+
-moz-box-sizing: border-box; /* ff2 */
|
|
110
|
+
-ms-box-sizing: border-box; /* ie8 */
|
|
111
|
+
-webkit-box-sizing: border-box; /* safari3 */
|
|
112
|
+
-khtml-box-sizing: border-box; /* konqueror */
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
.gridxBodyRowHoverEffect .gridxRowOver .gridxRowTable {
|
|
116
|
+
background-color: #cee8f2;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
.gridxRow {
|
|
120
|
+
background-color: #fff;
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.gridxRowHeaderRow table,
|
|
124
|
+
.gridxRow .gridxRowTable {
|
|
125
|
+
border-collapse: separate;
|
|
126
|
+
border-spacing: 0;
|
|
127
|
+
border: none;
|
|
128
|
+
table-layout: fixed;
|
|
129
|
+
width: 1px;
|
|
130
|
+
empty-cells: show;
|
|
131
|
+
}
|
|
132
|
+
.dj_safari .gridxGH .gridxRow .gridxRowTable {
|
|
133
|
+
width: auto;
|
|
134
|
+
}
|
|
135
|
+
.dj_safari .gridxPercentColumnWidth .gridxRow .gridxRowTable {
|
|
136
|
+
width: 100%;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
.gridxRow .gridxCell {
|
|
140
|
+
border-style: solid;
|
|
141
|
+
border-color: transparent #ccc #ccc transparent;
|
|
142
|
+
border-width: 1px;
|
|
143
|
+
padding: 3px;
|
|
144
|
+
text-align: left;
|
|
145
|
+
overflow: hidden;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.gridxCell.gridxCellChanged{
|
|
149
|
+
//background: url('images/gridxCellChanged.png') no-repeat top right;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
.gridxRowDummy {
|
|
153
|
+
height: 24px;
|
|
154
|
+
width: 100%;
|
|
155
|
+
background: url('images/loadingAnimation.gif') no-repeat left;
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
.gridxBody .gridxCell:focus {
|
|
159
|
+
outline: none;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
.gridx .gridxBody .gridxCellFocus {
|
|
163
|
+
border: 1px dashed darkblue !important;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
.gridxBodyEmpty {
|
|
167
|
+
width: 100%;
|
|
168
|
+
height: 100px;
|
|
169
|
+
padding: 30px 0;
|
|
170
|
+
text-align: center;
|
|
171
|
+
position: absolute;
|
|
172
|
+
top: 0;
|
|
173
|
+
left: 0;
|
|
174
|
+
}
|
|
175
|
+
.gridxBodyEmpty:focus {
|
|
176
|
+
outline: 1px dotted #aaa;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
/*HScroller*/
|
|
180
|
+
.gridxHScrollerInner {
|
|
181
|
+
overflow: scroll;
|
|
182
|
+
overflow-y: hidden;
|
|
183
|
+
border: none;
|
|
184
|
+
outline: none;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
/* ie6 will show the wrong height */
|
|
188
|
+
.dj_ie6 .gridxHScrollerInner {
|
|
189
|
+
line-height: 0;
|
|
190
|
+
}
|
|
191
|
+
|
|
192
|
+
.gridxMac .gridxHScrollerInner::-webkit-scrollbar {
|
|
193
|
+
-webkit-appearance:none !important;
|
|
194
|
+
height:11px !important;
|
|
195
|
+
}
|
|
196
|
+
.gridxMac .gridxHScrollerInner::-webkit-scrollbar-thumb {
|
|
197
|
+
border-radius:8px !important;
|
|
198
|
+
border:2px solid white !important;
|
|
199
|
+
background-color:rgba(100,100,100,.5) !important;
|
|
200
|
+
}
|
|
201
|
+
.gridxMac .gridxHScrollerInner::-webkit-scrollbar-thumb:hover,
|
|
202
|
+
.gridxMac .gridxHScrollerInner::-webkit-scrollbar-thumb:active,
|
|
203
|
+
.gridxMac .gridxHScrollerInner::-webkit-scrollbar-thumb:focus {
|
|
204
|
+
background-color: rgba(0,0,0,.5) !important;
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
|
|
209
|
+
/*VScroller*/
|
|
210
|
+
.gridxVScroller {
|
|
211
|
+
position: absolute;
|
|
212
|
+
top: 0px;
|
|
213
|
+
right: 0px;
|
|
214
|
+
overflow: scroll;
|
|
215
|
+
overflow-x: hidden;
|
|
216
|
+
border: none;
|
|
217
|
+
height: 100%;
|
|
218
|
+
outline: none;
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
.gridxMac .gridxVScroller::-webkit-scrollbar {
|
|
222
|
+
-webkit-appearance:none !important;
|
|
223
|
+
width:11px !important;
|
|
224
|
+
background-color: #eee !important;
|
|
225
|
+
}
|
|
226
|
+
.gridxMac .gridxVScroller::-webkit-scrollbar-thumb {
|
|
227
|
+
border-radius:8px !important;
|
|
228
|
+
border:2px solid white !important;
|
|
229
|
+
background-color:rgba(100,100,100,.5) !important;
|
|
230
|
+
}
|
|
231
|
+
.gridxMac .gridxVScroller::-webkit-scrollbar-thumb:hover,
|
|
232
|
+
.gridxMac .gridxVScroller::-webkit-scrollbar-thumb:active,
|
|
233
|
+
.gridxMac .gridxVScroller::-webkit-scrollbar-thumb:focus {
|
|
234
|
+
background-color: rgba(0,0,0,.5) !important;
|
|
235
|
+
}
|
|
236
|
+
|
|
237
|
+
|
|
238
|
+
/*RowHeader*/
|
|
239
|
+
.gridxRowHeaderHeader,
|
|
240
|
+
.gridxRowHeaderBody {
|
|
241
|
+
position: absolute;
|
|
242
|
+
left: 0;
|
|
243
|
+
top: 0;
|
|
244
|
+
height: 100%;
|
|
245
|
+
overflow: hidden;
|
|
246
|
+
border-right: 1px solid #E5DAC8;
|
|
247
|
+
box-sizing: border-box; /* css3 rec */
|
|
248
|
+
-moz-box-sizing: border-box; /* ff2 */
|
|
249
|
+
-ms-box-sizing: border-box; /* ie8 */
|
|
250
|
+
-webkit-box-sizing: border-box; /* safari3 */
|
|
251
|
+
-khtml-box-sizing: border-box; /* konqueror */
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.gridxRowHeaderBody table {
|
|
255
|
+
width: 100%;
|
|
256
|
+
}
|
|
257
|
+
.gridxRowHeaderHeader table {
|
|
258
|
+
height: 100%;
|
|
259
|
+
}
|
|
260
|
+
|
|
261
|
+
.gridxRowHeaderRow {
|
|
262
|
+
background: url("images/header.png") #EDF2F7 repeat-x bottom;
|
|
263
|
+
background: #edf2f7; /* Old browsers */
|
|
264
|
+
background: -moz-linear-gradient(top, #edf2f7 0%, #d0dfea 100%); /* FF3.6+ */
|
|
265
|
+
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#edf2f7), color-stop(100%,#d0dfea)); /* Chrome,Safari4+ */
|
|
266
|
+
background: -webkit-linear-gradient(top, #edf2f7 0%,#d0dfea 100%); /* Chrome10+,Safari5.1+ */
|
|
267
|
+
background: -o-linear-gradient(top, #edf2f7 0%,#d0dfea 100%); /* Opera 11.10+ */
|
|
268
|
+
background: -ms-linear-gradient(top, #edf2f7 0%,#d0dfea 100%); /* IE10+ */
|
|
269
|
+
background: linear-gradient(top, #edf2f7 0%,#d0dfea 100%); /* W3C */
|
|
270
|
+
width: 100%;
|
|
271
|
+
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
.gridxRowHeaderHeader .gridxHeaderCellFocus {
|
|
275
|
+
border-top: 1px dashed darkblue;
|
|
276
|
+
border-bottom: 1px dashed darkblue;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
.gridxRowHeaderCell {
|
|
280
|
+
border-bottom: 1px solid #E5DAC8;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.gridxRowHeaderRow .gridxCellFocus {
|
|
284
|
+
border: 1px dashed darkblue !important;
|
|
285
|
+
}
|
|
286
|
+
|
|
287
|
+
/* Firefox can not fire onmouseover when mouse is "dragging" an "overflow: hidden" node.
|
|
288
|
+
* This fix is for IndirectSelect working with ExtendedSelect only */
|
|
289
|
+
.dj_gecko .gridx .gridxRowHeaderBody .gridxRowHeaderRow .gridxRowHeaderCell .dijitCheckBox {
|
|
290
|
+
overflow: visible;
|
|
291
|
+
}
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
/*Column Resizer*/
|
|
295
|
+
/*Column resizing plugin*/
|
|
296
|
+
.gridxColumnResizing {
|
|
297
|
+
cursor: ew-resize;
|
|
298
|
+
}
|
|
299
|
+
.dj_ie .gridxColumnResizing {
|
|
300
|
+
cursor: e-resize;
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
.gridxColumnResizer {
|
|
304
|
+
position: absolute;
|
|
305
|
+
height: 100%;
|
|
306
|
+
width: 2px;
|
|
307
|
+
background-color: #666;
|
|
308
|
+
z-index: 1000;
|
|
309
|
+
top: 0;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
/*CellDijit*/
|
|
313
|
+
.gridxCellWidget {
|
|
314
|
+
width: 100%;
|
|
315
|
+
height: 100%;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
.gridxCellEditor,
|
|
319
|
+
/* in IE dijitTextArea has width auto by default */
|
|
320
|
+
.dj_ie [class~='dijitTextArea'].gridxCellEditor {
|
|
321
|
+
width: 100%;
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
[class~='dijitSliderV'].gridxCellEditor {
|
|
325
|
+
width: auto;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
/* TouchVScroller */
|
|
329
|
+
.gridxTouchVScroller .gridxVScroller {
|
|
330
|
+
display: none;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
.gridxTouchVScroller .gridxMain {
|
|
334
|
+
overflow: hidden;
|
|
335
|
+
}
|
|
336
|
+
.gridxTouchVScroller .gridxBody {
|
|
337
|
+
height: auto !important;
|
|
338
|
+
width: auto !important;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
.gridxTouchVScroller .gridxHeaderRowInner {
|
|
342
|
+
position: relative;
|
|
343
|
+
}
|
|
344
|
+
.gridxTouchVScroller .gridxHeaderRowInner > table {
|
|
345
|
+
position: absolute;
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
/* TouchScroll */
|
|
349
|
+
.gridxTouchScrollVWrapper {
|
|
350
|
+
overflow: hidden;
|
|
351
|
+
position: absolute;
|
|
352
|
+
right: 2px;
|
|
353
|
+
top: 2px;
|
|
354
|
+
width: 5px;
|
|
355
|
+
}
|
|
356
|
+
|
|
357
|
+
.gridxTouchScrollHWrapper {
|
|
358
|
+
overflow: hidden;
|
|
359
|
+
position: absolute;
|
|
360
|
+
bottom: 2px;
|
|
361
|
+
left: 2px;
|
|
362
|
+
height: 5px;
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
.gridxTouchScrollVBar {
|
|
366
|
+
background-color: #606060;
|
|
367
|
+
opacity: 0;
|
|
368
|
+
position: absolute;
|
|
369
|
+
z-index: 999;
|
|
370
|
+
width: 5px;
|
|
371
|
+
}
|
|
372
|
+
|
|
373
|
+
.gridxTouchScrollHBar {
|
|
374
|
+
background-color: #606060;
|
|
375
|
+
opacity: 0;
|
|
376
|
+
position: absolute;
|
|
377
|
+
z-index: 999;
|
|
378
|
+
height: 5px;
|
|
379
|
+
}
|
|
380
|
+
|
|
381
|
+
.gridxTouchScrollVBar,
|
|
382
|
+
.gridxTouchScrollHBar {
|
|
383
|
+
-webkit-transition-property: opacity;
|
|
384
|
+
-moz-transition-property: opacity;
|
|
385
|
+
-o-transition-property: opacity;
|
|
386
|
+
transition-property: opacity;
|
|
387
|
+
-webkit-transition-duration: 0.3s;
|
|
388
|
+
-moz-transition-duration: 0.3s;
|
|
389
|
+
-o-transition-duration: 0.3s;
|
|
390
|
+
transition-duration: 0.3s;
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
/* CSS Hidden Column */
|
|
394
|
+
.gridxHiddenColumn {
|
|
395
|
+
display: none;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
|
|
399
|
+
/*Header Menu*/
|
|
400
|
+
.gridxHeaderMenu {
|
|
401
|
+
width: 100px;
|
|
402
|
+
}
|
|
403
|
+
.gridxHeaderMenuBtn {
|
|
404
|
+
/* float: right;*/
|
|
405
|
+
/* top: 1px;*/
|
|
406
|
+
/* bottom: 1px;*/
|
|
407
|
+
width: 10px;
|
|
408
|
+
height:13px;
|
|
409
|
+
border-left: 1px solid #fff;
|
|
410
|
+
/* display: none;*/
|
|
411
|
+
/* cursor: pointer;*/
|
|
412
|
+
/* background: transparent url(images/sprite_icons.png) no-repeat -97px 9px;*/
|
|
413
|
+
background: transparent url(images/sprite_icons.png) no-repeat -98px 5px;
|
|
414
|
+
/* margin-top:-4px;*/
|
|
415
|
+
/* margin-bottom: -4px;*/
|
|
416
|
+
/* margin-right: -3px;*/
|
|
417
|
+
|
|
418
|
+
}
|
|
419
|
+
.gridxHeaderMenuBtnInner {
|
|
420
|
+
display: none;
|
|
421
|
+
}
|
|
422
|
+
.dijit_a11y .gridxHeaderMenuBtnInner {
|
|
423
|
+
display: inline;
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
/*.gridxHeaderRow .gridxCell:hover .gridxHeaderMenuBtn{*/
|
|
427
|
+
/* display: block;*/
|
|
428
|
+
/*}*/
|
|
429
|
+
/*Header Menu End*/
|
|
430
|
+
|
|
431
|
+
|
|
432
|
+
|
|
433
|
+
.gridxLoadMore {
|
|
434
|
+
padding: 10px;
|
|
435
|
+
text-align: center;
|
|
436
|
+
}
|
|
437
|
+
.gridxLoadMore button {
|
|
438
|
+
width: 100%;
|
|
439
|
+
min-height: 28px;
|
|
440
|
+
}
|
|
441
|
+
.gridxLoadingMore {
|
|
442
|
+
display: inline-block;
|
|
443
|
+
background-image: url('images/treeExpand_loading.gif');
|
|
444
|
+
vertical-align: middle;
|
|
445
|
+
width: 20px;
|
|
446
|
+
height: 20px;
|
|
447
|
+
margin: 0 5px;
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
/* header region */
|
|
451
|
+
.gridxHeaderRegion {
|
|
452
|
+
float: right;
|
|
453
|
+
display: none;
|
|
454
|
+
cursor: pointer;
|
|
455
|
+
}
|
|
456
|
+
.gridxCell:hover .gridxHeaderRegion,
|
|
457
|
+
.gridxHeaderRegionFocus .gridxHeaderRegion {
|
|
458
|
+
display: block;
|
|
459
|
+
}
|
|
460
|
+
.gridxHeaderRegionFocus .gridxSortNode:focus,
|
|
461
|
+
.gridxHeaderRegionFocus .gridxHeaderRegion:focus {
|
|
462
|
+
outline: 1px dashed darkblue;
|
|
463
|
+
}
|
|
464
|
+
|
|
465
|
+
.gridxCellEditedBg{
|
|
466
|
+
background-image: url('images/gridxCellChanged.png');
|
|
467
|
+
height: 6px;
|
|
468
|
+
width: 6px;
|
|
469
|
+
position:absolute;
|
|
470
|
+
z-index:10
|
|
471
|
+
}
|
|
472
|
+
.gridxCellEditedBg span{
|
|
473
|
+
display: none;
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
.dijit_a11y .gridxCellEditedBg span{
|
|
477
|
+
position: relative;
|
|
478
|
+
display: block;
|
|
479
|
+
left: -3px;
|
|
480
|
+
color: white;
|
|
481
|
+
font-size: 8px;
|
|
482
|
+
}
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
/* In IE7, if not set relative position, the margins can not be nagative.*/
|
|
2
|
+
.dj_ie7 .gridxRtl .gridxHeaderRow table {
|
|
3
|
+
position: relative;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
/* Body */
|
|
7
|
+
.gridxRtl .gridxRow .gridxCell {
|
|
8
|
+
border-color: transparent transparent #ccc #ccc;
|
|
9
|
+
text-align: right;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
/* VScroller */
|
|
13
|
+
.gridxRtl .gridxVScroller {
|
|
14
|
+
right: auto;
|
|
15
|
+
left: 0;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
/* some browsers do not automatically move the scroll bar to left, so we move for them */
|
|
19
|
+
.dj_ff3 .gridxRtl .gridxVScroller,
|
|
20
|
+
.dj_webkit .gridxRtl .gridxVScroller {
|
|
21
|
+
left: -1px;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
/* RowHeader */
|
|
25
|
+
.gridxRtl .gridxRowHeaderHeader,
|
|
26
|
+
.gridxRtl .gridxRowHeaderBody {
|
|
27
|
+
right: 0;
|
|
28
|
+
left: auto;
|
|
29
|
+
border-right: none;
|
|
30
|
+
border-left: 1px solid #E5DAC8;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
/* HeaderRegion */
|
|
34
|
+
.gridxRtl .gridxHeaderRegion {
|
|
35
|
+
float: left;
|
|
36
|
+
}
|
|
37
|
+
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
@import url('../basic.css');
|
|
2
|
+
@import url('../sort.css');
|
|
3
|
+
@import url('../lock.css');
|
|
4
|
+
@import url('../Tree.css');
|
|
5
|
+
@import url('../Dod.css');
|
|
6
|
+
@import url('../select.css');
|
|
7
|
+
@import url('../bar.css');
|
|
8
|
+
@import url('../dnd.css');
|
|
9
|
+
@import url('../filter.css');
|
|
10
|
+
@import url('../pagination.css');
|
|
11
|
+
|
|
12
|
+
@import url('basic.css');
|
|
13
|
+
@import url('filter.css');
|
|
14
|
+
@import url('lock.css');
|
|
15
|
+
@import url('select.css');
|
|
16
|
+
@import url('pagination.css');
|
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
/*common*/
|
|
2
|
+
.claro .gridx {
|
|
3
|
+
background-color: #fff;
|
|
4
|
+
border: 1px solid #DBDBDB;
|
|
5
|
+
color: #131313;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
/*Body*/
|
|
9
|
+
.claro .gridxCell{
|
|
10
|
+
border-color: transparent #E5DAC8 #E5DAC8 transparent;
|
|
11
|
+
}
|
|
12
|
+
.claro .gridxRowOdd .gridxRowTable {
|
|
13
|
+
background-color: #f1f8ff;
|
|
14
|
+
}
|
|
15
|
+
.claro .gridxBodyRowHoverEffect .gridxRowOver .gridxRowTable,
|
|
16
|
+
.claro .gridxBodyRowHoverEffect .gridxRowOver .gridxCell {
|
|
17
|
+
background:url("../images/row_back.png") #ABD6FF repeat-x;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.claro .gridx .gridxBody .gridxRow .gridxCellFocus {
|
|
21
|
+
outline: none;
|
|
22
|
+
border: 1px dashed darkblue;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
/*Header*/
|
|
26
|
+
.claro .gridxHeaderRow {
|
|
27
|
+
border-top: 1px solid #FFFFFF;
|
|
28
|
+
border-bottom: 1px solid #FFFFFF;
|
|
29
|
+
clear: both;
|
|
30
|
+
}
|
|
31
|
+
.claro .gridx .gridxHeader .gridxHeaderRow .gridxHeaderCellFocus {
|
|
32
|
+
outline: none;
|
|
33
|
+
border: 1px dashed darkblue;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
.claro .gridxHeaderRowHidden {
|
|
37
|
+
height: 0;
|
|
38
|
+
border-width: 0;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
.dj_ie7 .claro .gridxRowHeaderRow table {
|
|
42
|
+
border-collapse: collapse;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
.claro .gridxHeaderRowInner {
|
|
46
|
+
background-image: url('../images/claro-grid-header-onepixel.bmp');
|
|
47
|
+
background-position: right;
|
|
48
|
+
background-repeat: repeat-y;
|
|
49
|
+
border-right: 1px solid #FFFFFF;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
.claro .gridxGroupHeader {
|
|
53
|
+
border-color: #EDF2F7 #BCBCBC #BCBCBC #FFFFFF;
|
|
54
|
+
}
|
|
55
|
+
.claro .gridxHeaderRow .gridxCell {
|
|
56
|
+
border-color: #EDF2F7 #BCBCBC #D0DFEA #FFFFFF;
|
|
57
|
+
}
|
|
58
|
+
.claro .gridxHeaderRow .gridxSubHeader {
|
|
59
|
+
border-top-color: #FFFFFF;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.claro .gridxHeaderRow {
|
|
63
|
+
background: #edf2f7; /* Old browsers */
|
|
64
|
+
background: -moz-linear-gradient(top, #edf2f7 0%, #d0dfea 100%); /* FF3.6+ */
|
|
65
|
+
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#edf2f7), color-stop(100%,#d0dfea)); /* Chrome,Safari4+ */
|
|
66
|
+
background: -webkit-linear-gradient(top, #edf2f7 0%,#d0dfea 100%); /* Chrome10+,Safari5.1+ */
|
|
67
|
+
background: -o-linear-gradient(top, #edf2f7 0%,#d0dfea 100%); /* Opera 11.10+ */
|
|
68
|
+
background: -ms-linear-gradient(top, #edf2f7 0%,#d0dfea 100%); /* IE10+ */
|
|
69
|
+
background: linear-gradient(top, #edf2f7 0%,#d0dfea 100%); /* W3C */
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
.claro .gridxHeader .gridxHeaderRow .gridxCell:hover {
|
|
73
|
+
background: #9bcaf7;
|
|
74
|
+
border-top-color: #9BCAF7;
|
|
75
|
+
}
|
|
76
|
+
.claro .gridxHeader .gridxHeaderRow .gridxSubHeader.gridxCell:hover,
|
|
77
|
+
.gridxColumnResizing .gridx .gridxHeader .gridxHeaderRow .gridxSubHeader.gridxCell:hover {
|
|
78
|
+
border-top-color: #FFFFFF;
|
|
79
|
+
}
|
|
80
|
+
.gridxColumnResizing .gridx .gridxHeader .gridxHeaderRow .gridxCell:hover {
|
|
81
|
+
background: transparent;
|
|
82
|
+
border-top-color: transparent;
|
|
83
|
+
}
|
|
84
|
+
.claro .gridx .gridxHeader .gridxHeaderRow .gridxSubHeader.gridxHeaderCellFocus,
|
|
85
|
+
.claro .gridx .gridxHeader .gridxHeaderRow .gridxSubHeader.gridxHeaderCellFocus:hover {
|
|
86
|
+
border-top-color: darkblue;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
/* Row header */
|
|
90
|
+
.claro .gridxRowHeaderHeader .gridxHeaderCellFocus {
|
|
91
|
+
outline: none;
|
|
92
|
+
border: 1px dashed darkblue;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.claro .gridxRowHeaderRow .gridxCellFocus {
|
|
96
|
+
outline: none;
|
|
97
|
+
border: 1px dashed darkblue;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
/* toolbar */
|
|
101
|
+
.claro .gridxBarToolBar .dijitToolbar {
|
|
102
|
+
background: none;
|
|
103
|
+
border-bottom: none;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
/* PagedBody */
|
|
107
|
+
.claro .gridxBodyFirstRow .gridxCell {
|
|
108
|
+
border-top-color: #E5DAC8;
|
|
109
|
+
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
/* Header */
|
|
2
|
+
.claro .gridxRtl .gridxHeaderRow .gridxCell {
|
|
3
|
+
border-color: transparent #FFFFFF transparent #BCBCBC ;
|
|
4
|
+
}
|
|
5
|
+
.claro .gridxRtl .gridxGroupHeader {
|
|
6
|
+
border-color: transparent #FFFFFF #BCBCBC #BCBCBC;
|
|
7
|
+
}
|
|
8
|
+
.claro .gridxRtl .gridxHeaderRow .gridxSubHeader {
|
|
9
|
+
border-top-color: #FFFFFF;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
.claro .gridxRtl .gridxHeaderRowInner {
|
|
13
|
+
background-position: left;
|
|
14
|
+
border-right: none;
|
|
15
|
+
border-left: 1px solid #FFFFFF;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
/* Body */
|
|
19
|
+
.claro .gridxRtl .gridxBody .gridxCell{
|
|
20
|
+
border-color: transparent transparent #E5DAC8 #E5DAC8;
|
|
21
|
+
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
/* Quick Filter */
|
|
2
|
+
.claro .gridxQuickFilter {
|
|
3
|
+
padding: 2px;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.claro .gridxQuickFilterButton,
|
|
7
|
+
.claro .gridxQuickFilterComboButton {
|
|
8
|
+
margin: 0;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.claro .gridxQuickFilterComboButton .dijitButtonNode,
|
|
12
|
+
.claro .gridxQuickFilterButton .dijitButtonNode {
|
|
13
|
+
border: none;
|
|
14
|
+
background: none;
|
|
15
|
+
box-shadow: none;
|
|
16
|
+
padding: 1px;
|
|
17
|
+
|
|
18
|
+
-moz-transition-duration: 0.3s, 0.35s;
|
|
19
|
+
-moz-transition-property: background-color;
|
|
20
|
+
border-radius: 4px;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.claro .gridxQuickFilterComboButton .dijitButtonNode {
|
|
24
|
+
border-radius: 4px 0 0 4px;
|
|
25
|
+
}
|
|
26
|
+
.claro .gridxQuickFilterComboButton .dijitArrowButton {
|
|
27
|
+
border-radius: 0 4px 4px 0;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.claro .gridxQuickFilter .dijitComboButtonHover .dijitButtonNode,
|
|
31
|
+
.claro .gridxQuickFilter .dijitButtonHover .dijitButtonNode {
|
|
32
|
+
background-color: #6bd6ff;
|
|
33
|
+
background-image: -moz-linear-gradient(rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%);
|
|
34
|
+
background-repeat: repeat-x;
|
|
35
|
+
padding: 0;
|
|
36
|
+
border: 1px solid #759DC0;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
.claro .gridxQuickFilter .dijitComboButtonActive .dijitButtonNode,
|
|
40
|
+
.claro .gridxQuickFilter .dijitButtonActive .dijitButtonNode {
|
|
41
|
+
background-color: #7DBDFA;
|
|
42
|
+
background-image: -moz-linear-gradient(rgba(190, 190, 190, 0.98) 0px, rgba(255, 255, 255, 0.65) 3px, rgba(255, 255, 255, 0) 100%);
|
|
43
|
+
background-repeat: repeat-x;
|
|
44
|
+
padding: 0;
|
|
45
|
+
border: 1px solid #759DC0;
|
|
46
|
+
}
|
|
47
|
+
|