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,19 @@
|
|
|
1
|
+
.claro .gridxRowOdd .gridxLockedCell {
|
|
2
|
+
background-color: #f1f8ff;
|
|
3
|
+
}
|
|
4
|
+
.claro .gridxRowOver .gridxLockedCell {
|
|
5
|
+
background:url("../images/row_back.png") #ABD6FF repeat-x;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
.claro .gridxHeaderRow .gridxLockedCell,
|
|
9
|
+
.gridxColumnResizing .gridx .gridxHeader .gridxHeaderRow .gridxLockedCell:hover {
|
|
10
|
+
border-top-color: #edf2f7;
|
|
11
|
+
background: #edf2f7; /* Old browsers */
|
|
12
|
+
background: -moz-linear-gradient(top, #edf2f7 0%, #d0dfea 100%) #ffffff; /* FF3.6+ */
|
|
13
|
+
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#edf2f7), color-stop(100%,#d0dfea)); /* Chrome,Safari4+ */
|
|
14
|
+
background: -webkit-linear-gradient(top, #edf2f7 0%,#d0dfea 100%); /* Chrome10+,Safari5.1+ */
|
|
15
|
+
background: -o-linear-gradient(top, #edf2f7 0%,#d0dfea 100%); /* Opera 11.10+ */
|
|
16
|
+
background: -ms-linear-gradient(top, #edf2f7 0%,#d0dfea 100%); /* IE10+ */
|
|
17
|
+
background: linear-gradient(top, #edf2f7 0%,#d0dfea 100%); /* W3C */
|
|
18
|
+
}
|
|
19
|
+
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/* pagination bar */
|
|
2
|
+
.claro .gridxPager {
|
|
3
|
+
/* background: url("images/header_shadow.png") repeat-x scroll center bottom #eaf1f6;*/
|
|
4
|
+
background-color: #eaf1f6;
|
|
5
|
+
padding: 3px 9px;
|
|
6
|
+
border-top: 1px solid #dbdbdb;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.claro .gridxPagerNodeFocus {
|
|
10
|
+
border: 1px dotted darkblue;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.claro .gridxPagerStepperBtn,
|
|
14
|
+
.claro .gridxPagerSizeSwitchBtn {
|
|
15
|
+
margin: 0 5px;
|
|
16
|
+
color: #5D88AF;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.claro .gridxPagerSizeSwitchBtn {
|
|
20
|
+
margin: 0 7px;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.claro .gridxPagerStepperBtnHover,
|
|
24
|
+
.claro .gridxPagerSizeSwitchBtnHover {
|
|
25
|
+
text-decoration: underline;
|
|
26
|
+
/* font-weight: bold;*/
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.claro .gridxPagerStepperBtnActive,
|
|
30
|
+
.claro .gridxPagerSizeSwitchBtnActive {
|
|
31
|
+
color: black;
|
|
32
|
+
font-weight: bold;
|
|
33
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/* row select */
|
|
2
|
+
.claro .gridxRowSelected .gridxRowTable,
|
|
3
|
+
.claro .gridxRowSelected .gridxCell,
|
|
4
|
+
/* column select */
|
|
5
|
+
.claro .gridxRow .gridxColumnSelected,
|
|
6
|
+
/* cell select */
|
|
7
|
+
.claro .gridxRow .gridxCellSelected {
|
|
8
|
+
background:url("../images/row_back.png") #cee6fa repeat-x;
|
|
9
|
+
}
|
|
10
|
+
/* Indirect Select */
|
|
11
|
+
.claro .gridx .dijitCheckBoxPartial {
|
|
12
|
+
background: url("../images/checkboxpartial.png");
|
|
13
|
+
height: 15px;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
.claro .gridx .dijitCheckBoxPartialDisabled {
|
|
18
|
+
background: url("../images/checkboxpartialdisabled.png");
|
|
19
|
+
height: 15px;
|
|
20
|
+
}
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
/* dnd */
|
|
2
|
+
.gridxDnDReadyCursor {
|
|
3
|
+
cursor: move;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
/*.gridxDnDCursor,*/
|
|
7
|
+
.gridxCanNotDnD {
|
|
8
|
+
cursor: default;
|
|
9
|
+
}
|
|
10
|
+
.gridxDnDAnchor {
|
|
11
|
+
width: 2px;
|
|
12
|
+
background-color: gray;
|
|
13
|
+
font-size: 0em;
|
|
14
|
+
position:absolute;
|
|
15
|
+
z-index: 998;
|
|
16
|
+
}
|
|
17
|
+
.gridxDndAvatar {
|
|
18
|
+
background-color:white;
|
|
19
|
+
border: 1px solid #CCCCCC;
|
|
20
|
+
padding: 0px;
|
|
21
|
+
-moz-box-shadow: 5px 5px 7px #999;
|
|
22
|
+
-webkit-box-shadow: 5px 5px 7px #999;
|
|
23
|
+
box-shadow: 5px 5px 7px #999;
|
|
24
|
+
z-index: 999;
|
|
25
|
+
}
|
|
26
|
+
.gridxDndAvatar td {
|
|
27
|
+
padding: 3px;
|
|
28
|
+
}
|
|
29
|
+
.gridxDnDItemIcon {
|
|
30
|
+
background-image: url("images/sprite_icons.png");
|
|
31
|
+
}
|
|
32
|
+
.gridxDnDIcon,
|
|
33
|
+
.gridxDnDItemIcon {
|
|
34
|
+
width: 16px;
|
|
35
|
+
height: 16px;
|
|
36
|
+
}
|
|
37
|
+
.dojoDndMove .gridxDnDIcon {
|
|
38
|
+
background: url(images/dndNoMove.png) no-repeat center center;
|
|
39
|
+
}
|
|
40
|
+
.dojoDndCopy .gridxDnDIcon {
|
|
41
|
+
background: url(images/dndNoCopy.png) no-repeat center center;
|
|
42
|
+
}
|
|
43
|
+
.dojoDndMove .dojoDndAvatarCanDrop .gridxDnDIcon {
|
|
44
|
+
background: url(images/dndMove.png) no-repeat center center;
|
|
45
|
+
}
|
|
46
|
+
.dojoDndCopy .dojoDndAvatarCanDrop .gridxDnDIcon {
|
|
47
|
+
background: url(images/dndCopy.png) no-repeat center center;
|
|
48
|
+
}
|
|
49
|
+
/* dnd row */
|
|
50
|
+
.gridxDnDAnchorRow {
|
|
51
|
+
left: 0;
|
|
52
|
+
height: 1px;
|
|
53
|
+
}
|
|
54
|
+
.gridxDnDAnchorRow:before {
|
|
55
|
+
content: '';
|
|
56
|
+
position: absolute;
|
|
57
|
+
top: -1px;
|
|
58
|
+
height: 1px;
|
|
59
|
+
width: 100%;
|
|
60
|
+
background-color: gray;
|
|
61
|
+
}
|
|
62
|
+
.gridxDnDIconRowSingle {
|
|
63
|
+
background-position: -256px 7px;
|
|
64
|
+
}
|
|
65
|
+
.gridxDnDIconRowMulti {
|
|
66
|
+
background-position: -256px -13px;
|
|
67
|
+
}
|
|
68
|
+
/* dnd column */
|
|
69
|
+
.gridxDnDAnchorColumn {
|
|
70
|
+
top: 0;
|
|
71
|
+
width: 2px;
|
|
72
|
+
}
|
|
73
|
+
.gridxDnDIconColumnSingle {
|
|
74
|
+
background-position: -277px 3px;
|
|
75
|
+
}
|
|
76
|
+
.gridxDnDIconColumnMulti {
|
|
77
|
+
background-position: -277px -17px;
|
|
78
|
+
}
|
|
79
|
+
/* dnd cell */
|
|
80
|
+
.gridxDnDAnchorCell {
|
|
81
|
+
position: relative;
|
|
82
|
+
background-color: transparent;
|
|
83
|
+
}
|
|
84
|
+
.gridxDnDIconCellSingle {
|
|
85
|
+
background-position: -234px 6px;
|
|
86
|
+
}
|
|
87
|
+
.gridxDnDIconCellMulti {
|
|
88
|
+
background-position: -234px -15px;
|
|
89
|
+
}
|
|
90
|
+
.gridxCellBorderLeftTopDIV {
|
|
91
|
+
position: absolute;
|
|
92
|
+
left: 0;
|
|
93
|
+
top: 0;
|
|
94
|
+
border-style: solid;
|
|
95
|
+
border-width: 2px 0 0 2px;
|
|
96
|
+
border-color: gray transparent transparent gray;
|
|
97
|
+
}
|
|
98
|
+
.gridxCellBorderRightBottomDIV {
|
|
99
|
+
position: absolute;
|
|
100
|
+
right: 0;
|
|
101
|
+
bottom: 0;
|
|
102
|
+
border-style: solid;
|
|
103
|
+
border-width: 0 2px 2px 0;
|
|
104
|
+
border-color: transparent gray gray transparent;
|
|
105
|
+
}
|
|
106
|
+
.gridxDnDCellMask {
|
|
107
|
+
background-color: #ee5555;
|
|
108
|
+
}
|
|
@@ -0,0 +1,321 @@
|
|
|
1
|
+
|
|
2
|
+
.gridxFilterDialog .dijitAccordionContainer .dijitAccordionContainer-child {
|
|
3
|
+
padding: 6px 9px;
|
|
4
|
+
}
|
|
5
|
+
|
|
6
|
+
.gridxFilterDialog .gridxFilterAccordionWrapper {
|
|
7
|
+
height: 227px;
|
|
8
|
+
width: 300px;
|
|
9
|
+
overflow: auto;
|
|
10
|
+
position: relative;
|
|
11
|
+
margin: 5px 0 15px 0;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
.gridxFilterDialog .gridxFilterDialogButtons {
|
|
15
|
+
text-align: right;
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
.gridxFilterDialog .gridxFilterDialogButtons .gridxFilterDialogBtnAdd {
|
|
19
|
+
float:left;
|
|
20
|
+
margin-top: -10px;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.gridxFilterDialog .dijitAccordionTitleFocus{
|
|
24
|
+
margin-right: 16px;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.gridxFilterDialog .dijitAccordionTitleFocus .dijitAccordionText {
|
|
28
|
+
display: block;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.gridxFilterDialog .dijitAccordionTitleFocus .dijitAccordionArrow {
|
|
32
|
+
display: none;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.gridxFilterPaneForm {
|
|
36
|
+
margin: 0px;
|
|
37
|
+
padding: 0px;
|
|
38
|
+
list-style: none;
|
|
39
|
+
font-size: 10px;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
.gridxFilterPaneForm .dijitSelect{
|
|
43
|
+
margin: 0;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
.gridxFilterPaneForm li {
|
|
47
|
+
margin: 0;
|
|
48
|
+
padding: 0px;
|
|
49
|
+
list-style: none;
|
|
50
|
+
width:98%;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.gridxFilterPaneForm .dijitSelect,
|
|
54
|
+
.gridxFilterPaneForm .dijitTextBox,
|
|
55
|
+
.gridxFilterPaneForm .dijitComboBox {
|
|
56
|
+
font-size: 12px;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
.gridxFilterPaneCloseButton {
|
|
60
|
+
float: right;
|
|
61
|
+
margin-top: -15px;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.gridxFilterPaneCloseButton img {
|
|
65
|
+
background: transparent url(images/sprite_icons.png) no-repeat -198px -18px;
|
|
66
|
+
width: 16px;
|
|
67
|
+
height: 16px;
|
|
68
|
+
cursor: pointer;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.gridxFilterPaneCloseButton img:hover {
|
|
72
|
+
background-position: -198px 2px;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.gridxFilterSingleRule .gridxFilterPaneCloseButton {
|
|
76
|
+
display: none;
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
.gridxFilterBtnAddRule {
|
|
80
|
+
background: transparent url(images/sprite_icons.png) no-repeat -218px 2px;
|
|
81
|
+
width: 16px;
|
|
82
|
+
height: 16px;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.gridxFilterBarBtnIcon {
|
|
86
|
+
background: transparent url(images/sprite_icons.png) no-repeat -100px -18px;
|
|
87
|
+
width: 14px;
|
|
88
|
+
height: 14px;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
.gridxFilterPaneForm .gridxFilterPaneFieldWrapper {
|
|
92
|
+
display: none;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.gridxFilterPaneText .gridxFilterPaneTextWrapper,
|
|
96
|
+
.gridxFilterPaneCombo .gridxFilterPaneComboWrapper,
|
|
97
|
+
.gridxFilterPaneNumber .gridxFilterPaneNumberWrapper,
|
|
98
|
+
.gridxFilterPaneDate .gridxFilterPaneDateWrapper,
|
|
99
|
+
.gridxFilterPaneDateRange .gridxFilterPaneDateRangeWrapper,
|
|
100
|
+
.gridxFilterPaneTime .gridxFilterPaneTimeWrapper,
|
|
101
|
+
.gridxFilterPaneTimeRange .gridxFilterPaneTimeRangeWrapper,
|
|
102
|
+
.gridxFilterPaneSelect .gridxFilterPaneSelectWrapper,
|
|
103
|
+
.gridxFilterPaneRadio .gridxFilterPaneRadioWrapper {
|
|
104
|
+
display: block;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.gridxFilterBar {
|
|
108
|
+
cursor: pointer;
|
|
109
|
+
width: 100%;
|
|
110
|
+
font-family: arial;
|
|
111
|
+
}
|
|
112
|
+
.gridxFilterBar a{
|
|
113
|
+
color: #5B83B6;
|
|
114
|
+
text-decoration: none;
|
|
115
|
+
}
|
|
116
|
+
.gridxFilterBar a:hover{
|
|
117
|
+
text-decoration: underline;
|
|
118
|
+
}
|
|
119
|
+
.gridxFilterBar .dijitButton {
|
|
120
|
+
margin: 0;
|
|
121
|
+
float: left;
|
|
122
|
+
}
|
|
123
|
+
.gridxFilterBar .dijitButton .dijitButtonNode {
|
|
124
|
+
-moz-border-radius: 1px;
|
|
125
|
+
-webkit-border-radius: 1px;
|
|
126
|
+
padding-top: 0;
|
|
127
|
+
padding-bottom: 0;
|
|
128
|
+
padding-right: 2px;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
.gridxFilterBarStatus {
|
|
132
|
+
background: #f2f9ff; /* Old browsers */
|
|
133
|
+
background: -moz-linear-gradient(top, #f2f9ff 0%, #eaf5ff 100%); /* FF3.6+ */
|
|
134
|
+
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f2f9ff), color-stop(100%,#eaf5ff)); /* Chrome,Safari4+ */
|
|
135
|
+
background: -webkit-linear-gradient(top, #f2f9ff 0%,#eaf5ff 100%); /* Chrome10+,Safari5.1+ */
|
|
136
|
+
background: -o-linear-gradient(top, #f2f9ff 0%,#eaf5ff 100%); /* Opera 11.10+ */
|
|
137
|
+
background: -ms-linear-gradient(top, #f2f9ff 0%,#eaf5ff 100%); /* IE10+ */
|
|
138
|
+
background: linear-gradient(top, #f2f9ff 0%,#eaf5ff 100%); /* W3C */
|
|
139
|
+
border-bottom: 1px solid #BFD6EB;
|
|
140
|
+
border-top: 1px solid #BFD6EB;
|
|
141
|
+
padding: 1px 0 0 45px;
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
.dj_ie9 .gridxFilterBarStatus{
|
|
145
|
+
padding-left: 5px;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
.gridxFilterBarCloseBtn {
|
|
149
|
+
background: transparent url(images/sprite_icons.png) no-repeat -119px -20px;
|
|
150
|
+
width: 14px;
|
|
151
|
+
height: 14px;
|
|
152
|
+
float: right;
|
|
153
|
+
margin-right: 3px;
|
|
154
|
+
cursor: pointer;
|
|
155
|
+
}
|
|
156
|
+
.dj_ie7 .gridxFilterBarCloseBtn{
|
|
157
|
+
margin-top: -14px;
|
|
158
|
+
}
|
|
159
|
+
|
|
160
|
+
.gridxFilterBarHideCloseBtn .gridxFilterBarCloseBtn {
|
|
161
|
+
display: none;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
.gridxFilterBarCloseBtn:hover {
|
|
165
|
+
background-position: -140px -20px;
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
.gridxFilterTooltip table {
|
|
169
|
+
border: 1px solid #bbb;
|
|
170
|
+
border-collapse: collapse;
|
|
171
|
+
}
|
|
172
|
+
|
|
173
|
+
.gridxFilterTooltip table th {
|
|
174
|
+
background-color: #E8EFF4;
|
|
175
|
+
border: 1px solid #bbb;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
.gridxFilterTooltip table th, .gridxFilterTooltip table td {
|
|
180
|
+
padding: 2px 4px;
|
|
181
|
+
height: 16px;
|
|
182
|
+
vertical-align: middle;
|
|
183
|
+
}
|
|
184
|
+
|
|
185
|
+
.gridxFilterTooltip table .gridxFilterTooltipValueCell div{
|
|
186
|
+
max-width: 150px;
|
|
187
|
+
position: relative;
|
|
188
|
+
padding-right: 25px;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
.gridxFilterTooltip .gridxFilterTooltipTitle {
|
|
192
|
+
margin-bottom: 8px;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
.gridxFilterTooltip .gridxFilterTooltipRemoveBtn {
|
|
196
|
+
background: transparent url(images/sprite_icons.png) no-repeat -198px -18px;
|
|
197
|
+
width: 16px;
|
|
198
|
+
height: 16px;
|
|
199
|
+
position:absolute;
|
|
200
|
+
right: 0px;
|
|
201
|
+
top: 1px;
|
|
202
|
+
cursor: pointer;
|
|
203
|
+
border: none;
|
|
204
|
+
}
|
|
205
|
+
.gridxFilterTooltipSingleRule .gridxFilterTooltipRemoveBtn {
|
|
206
|
+
visibility: hidden;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
.gridxFilterTooltip .gridxFilterTooltipRemoveBtn:hover {
|
|
210
|
+
background-position: -198px 2px;
|
|
211
|
+
}
|
|
212
|
+
|
|
213
|
+
.gridxFilterTooltip .gridxFilterTooltipOddRow {
|
|
214
|
+
background-color: #F1F8FF;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
.gridxFilterConfirmDialogButtons {
|
|
218
|
+
text-align: right;
|
|
219
|
+
margin-top: 10px;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
/* QuickFilter */
|
|
223
|
+
.gridxQuickFilterInputContainer {
|
|
224
|
+
position: relative;
|
|
225
|
+
margin-right: 2px;
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
.gridxQuickFilterInput {
|
|
229
|
+
width: 150px;
|
|
230
|
+
}
|
|
231
|
+
.gridxQuickFilterInput .dijitInputInner::-ms-clear {
|
|
232
|
+
display: none;
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
.gridxQuickFilterClear {
|
|
236
|
+
background: transparent url(images/sprite_icons.png) no-repeat -178px 5px;
|
|
237
|
+
position: absolute;
|
|
238
|
+
right: 0px;
|
|
239
|
+
top: 0px;
|
|
240
|
+
width: 15px;
|
|
241
|
+
height: 15px;
|
|
242
|
+
cursor: pointer;
|
|
243
|
+
display: none;
|
|
244
|
+
}
|
|
245
|
+
|
|
246
|
+
.dj_ie7 .gridxQuickFilterClear {
|
|
247
|
+
top: 5px;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.gridxQuickFilterClearInner {
|
|
251
|
+
display: none;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
.gridxQuickFilterActive .gridxQuickFilterClear {
|
|
255
|
+
display: block;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
.gridxQuickFilterIcon {
|
|
259
|
+
width: 19px;
|
|
260
|
+
height: 19px;
|
|
261
|
+
background: transparent url(images/sprite_icons.png) no-repeat -98px -15px;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
.gridxQuickFilterNoFilterBar .gridxQuickFilterComboButton,
|
|
265
|
+
.gridxQuickFilterHasFilterBar .gridxQuickFilterButton {
|
|
266
|
+
display: none;
|
|
267
|
+
}
|
|
268
|
+
|
|
269
|
+
.gridxFilterBarCloseBtnText,
|
|
270
|
+
.gridxFilterTooltipRemoveBtnText {
|
|
271
|
+
display: none;
|
|
272
|
+
}
|
|
273
|
+
|
|
274
|
+
.dijit_a11y .gridxFilterBarCloseBtnText,
|
|
275
|
+
.dijit_a11y .gridxFilterTooltipRemoveBtnText {
|
|
276
|
+
display: inline;
|
|
277
|
+
}
|
|
278
|
+
|
|
279
|
+
.gridxBarQuickFilter {
|
|
280
|
+
text-align: right;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
/*Copied from dojox/html/resources/ellipsis.css*/
|
|
284
|
+
.dojoxEllipsis,
|
|
285
|
+
.dojoxEllipsisShown {
|
|
286
|
+
white-space: nowrap;
|
|
287
|
+
width: 100%;
|
|
288
|
+
overflow: hidden;
|
|
289
|
+
text-overflow: ellipsis;
|
|
290
|
+
-o-text-overflow: ellipsis;
|
|
291
|
+
-webkit-text-overflow: ellipsis;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
.dojoxEllipsis window {
|
|
295
|
+
width:100%;
|
|
296
|
+
-moz-user-focus:normal;
|
|
297
|
+
-moz-user-select:text;
|
|
298
|
+
}
|
|
299
|
+
.dojoxEllipsis description{
|
|
300
|
+
-moz-user-focus:normal;
|
|
301
|
+
-moz-user-select:text;
|
|
302
|
+
}
|
|
303
|
+
.dojoxEllipsisIFrame{
|
|
304
|
+
white-space: normal;
|
|
305
|
+
border: none;
|
|
306
|
+
width: 100%;
|
|
307
|
+
display: block;
|
|
308
|
+
height: 1px;
|
|
309
|
+
margin-top: -1px;
|
|
310
|
+
clear: both;
|
|
311
|
+
}
|
|
312
|
+
.dojoxEllipsisContainer{
|
|
313
|
+
width: 100%;
|
|
314
|
+
}
|
|
315
|
+
.dojoxEllipsisShown:after {
|
|
316
|
+
content: "\2026";
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
|
|
320
|
+
|
|
321
|
+
/*Adaptive Filter*/
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
.gridxRtl .gridxFilterBar .dijitButton {
|
|
2
|
+
float: right;
|
|
3
|
+
}
|
|
4
|
+
.gridxRtl .gridxFilterBar .dijitButton .dijitButtonNode {
|
|
5
|
+
}
|
|
6
|
+
.dijitRtl .gridxFilterDialog .dijitAccordionTitleFocus{
|
|
7
|
+
margin-right: 0px;
|
|
8
|
+
margin-left: 16px;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.gridxRtl .gridxFilterBarStatus {
|
|
12
|
+
padding: 1px 45px 0 0;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.gridxRtl .gridxFilterBarCloseBtn {
|
|
16
|
+
float: left;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.gridxRtl .gridxBarQuickFilter {
|
|
20
|
+
text-align: left;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
.dijitRtl .gridxFilterPaneCloseButton{
|
|
24
|
+
float: left;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.dijitRtl .gridxFilterDialog .gridxFilterDialogButtons {
|
|
28
|
+
text-align: left;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
.dijitRtl .gridxFilterDialog .gridxFilterDialogButtons .gridxFilterDialogBtnAdd {
|
|
32
|
+
float:right;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.dijitRtl .gridxQuickFilterClear {
|
|
36
|
+
right: auto;
|
|
37
|
+
left: 5px;
|
|
38
|
+
}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
.gridxLockedCell {
|
|
2
|
+
position: absolute;
|
|
3
|
+
background-color: #ffffff;
|
|
4
|
+
z-index: 1;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
.gridxLockedRow {
|
|
9
|
+
z-index: 2;
|
|
10
|
+
}
|
|
11
|
+
|
|
12
|
+
/*Column Lock*/
|
|
13
|
+
.gridxColumnLock .gridxRow {
|
|
14
|
+
overflow: hidden;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
.gridxLockedRow .gridxLockedCell {
|
|
18
|
+
z-index: 2;
|
|
19
|
+
}
|
|
20
|
+
|
|
@@ -0,0 +1,142 @@
|
|
|
1
|
+
/* pagination bar */
|
|
2
|
+
.gridxPagerInner {
|
|
3
|
+
width: 100%;
|
|
4
|
+
table-layout: auto;
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
.gridxPagerA11yInner {
|
|
8
|
+
visibility: hidden;
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
.dijit_a11y .gridxPagerA11yInner {
|
|
12
|
+
visibility: visible;
|
|
13
|
+
}
|
|
14
|
+
|
|
15
|
+
.gridxPagerStepperBtn,
|
|
16
|
+
.gridxPagerSizeSwitchBtn {
|
|
17
|
+
cursor: pointer;
|
|
18
|
+
display: inline-block;
|
|
19
|
+
text-align: center;
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
.gridxPagerStepperBtnActive,
|
|
23
|
+
.gridxPagerSizeSwitchBtnActive {
|
|
24
|
+
cursor: default;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
.gridxPagerFirstPage,
|
|
28
|
+
.gridxPagerPrevPage,
|
|
29
|
+
.gridxPagerNextPage,
|
|
30
|
+
.gridxPagerLastPage,
|
|
31
|
+
.gridxPagerGotoBtn {
|
|
32
|
+
background: url("images/sprite_icons.png");
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.gridxPagerFirstPage {
|
|
36
|
+
background-position: -58px 4px;
|
|
37
|
+
}
|
|
38
|
+
.gridxPagerFirstPageDisable {
|
|
39
|
+
background-position: -58px -16px;
|
|
40
|
+
cursor: default;
|
|
41
|
+
opacity: 0.8;
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
.gridxPagerPrevPage {
|
|
45
|
+
background-position: 3px 4px;
|
|
46
|
+
}
|
|
47
|
+
.gridxPagerPrevPageDisable {
|
|
48
|
+
background-position: 3px -16px;
|
|
49
|
+
cursor: default;
|
|
50
|
+
opacity: 0.8;
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
.gridxPagerNextPage {
|
|
54
|
+
background-position: -16px 4px;
|
|
55
|
+
}
|
|
56
|
+
.gridxPagerNextPageDisable {
|
|
57
|
+
background-position: -16px -16px;
|
|
58
|
+
cursor: default;
|
|
59
|
+
opacity: 0.8;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
.gridxPagerLastPage {
|
|
63
|
+
background-position: -38px 4px;
|
|
64
|
+
}
|
|
65
|
+
.gridxPagerLastPageDisable {
|
|
66
|
+
background-position: -38px -16px;
|
|
67
|
+
cursor: default;
|
|
68
|
+
opacity: 0.8;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
.gridxPagerDescriptionTD {
|
|
72
|
+
text-align: left;
|
|
73
|
+
width: 33%;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
.gridxPagerStepperTD {
|
|
77
|
+
text-align: center;
|
|
78
|
+
width: 33%;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
.gridxPagerSizeSwitchTD {
|
|
82
|
+
text-align: right;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
.gridxPagerGoto {
|
|
86
|
+
width: 20px;
|
|
87
|
+
text-align: center;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
.gridxPagerGotoBtn {
|
|
91
|
+
background-position: -78px 3px;
|
|
92
|
+
cursor: pointer;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
/* Goto Page Dialog */
|
|
96
|
+
.gridxGotoPage td {
|
|
97
|
+
padding-bottom: 5px;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
.gridxGotoPage .gridxGotoPageBtns {
|
|
101
|
+
padding-bottom: 0;
|
|
102
|
+
text-align: right;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
.gridxGotoPage .gridxGotoPageInputBox {
|
|
106
|
+
width: 100px;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.gridxGotoPage .gridxPageCountMsg {
|
|
110
|
+
padding-left: 5px;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
/*DD*/
|
|
114
|
+
.gridxPagerStepperWidget {
|
|
115
|
+
width: 55px;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.gridxPagerSizeSwitchWidget .dijitButtonContents {
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
.gridxPagerLabel {
|
|
122
|
+
vertical-align: middle;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
/* LinkPage in GridBar */
|
|
126
|
+
.gridxLinkPager {
|
|
127
|
+
padding: 5px 0;
|
|
128
|
+
}
|
|
129
|
+
.gridxLinkSizer {
|
|
130
|
+
padding: 5px 0;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
.gridxPaginationBar {
|
|
134
|
+
padding-right: 9px;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
.gridxDropDownPager,
|
|
138
|
+
.gridxDropDownSizer {
|
|
139
|
+
padding-top: 3px;
|
|
140
|
+
padding-bottom: 3px;
|
|
141
|
+
}
|
|
142
|
+
|