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
metadata
ADDED
|
@@ -0,0 +1,621 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: gridx-rails
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.1.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Alex Giouzenis
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2013-09-14 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: rails
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ! '>='
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: 3.1.0
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ! '>='
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: 3.1.0
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: sqlite3
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ! '>='
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '0'
|
|
34
|
+
type: :development
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - ! '>='
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0'
|
|
41
|
+
description: Gridx's JavaScript, CSS, and support files packaged individually for
|
|
42
|
+
AMD loading
|
|
43
|
+
email:
|
|
44
|
+
- alexandrosg@gmail.com
|
|
45
|
+
executables: []
|
|
46
|
+
extensions: []
|
|
47
|
+
extra_rdoc_files: []
|
|
48
|
+
files:
|
|
49
|
+
- app/assets/javascripts/gridx/templates/LinkPager.html
|
|
50
|
+
- app/assets/javascripts/gridx/templates/PaginationBar.html
|
|
51
|
+
- app/assets/javascripts/gridx/templates/GotoPagePane.html
|
|
52
|
+
- app/assets/javascripts/gridx/templates/PaginationBarDD.html
|
|
53
|
+
- app/assets/javascripts/gridx/templates/QuickFilter.html
|
|
54
|
+
- app/assets/javascripts/gridx/templates/FilterBar.html
|
|
55
|
+
- app/assets/javascripts/gridx/templates/FilterDialog.html
|
|
56
|
+
- app/assets/javascripts/gridx/templates/FilterConfirmDialog.html
|
|
57
|
+
- app/assets/javascripts/gridx/templates/FilterPane.html
|
|
58
|
+
- app/assets/javascripts/gridx/templates/Grid.html
|
|
59
|
+
- app/assets/javascripts/gridx/support/QuickFilter.js
|
|
60
|
+
- app/assets/javascripts/gridx/support/GotoPagePane.js
|
|
61
|
+
- app/assets/javascripts/gridx/support/printer.js
|
|
62
|
+
- app/assets/javascripts/gridx/support/Summary.js
|
|
63
|
+
- app/assets/javascripts/gridx/support/exporter/toTable.js
|
|
64
|
+
- app/assets/javascripts/gridx/support/exporter/exporter.js
|
|
65
|
+
- app/assets/javascripts/gridx/support/exporter/toCSV.js
|
|
66
|
+
- app/assets/javascripts/gridx/support/DropDownPager.js
|
|
67
|
+
- app/assets/javascripts/gridx/support/LinkPager.js
|
|
68
|
+
- app/assets/javascripts/gridx/support/_LinkPageBase.js
|
|
69
|
+
- app/assets/javascripts/gridx/support/DropDownSizer.js
|
|
70
|
+
- app/assets/javascripts/gridx/support/menu/_FilterMenuBase.js
|
|
71
|
+
- app/assets/javascripts/gridx/support/menu/AZFilterMenu.js
|
|
72
|
+
- app/assets/javascripts/gridx/support/menu/NumberFilterMenu.js
|
|
73
|
+
- app/assets/javascripts/gridx/support/LinkSizer.js
|
|
74
|
+
- app/assets/javascripts/gridx/support/GotoPageButton.js
|
|
75
|
+
- app/assets/javascripts/gridx/nls/pl/FilterBar.js
|
|
76
|
+
- app/assets/javascripts/gridx/nls/pl/PaginationBar.js
|
|
77
|
+
- app/assets/javascripts/gridx/nls/pl/QuickFilter.js
|
|
78
|
+
- app/assets/javascripts/gridx/nls/pl/NestedSort.js
|
|
79
|
+
- app/assets/javascripts/gridx/nls/pl/SummaryBar.js
|
|
80
|
+
- app/assets/javascripts/gridx/nls/pl/Body.js
|
|
81
|
+
- app/assets/javascripts/gridx/nls/FilterBar.js
|
|
82
|
+
- app/assets/javascripts/gridx/nls/pt-br/FilterBar.js
|
|
83
|
+
- app/assets/javascripts/gridx/nls/pt-br/PaginationBar.js
|
|
84
|
+
- app/assets/javascripts/gridx/nls/pt-br/QuickFilter.js
|
|
85
|
+
- app/assets/javascripts/gridx/nls/pt-br/NestedSort.js
|
|
86
|
+
- app/assets/javascripts/gridx/nls/pt-br/SummaryBar.js
|
|
87
|
+
- app/assets/javascripts/gridx/nls/pt-br/Body.js
|
|
88
|
+
- app/assets/javascripts/gridx/nls/sk/FilterBar.js
|
|
89
|
+
- app/assets/javascripts/gridx/nls/sk/PaginationBar.js
|
|
90
|
+
- app/assets/javascripts/gridx/nls/sk/QuickFilter.js
|
|
91
|
+
- app/assets/javascripts/gridx/nls/sk/NestedSort.js
|
|
92
|
+
- app/assets/javascripts/gridx/nls/sk/SummaryBar.js
|
|
93
|
+
- app/assets/javascripts/gridx/nls/sk/Body.js
|
|
94
|
+
- app/assets/javascripts/gridx/nls/fi/FilterBar.js
|
|
95
|
+
- app/assets/javascripts/gridx/nls/fi/PaginationBar.js
|
|
96
|
+
- app/assets/javascripts/gridx/nls/fi/QuickFilter.js
|
|
97
|
+
- app/assets/javascripts/gridx/nls/fi/NestedSort.js
|
|
98
|
+
- app/assets/javascripts/gridx/nls/fi/SummaryBar.js
|
|
99
|
+
- app/assets/javascripts/gridx/nls/fi/Body.js
|
|
100
|
+
- app/assets/javascripts/gridx/nls/ja/FilterBar.js
|
|
101
|
+
- app/assets/javascripts/gridx/nls/ja/PaginationBar.js
|
|
102
|
+
- app/assets/javascripts/gridx/nls/ja/QuickFilter.js
|
|
103
|
+
- app/assets/javascripts/gridx/nls/ja/NestedSort.js
|
|
104
|
+
- app/assets/javascripts/gridx/nls/ja/SummaryBar.js
|
|
105
|
+
- app/assets/javascripts/gridx/nls/ja/Body.js
|
|
106
|
+
- app/assets/javascripts/gridx/nls/ru/FilterBar.js
|
|
107
|
+
- app/assets/javascripts/gridx/nls/ru/PaginationBar.js
|
|
108
|
+
- app/assets/javascripts/gridx/nls/ru/QuickFilter.js
|
|
109
|
+
- app/assets/javascripts/gridx/nls/ru/NestedSort.js
|
|
110
|
+
- app/assets/javascripts/gridx/nls/ru/SummaryBar.js
|
|
111
|
+
- app/assets/javascripts/gridx/nls/ru/Body.js
|
|
112
|
+
- app/assets/javascripts/gridx/nls/PaginationBar.js
|
|
113
|
+
- app/assets/javascripts/gridx/nls/pt-pt/FilterBar.js
|
|
114
|
+
- app/assets/javascripts/gridx/nls/pt-pt/PaginationBar.js
|
|
115
|
+
- app/assets/javascripts/gridx/nls/pt-pt/QuickFilter.js
|
|
116
|
+
- app/assets/javascripts/gridx/nls/pt-pt/NestedSort.js
|
|
117
|
+
- app/assets/javascripts/gridx/nls/pt-pt/SummaryBar.js
|
|
118
|
+
- app/assets/javascripts/gridx/nls/pt-pt/Body.js
|
|
119
|
+
- app/assets/javascripts/gridx/nls/QuickFilter.js
|
|
120
|
+
- app/assets/javascripts/gridx/nls/da/FilterBar.js
|
|
121
|
+
- app/assets/javascripts/gridx/nls/da/PaginationBar.js
|
|
122
|
+
- app/assets/javascripts/gridx/nls/da/QuickFilter.js
|
|
123
|
+
- app/assets/javascripts/gridx/nls/da/NestedSort.js
|
|
124
|
+
- app/assets/javascripts/gridx/nls/da/SummaryBar.js
|
|
125
|
+
- app/assets/javascripts/gridx/nls/da/Body.js
|
|
126
|
+
- app/assets/javascripts/gridx/nls/el/FilterBar.js
|
|
127
|
+
- app/assets/javascripts/gridx/nls/el/PaginationBar.js
|
|
128
|
+
- app/assets/javascripts/gridx/nls/el/QuickFilter.js
|
|
129
|
+
- app/assets/javascripts/gridx/nls/el/NestedSort.js
|
|
130
|
+
- app/assets/javascripts/gridx/nls/el/SummaryBar.js
|
|
131
|
+
- app/assets/javascripts/gridx/nls/el/Body.js
|
|
132
|
+
- app/assets/javascripts/gridx/nls/sl/FilterBar.js
|
|
133
|
+
- app/assets/javascripts/gridx/nls/sl/PaginationBar.js
|
|
134
|
+
- app/assets/javascripts/gridx/nls/sl/QuickFilter.js
|
|
135
|
+
- app/assets/javascripts/gridx/nls/sl/NestedSort.js
|
|
136
|
+
- app/assets/javascripts/gridx/nls/sl/SummaryBar.js
|
|
137
|
+
- app/assets/javascripts/gridx/nls/sl/Body.js
|
|
138
|
+
- app/assets/javascripts/gridx/nls/zh/FilterBar.js
|
|
139
|
+
- app/assets/javascripts/gridx/nls/zh/PaginationBar.js
|
|
140
|
+
- app/assets/javascripts/gridx/nls/zh/QuickFilter.js
|
|
141
|
+
- app/assets/javascripts/gridx/nls/zh/NestedSort.js
|
|
142
|
+
- app/assets/javascripts/gridx/nls/zh/SummaryBar.js
|
|
143
|
+
- app/assets/javascripts/gridx/nls/zh/Body.js
|
|
144
|
+
- app/assets/javascripts/gridx/nls/fr/FilterBar.js
|
|
145
|
+
- app/assets/javascripts/gridx/nls/fr/PaginationBar.js
|
|
146
|
+
- app/assets/javascripts/gridx/nls/fr/QuickFilter.js
|
|
147
|
+
- app/assets/javascripts/gridx/nls/fr/NestedSort.js
|
|
148
|
+
- app/assets/javascripts/gridx/nls/fr/SummaryBar.js
|
|
149
|
+
- app/assets/javascripts/gridx/nls/fr/Body.js
|
|
150
|
+
- app/assets/javascripts/gridx/nls/th/FilterBar.js
|
|
151
|
+
- app/assets/javascripts/gridx/nls/th/PaginationBar.js
|
|
152
|
+
- app/assets/javascripts/gridx/nls/th/QuickFilter.js
|
|
153
|
+
- app/assets/javascripts/gridx/nls/th/NestedSort.js
|
|
154
|
+
- app/assets/javascripts/gridx/nls/th/SummaryBar.js
|
|
155
|
+
- app/assets/javascripts/gridx/nls/th/Body.js
|
|
156
|
+
- app/assets/javascripts/gridx/nls/nl/FilterBar.js
|
|
157
|
+
- app/assets/javascripts/gridx/nls/nl/PaginationBar.js
|
|
158
|
+
- app/assets/javascripts/gridx/nls/nl/QuickFilter.js
|
|
159
|
+
- app/assets/javascripts/gridx/nls/nl/NestedSort.js
|
|
160
|
+
- app/assets/javascripts/gridx/nls/nl/SummaryBar.js
|
|
161
|
+
- app/assets/javascripts/gridx/nls/nl/Body.js
|
|
162
|
+
- app/assets/javascripts/gridx/nls/zh-tw/FilterBar.js
|
|
163
|
+
- app/assets/javascripts/gridx/nls/zh-tw/PaginationBar.js
|
|
164
|
+
- app/assets/javascripts/gridx/nls/zh-tw/QuickFilter.js
|
|
165
|
+
- app/assets/javascripts/gridx/nls/zh-tw/NestedSort.js
|
|
166
|
+
- app/assets/javascripts/gridx/nls/zh-tw/SummaryBar.js
|
|
167
|
+
- app/assets/javascripts/gridx/nls/zh-tw/Body.js
|
|
168
|
+
- app/assets/javascripts/gridx/nls/tr/FilterBar.js
|
|
169
|
+
- app/assets/javascripts/gridx/nls/tr/PaginationBar.js
|
|
170
|
+
- app/assets/javascripts/gridx/nls/tr/QuickFilter.js
|
|
171
|
+
- app/assets/javascripts/gridx/nls/tr/NestedSort.js
|
|
172
|
+
- app/assets/javascripts/gridx/nls/tr/SummaryBar.js
|
|
173
|
+
- app/assets/javascripts/gridx/nls/tr/Body.js
|
|
174
|
+
- app/assets/javascripts/gridx/nls/ar/FilterBar.js
|
|
175
|
+
- app/assets/javascripts/gridx/nls/ar/PaginationBar.js
|
|
176
|
+
- app/assets/javascripts/gridx/nls/ar/QuickFilter.js
|
|
177
|
+
- app/assets/javascripts/gridx/nls/ar/NestedSort.js
|
|
178
|
+
- app/assets/javascripts/gridx/nls/ar/SummaryBar.js
|
|
179
|
+
- app/assets/javascripts/gridx/nls/ar/Body.js
|
|
180
|
+
- app/assets/javascripts/gridx/nls/NestedSort.js
|
|
181
|
+
- app/assets/javascripts/gridx/nls/kk/FilterBar.js
|
|
182
|
+
- app/assets/javascripts/gridx/nls/kk/PaginationBar.js
|
|
183
|
+
- app/assets/javascripts/gridx/nls/kk/QuickFilter.js
|
|
184
|
+
- app/assets/javascripts/gridx/nls/kk/NestedSort.js
|
|
185
|
+
- app/assets/javascripts/gridx/nls/kk/SummaryBar.js
|
|
186
|
+
- app/assets/javascripts/gridx/nls/kk/Body.js
|
|
187
|
+
- app/assets/javascripts/gridx/nls/it/FilterBar.js
|
|
188
|
+
- app/assets/javascripts/gridx/nls/it/PaginationBar.js
|
|
189
|
+
- app/assets/javascripts/gridx/nls/it/QuickFilter.js
|
|
190
|
+
- app/assets/javascripts/gridx/nls/it/NestedSort.js
|
|
191
|
+
- app/assets/javascripts/gridx/nls/it/SummaryBar.js
|
|
192
|
+
- app/assets/javascripts/gridx/nls/it/Body.js
|
|
193
|
+
- app/assets/javascripts/gridx/nls/ro/FilterBar.js
|
|
194
|
+
- app/assets/javascripts/gridx/nls/ro/PaginationBar.js
|
|
195
|
+
- app/assets/javascripts/gridx/nls/ro/QuickFilter.js
|
|
196
|
+
- app/assets/javascripts/gridx/nls/ro/NestedSort.js
|
|
197
|
+
- app/assets/javascripts/gridx/nls/ro/SummaryBar.js
|
|
198
|
+
- app/assets/javascripts/gridx/nls/ro/Body.js
|
|
199
|
+
- app/assets/javascripts/gridx/nls/ca/FilterBar.js
|
|
200
|
+
- app/assets/javascripts/gridx/nls/ca/PaginationBar.js
|
|
201
|
+
- app/assets/javascripts/gridx/nls/ca/QuickFilter.js
|
|
202
|
+
- app/assets/javascripts/gridx/nls/ca/NestedSort.js
|
|
203
|
+
- app/assets/javascripts/gridx/nls/ca/SummaryBar.js
|
|
204
|
+
- app/assets/javascripts/gridx/nls/ca/Body.js
|
|
205
|
+
- app/assets/javascripts/gridx/nls/uk/FilterBar.js
|
|
206
|
+
- app/assets/javascripts/gridx/nls/uk/PaginationBar.js
|
|
207
|
+
- app/assets/javascripts/gridx/nls/uk/QuickFilter.js
|
|
208
|
+
- app/assets/javascripts/gridx/nls/uk/NestedSort.js
|
|
209
|
+
- app/assets/javascripts/gridx/nls/uk/SummaryBar.js
|
|
210
|
+
- app/assets/javascripts/gridx/nls/uk/Body.js
|
|
211
|
+
- app/assets/javascripts/gridx/nls/cs/FilterBar.js
|
|
212
|
+
- app/assets/javascripts/gridx/nls/cs/PaginationBar.js
|
|
213
|
+
- app/assets/javascripts/gridx/nls/cs/QuickFilter.js
|
|
214
|
+
- app/assets/javascripts/gridx/nls/cs/NestedSort.js
|
|
215
|
+
- app/assets/javascripts/gridx/nls/cs/SummaryBar.js
|
|
216
|
+
- app/assets/javascripts/gridx/nls/cs/Body.js
|
|
217
|
+
- app/assets/javascripts/gridx/nls/hr/FilterBar.js
|
|
218
|
+
- app/assets/javascripts/gridx/nls/hr/PaginationBar.js
|
|
219
|
+
- app/assets/javascripts/gridx/nls/hr/QuickFilter.js
|
|
220
|
+
- app/assets/javascripts/gridx/nls/hr/NestedSort.js
|
|
221
|
+
- app/assets/javascripts/gridx/nls/hr/SummaryBar.js
|
|
222
|
+
- app/assets/javascripts/gridx/nls/hr/Body.js
|
|
223
|
+
- app/assets/javascripts/gridx/nls/bg/FilterBar.js
|
|
224
|
+
- app/assets/javascripts/gridx/nls/bg/PaginationBar.js
|
|
225
|
+
- app/assets/javascripts/gridx/nls/bg/QuickFilter.js
|
|
226
|
+
- app/assets/javascripts/gridx/nls/bg/NestedSort.js
|
|
227
|
+
- app/assets/javascripts/gridx/nls/bg/SummaryBar.js
|
|
228
|
+
- app/assets/javascripts/gridx/nls/bg/Body.js
|
|
229
|
+
- app/assets/javascripts/gridx/nls/sv/FilterBar.js
|
|
230
|
+
- app/assets/javascripts/gridx/nls/sv/PaginationBar.js
|
|
231
|
+
- app/assets/javascripts/gridx/nls/sv/QuickFilter.js
|
|
232
|
+
- app/assets/javascripts/gridx/nls/sv/NestedSort.js
|
|
233
|
+
- app/assets/javascripts/gridx/nls/sv/SummaryBar.js
|
|
234
|
+
- app/assets/javascripts/gridx/nls/sv/Body.js
|
|
235
|
+
- app/assets/javascripts/gridx/nls/ko/FilterBar.js
|
|
236
|
+
- app/assets/javascripts/gridx/nls/ko/PaginationBar.js
|
|
237
|
+
- app/assets/javascripts/gridx/nls/ko/QuickFilter.js
|
|
238
|
+
- app/assets/javascripts/gridx/nls/ko/NestedSort.js
|
|
239
|
+
- app/assets/javascripts/gridx/nls/ko/SummaryBar.js
|
|
240
|
+
- app/assets/javascripts/gridx/nls/ko/Body.js
|
|
241
|
+
- app/assets/javascripts/gridx/nls/nb/FilterBar.js
|
|
242
|
+
- app/assets/javascripts/gridx/nls/nb/PaginationBar.js
|
|
243
|
+
- app/assets/javascripts/gridx/nls/nb/QuickFilter.js
|
|
244
|
+
- app/assets/javascripts/gridx/nls/nb/NestedSort.js
|
|
245
|
+
- app/assets/javascripts/gridx/nls/nb/SummaryBar.js
|
|
246
|
+
- app/assets/javascripts/gridx/nls/nb/Body.js
|
|
247
|
+
- app/assets/javascripts/gridx/nls/pt/FilterBar.js
|
|
248
|
+
- app/assets/javascripts/gridx/nls/pt/PaginationBar.js
|
|
249
|
+
- app/assets/javascripts/gridx/nls/pt/QuickFilter.js
|
|
250
|
+
- app/assets/javascripts/gridx/nls/pt/NestedSort.js
|
|
251
|
+
- app/assets/javascripts/gridx/nls/pt/SummaryBar.js
|
|
252
|
+
- app/assets/javascripts/gridx/nls/pt/Body.js
|
|
253
|
+
- app/assets/javascripts/gridx/nls/SummaryBar.js
|
|
254
|
+
- app/assets/javascripts/gridx/nls/de/FilterBar.js
|
|
255
|
+
- app/assets/javascripts/gridx/nls/de/PaginationBar.js
|
|
256
|
+
- app/assets/javascripts/gridx/nls/de/QuickFilter.js
|
|
257
|
+
- app/assets/javascripts/gridx/nls/de/NestedSort.js
|
|
258
|
+
- app/assets/javascripts/gridx/nls/de/SummaryBar.js
|
|
259
|
+
- app/assets/javascripts/gridx/nls/de/Body.js
|
|
260
|
+
- app/assets/javascripts/gridx/nls/Body.js
|
|
261
|
+
- app/assets/javascripts/gridx/nls/es/FilterBar.js
|
|
262
|
+
- app/assets/javascripts/gridx/nls/es/PaginationBar.js
|
|
263
|
+
- app/assets/javascripts/gridx/nls/es/QuickFilter.js
|
|
264
|
+
- app/assets/javascripts/gridx/nls/es/NestedSort.js
|
|
265
|
+
- app/assets/javascripts/gridx/nls/es/SummaryBar.js
|
|
266
|
+
- app/assets/javascripts/gridx/nls/es/Body.js
|
|
267
|
+
- app/assets/javascripts/gridx/nls/he/FilterBar.js
|
|
268
|
+
- app/assets/javascripts/gridx/nls/he/PaginationBar.js
|
|
269
|
+
- app/assets/javascripts/gridx/nls/he/QuickFilter.js
|
|
270
|
+
- app/assets/javascripts/gridx/nls/he/NestedSort.js
|
|
271
|
+
- app/assets/javascripts/gridx/nls/he/SummaryBar.js
|
|
272
|
+
- app/assets/javascripts/gridx/nls/he/Body.js
|
|
273
|
+
- app/assets/javascripts/gridx/nls/hu/FilterBar.js
|
|
274
|
+
- app/assets/javascripts/gridx/nls/hu/PaginationBar.js
|
|
275
|
+
- app/assets/javascripts/gridx/nls/hu/QuickFilter.js
|
|
276
|
+
- app/assets/javascripts/gridx/nls/hu/NestedSort.js
|
|
277
|
+
- app/assets/javascripts/gridx/nls/hu/SummaryBar.js
|
|
278
|
+
- app/assets/javascripts/gridx/nls/hu/Body.js
|
|
279
|
+
- app/assets/javascripts/gridx/Grid.js
|
|
280
|
+
- app/assets/javascripts/gridx/GridCommon.js
|
|
281
|
+
- app/assets/javascripts/gridx/mobile/nls/pl/common.js
|
|
282
|
+
- app/assets/javascripts/gridx/mobile/nls/pl/LazyLoad.js
|
|
283
|
+
- app/assets/javascripts/gridx/mobile/nls/pl/PullRefresh.js
|
|
284
|
+
- app/assets/javascripts/gridx/mobile/nls/sk/common.js
|
|
285
|
+
- app/assets/javascripts/gridx/mobile/nls/sk/LazyLoad.js
|
|
286
|
+
- app/assets/javascripts/gridx/mobile/nls/sk/PullRefresh.js
|
|
287
|
+
- app/assets/javascripts/gridx/mobile/nls/fi/common.js
|
|
288
|
+
- app/assets/javascripts/gridx/mobile/nls/fi/LazyLoad.js
|
|
289
|
+
- app/assets/javascripts/gridx/mobile/nls/fi/PullRefresh.js
|
|
290
|
+
- app/assets/javascripts/gridx/mobile/nls/ja/common.js
|
|
291
|
+
- app/assets/javascripts/gridx/mobile/nls/ja/LazyLoad.js
|
|
292
|
+
- app/assets/javascripts/gridx/mobile/nls/ja/PullRefresh.js
|
|
293
|
+
- app/assets/javascripts/gridx/mobile/nls/ru/common.js
|
|
294
|
+
- app/assets/javascripts/gridx/mobile/nls/ru/LazyLoad.js
|
|
295
|
+
- app/assets/javascripts/gridx/mobile/nls/ru/PullRefresh.js
|
|
296
|
+
- app/assets/javascripts/gridx/mobile/nls/common.js
|
|
297
|
+
- app/assets/javascripts/gridx/mobile/nls/pt-pt/common.js
|
|
298
|
+
- app/assets/javascripts/gridx/mobile/nls/pt-pt/LazyLoad.js
|
|
299
|
+
- app/assets/javascripts/gridx/mobile/nls/pt-pt/PullRefresh.js
|
|
300
|
+
- app/assets/javascripts/gridx/mobile/nls/da/common.js
|
|
301
|
+
- app/assets/javascripts/gridx/mobile/nls/da/LazyLoad.js
|
|
302
|
+
- app/assets/javascripts/gridx/mobile/nls/da/PullRefresh.js
|
|
303
|
+
- app/assets/javascripts/gridx/mobile/nls/el/common.js
|
|
304
|
+
- app/assets/javascripts/gridx/mobile/nls/el/LazyLoad.js
|
|
305
|
+
- app/assets/javascripts/gridx/mobile/nls/el/PullRefresh.js
|
|
306
|
+
- app/assets/javascripts/gridx/mobile/nls/sl/common.js
|
|
307
|
+
- app/assets/javascripts/gridx/mobile/nls/sl/LazyLoad.js
|
|
308
|
+
- app/assets/javascripts/gridx/mobile/nls/sl/PullRefresh.js
|
|
309
|
+
- app/assets/javascripts/gridx/mobile/nls/zh/common.js
|
|
310
|
+
- app/assets/javascripts/gridx/mobile/nls/zh/LazyLoad.js
|
|
311
|
+
- app/assets/javascripts/gridx/mobile/nls/zh/PullRefresh.js
|
|
312
|
+
- app/assets/javascripts/gridx/mobile/nls/fr/common.js
|
|
313
|
+
- app/assets/javascripts/gridx/mobile/nls/fr/LazyLoad.js
|
|
314
|
+
- app/assets/javascripts/gridx/mobile/nls/fr/PullRefresh.js
|
|
315
|
+
- app/assets/javascripts/gridx/mobile/nls/th/common.js
|
|
316
|
+
- app/assets/javascripts/gridx/mobile/nls/th/LazyLoad.js
|
|
317
|
+
- app/assets/javascripts/gridx/mobile/nls/th/PullRefresh.js
|
|
318
|
+
- app/assets/javascripts/gridx/mobile/nls/nl/common.js
|
|
319
|
+
- app/assets/javascripts/gridx/mobile/nls/nl/LazyLoad.js
|
|
320
|
+
- app/assets/javascripts/gridx/mobile/nls/nl/PullRefresh.js
|
|
321
|
+
- app/assets/javascripts/gridx/mobile/nls/zh-tw/common.js
|
|
322
|
+
- app/assets/javascripts/gridx/mobile/nls/zh-tw/LazyLoad.js
|
|
323
|
+
- app/assets/javascripts/gridx/mobile/nls/zh-tw/PullRefresh.js
|
|
324
|
+
- app/assets/javascripts/gridx/mobile/nls/tr/common.js
|
|
325
|
+
- app/assets/javascripts/gridx/mobile/nls/tr/LazyLoad.js
|
|
326
|
+
- app/assets/javascripts/gridx/mobile/nls/tr/PullRefresh.js
|
|
327
|
+
- app/assets/javascripts/gridx/mobile/nls/ar/common.js
|
|
328
|
+
- app/assets/javascripts/gridx/mobile/nls/ar/LazyLoad.js
|
|
329
|
+
- app/assets/javascripts/gridx/mobile/nls/ar/PullRefresh.js
|
|
330
|
+
- app/assets/javascripts/gridx/mobile/nls/kk/common.js
|
|
331
|
+
- app/assets/javascripts/gridx/mobile/nls/kk/LazyLoad.js
|
|
332
|
+
- app/assets/javascripts/gridx/mobile/nls/kk/PullRefresh.js
|
|
333
|
+
- app/assets/javascripts/gridx/mobile/nls/LazyLoad.js
|
|
334
|
+
- app/assets/javascripts/gridx/mobile/nls/it/common.js
|
|
335
|
+
- app/assets/javascripts/gridx/mobile/nls/it/LazyLoad.js
|
|
336
|
+
- app/assets/javascripts/gridx/mobile/nls/it/PullRefresh.js
|
|
337
|
+
- app/assets/javascripts/gridx/mobile/nls/ro/common.js
|
|
338
|
+
- app/assets/javascripts/gridx/mobile/nls/ro/LazyLoad.js
|
|
339
|
+
- app/assets/javascripts/gridx/mobile/nls/ro/PullRefresh.js
|
|
340
|
+
- app/assets/javascripts/gridx/mobile/nls/ca/common.js
|
|
341
|
+
- app/assets/javascripts/gridx/mobile/nls/ca/LazyLoad.js
|
|
342
|
+
- app/assets/javascripts/gridx/mobile/nls/ca/PullRefresh.js
|
|
343
|
+
- app/assets/javascripts/gridx/mobile/nls/uk/common.js
|
|
344
|
+
- app/assets/javascripts/gridx/mobile/nls/uk/LazyLoad.js
|
|
345
|
+
- app/assets/javascripts/gridx/mobile/nls/uk/PullRefresh.js
|
|
346
|
+
- app/assets/javascripts/gridx/mobile/nls/cs/common.js
|
|
347
|
+
- app/assets/javascripts/gridx/mobile/nls/cs/LazyLoad.js
|
|
348
|
+
- app/assets/javascripts/gridx/mobile/nls/cs/PullRefresh.js
|
|
349
|
+
- app/assets/javascripts/gridx/mobile/nls/hr/common.js
|
|
350
|
+
- app/assets/javascripts/gridx/mobile/nls/hr/LazyLoad.js
|
|
351
|
+
- app/assets/javascripts/gridx/mobile/nls/hr/PullRefresh.js
|
|
352
|
+
- app/assets/javascripts/gridx/mobile/nls/bg/common.js
|
|
353
|
+
- app/assets/javascripts/gridx/mobile/nls/bg/LazyLoad.js
|
|
354
|
+
- app/assets/javascripts/gridx/mobile/nls/bg/PullRefresh.js
|
|
355
|
+
- app/assets/javascripts/gridx/mobile/nls/sv/common.js
|
|
356
|
+
- app/assets/javascripts/gridx/mobile/nls/sv/LazyLoad.js
|
|
357
|
+
- app/assets/javascripts/gridx/mobile/nls/sv/PullRefresh.js
|
|
358
|
+
- app/assets/javascripts/gridx/mobile/nls/ko/common.js
|
|
359
|
+
- app/assets/javascripts/gridx/mobile/nls/ko/LazyLoad.js
|
|
360
|
+
- app/assets/javascripts/gridx/mobile/nls/ko/PullRefresh.js
|
|
361
|
+
- app/assets/javascripts/gridx/mobile/nls/nb/common.js
|
|
362
|
+
- app/assets/javascripts/gridx/mobile/nls/nb/LazyLoad.js
|
|
363
|
+
- app/assets/javascripts/gridx/mobile/nls/nb/PullRefresh.js
|
|
364
|
+
- app/assets/javascripts/gridx/mobile/nls/pt/common.js
|
|
365
|
+
- app/assets/javascripts/gridx/mobile/nls/pt/LazyLoad.js
|
|
366
|
+
- app/assets/javascripts/gridx/mobile/nls/pt/PullRefresh.js
|
|
367
|
+
- app/assets/javascripts/gridx/mobile/nls/de/common.js
|
|
368
|
+
- app/assets/javascripts/gridx/mobile/nls/de/LazyLoad.js
|
|
369
|
+
- app/assets/javascripts/gridx/mobile/nls/de/PullRefresh.js
|
|
370
|
+
- app/assets/javascripts/gridx/mobile/nls/es/common.js
|
|
371
|
+
- app/assets/javascripts/gridx/mobile/nls/es/LazyLoad.js
|
|
372
|
+
- app/assets/javascripts/gridx/mobile/nls/es/PullRefresh.js
|
|
373
|
+
- app/assets/javascripts/gridx/mobile/nls/he/common.js
|
|
374
|
+
- app/assets/javascripts/gridx/mobile/nls/he/LazyLoad.js
|
|
375
|
+
- app/assets/javascripts/gridx/mobile/nls/he/PullRefresh.js
|
|
376
|
+
- app/assets/javascripts/gridx/mobile/nls/PullRefresh.js
|
|
377
|
+
- app/assets/javascripts/gridx/mobile/nls/hu/common.js
|
|
378
|
+
- app/assets/javascripts/gridx/mobile/nls/hu/LazyLoad.js
|
|
379
|
+
- app/assets/javascripts/gridx/mobile/nls/hu/PullRefresh.js
|
|
380
|
+
- app/assets/javascripts/gridx/mobile/Grid.js
|
|
381
|
+
- app/assets/javascripts/gridx/mobile/LazyLoad.js
|
|
382
|
+
- app/assets/javascripts/gridx/mobile/Sort.js
|
|
383
|
+
- app/assets/javascripts/gridx/mobile/PullRefresh.js
|
|
384
|
+
- app/assets/javascripts/gridx/modules/Persist.js
|
|
385
|
+
- app/assets/javascripts/gridx/modules/HLayout.js
|
|
386
|
+
- app/assets/javascripts/gridx/modules/Filter.js
|
|
387
|
+
- app/assets/javascripts/gridx/modules/filter/FilterBar.js
|
|
388
|
+
- app/assets/javascripts/gridx/modules/filter/Filter.js
|
|
389
|
+
- app/assets/javascripts/gridx/modules/filter/QuickFilter.js
|
|
390
|
+
- app/assets/javascripts/gridx/modules/filter/FilterTooltip.js
|
|
391
|
+
- app/assets/javascripts/gridx/modules/filter/DistinctComboBoxMenu.js
|
|
392
|
+
- app/assets/javascripts/gridx/modules/filter/FilterPane.js
|
|
393
|
+
- app/assets/javascripts/gridx/modules/filter/FilterConfirmDialog.js
|
|
394
|
+
- app/assets/javascripts/gridx/modules/filter/FilterDialog.js
|
|
395
|
+
- app/assets/javascripts/gridx/modules/ColumnResizer.js
|
|
396
|
+
- app/assets/javascripts/gridx/modules/HeaderMenu.js
|
|
397
|
+
- app/assets/javascripts/gridx/modules/HeaderRegions.js
|
|
398
|
+
- app/assets/javascripts/gridx/modules/ColumnWidth.js
|
|
399
|
+
- app/assets/javascripts/gridx/modules/VirtualVScroller.js
|
|
400
|
+
- app/assets/javascripts/gridx/modules/Edit.js
|
|
401
|
+
- app/assets/javascripts/gridx/modules/RowHeader.js
|
|
402
|
+
- app/assets/javascripts/gridx/modules/RowLock.js
|
|
403
|
+
- app/assets/javascripts/gridx/modules/Header.js
|
|
404
|
+
- app/assets/javascripts/gridx/modules/GroupHeader.js
|
|
405
|
+
- app/assets/javascripts/gridx/modules/TouchVScroller.js
|
|
406
|
+
- app/assets/javascripts/gridx/modules/VScroller.js
|
|
407
|
+
- app/assets/javascripts/gridx/modules/Printer.js
|
|
408
|
+
- app/assets/javascripts/gridx/modules/SingleSort.js
|
|
409
|
+
- app/assets/javascripts/gridx/modules/HScroller.js
|
|
410
|
+
- app/assets/javascripts/gridx/modules/VLayout.js
|
|
411
|
+
- app/assets/javascripts/gridx/modules/TouchScroll.js
|
|
412
|
+
- app/assets/javascripts/gridx/modules/Menu.js
|
|
413
|
+
- app/assets/javascripts/gridx/modules/select/_Base.js
|
|
414
|
+
- app/assets/javascripts/gridx/modules/select/Column.js
|
|
415
|
+
- app/assets/javascripts/gridx/modules/select/_RowCellBase.js
|
|
416
|
+
- app/assets/javascripts/gridx/modules/select/Row.js
|
|
417
|
+
- app/assets/javascripts/gridx/modules/select/Cell.js
|
|
418
|
+
- app/assets/javascripts/gridx/modules/CellWidget.js
|
|
419
|
+
- app/assets/javascripts/gridx/modules/NestedSort.js
|
|
420
|
+
- app/assets/javascripts/gridx/modules/AutoScroll.js
|
|
421
|
+
- app/assets/javascripts/gridx/modules/barPlugins/Summary.js
|
|
422
|
+
- app/assets/javascripts/gridx/modules/barPlugins/DropDownPager.js
|
|
423
|
+
- app/assets/javascripts/gridx/modules/barPlugins/LinkPager.js
|
|
424
|
+
- app/assets/javascripts/gridx/modules/barPlugins/DropDownSizer.js
|
|
425
|
+
- app/assets/javascripts/gridx/modules/barPlugins/LinkSizer.js
|
|
426
|
+
- app/assets/javascripts/gridx/modules/barPlugins/GotoPageButton.js
|
|
427
|
+
- app/assets/javascripts/gridx/modules/exporter/CSV.js
|
|
428
|
+
- app/assets/javascripts/gridx/modules/exporter/Exporter.js
|
|
429
|
+
- app/assets/javascripts/gridx/modules/exporter/Table.js
|
|
430
|
+
- app/assets/javascripts/gridx/modules/Bar.js
|
|
431
|
+
- app/assets/javascripts/gridx/modules/move/Column.js
|
|
432
|
+
- app/assets/javascripts/gridx/modules/move/Row.js
|
|
433
|
+
- app/assets/javascripts/gridx/modules/SummaryBar.js
|
|
434
|
+
- app/assets/javascripts/gridx/modules/Traverse.js
|
|
435
|
+
- app/assets/javascripts/gridx/modules/dnd/_Base.js
|
|
436
|
+
- app/assets/javascripts/gridx/modules/dnd/Column.js
|
|
437
|
+
- app/assets/javascripts/gridx/modules/dnd/_Dnd.js
|
|
438
|
+
- app/assets/javascripts/gridx/modules/dnd/Avatar.js
|
|
439
|
+
- app/assets/javascripts/gridx/modules/dnd/Row.js
|
|
440
|
+
- app/assets/javascripts/gridx/modules/HiddenColumns.js
|
|
441
|
+
- app/assets/javascripts/gridx/modules/Tree.js
|
|
442
|
+
- app/assets/javascripts/gridx/modules/TitleBar.js
|
|
443
|
+
- app/assets/javascripts/gridx/modules/Body.js
|
|
444
|
+
- app/assets/javascripts/gridx/modules/extendedSelect/_Base.js
|
|
445
|
+
- app/assets/javascripts/gridx/modules/extendedSelect/Column.js
|
|
446
|
+
- app/assets/javascripts/gridx/modules/extendedSelect/_RowCellBase.js
|
|
447
|
+
- app/assets/javascripts/gridx/modules/extendedSelect/Row.js
|
|
448
|
+
- app/assets/javascripts/gridx/modules/extendedSelect/Cell.js
|
|
449
|
+
- app/assets/javascripts/gridx/modules/ColumnLock.js
|
|
450
|
+
- app/assets/javascripts/gridx/modules/Focus.js
|
|
451
|
+
- app/assets/javascripts/gridx/modules/ToolBar.js
|
|
452
|
+
- app/assets/javascripts/gridx/modules/Pagination.js
|
|
453
|
+
- app/assets/javascripts/gridx/modules/NavigableCell.js
|
|
454
|
+
- app/assets/javascripts/gridx/modules/PagedBody.js
|
|
455
|
+
- app/assets/javascripts/gridx/modules/View.js
|
|
456
|
+
- app/assets/javascripts/gridx/modules/IndirectSelectColumn.js
|
|
457
|
+
- app/assets/javascripts/gridx/modules/IndirectSelect.js
|
|
458
|
+
- app/assets/javascripts/gridx/modules/Dod.js
|
|
459
|
+
- app/assets/javascripts/gridx/modules/pagination/PaginationBar.js
|
|
460
|
+
- app/assets/javascripts/gridx/modules/pagination/_PaginationBarBase.js
|
|
461
|
+
- app/assets/javascripts/gridx/modules/pagination/PaginationBarDD.js
|
|
462
|
+
- app/assets/javascripts/gridx/modules/pagination/Pagination.js
|
|
463
|
+
- app/assets/javascripts/gridx/allModules.js
|
|
464
|
+
- app/assets/javascripts/gridx/core/Column.js
|
|
465
|
+
- app/assets/javascripts/gridx/core/Core.js
|
|
466
|
+
- app/assets/javascripts/gridx/core/util.js
|
|
467
|
+
- app/assets/javascripts/gridx/core/Row.js
|
|
468
|
+
- app/assets/javascripts/gridx/core/Cell.js
|
|
469
|
+
- app/assets/javascripts/gridx/core/_Module.js
|
|
470
|
+
- app/assets/javascripts/gridx/core/model/cache/Async.js
|
|
471
|
+
- app/assets/javascripts/gridx/core/model/cache/Sync.js
|
|
472
|
+
- app/assets/javascripts/gridx/core/model/cache/_Cache.js
|
|
473
|
+
- app/assets/javascripts/gridx/core/model/extensions/Query.js
|
|
474
|
+
- app/assets/javascripts/gridx/core/model/extensions/ClientFilter.js
|
|
475
|
+
- app/assets/javascripts/gridx/core/model/extensions/FormatSort.js
|
|
476
|
+
- app/assets/javascripts/gridx/core/model/extensions/Mark.js
|
|
477
|
+
- app/assets/javascripts/gridx/core/model/extensions/Modify.js
|
|
478
|
+
- app/assets/javascripts/gridx/core/model/extensions/Sort.js
|
|
479
|
+
- app/assets/javascripts/gridx/core/model/extensions/Move.js
|
|
480
|
+
- app/assets/javascripts/gridx/core/model/Model.js
|
|
481
|
+
- app/assets/javascripts/gridx/core/model/_Extension.js
|
|
482
|
+
- app/assets/stylesheets/gridx/resources/dnd.css
|
|
483
|
+
- app/assets/stylesheets/gridx/resources/pagination.css
|
|
484
|
+
- app/assets/stylesheets/gridx/resources/Tree_rtl.css
|
|
485
|
+
- app/assets/stylesheets/gridx/resources/Gridx_rtl.css
|
|
486
|
+
- app/assets/stylesheets/gridx/resources/Tree.css
|
|
487
|
+
- app/assets/stylesheets/gridx/resources/pagination_rtl.css
|
|
488
|
+
- app/assets/stylesheets/gridx/resources/sort.css
|
|
489
|
+
- app/assets/stylesheets/gridx/resources/filter_rtl.css
|
|
490
|
+
- app/assets/stylesheets/gridx/resources/bar.css
|
|
491
|
+
- app/assets/stylesheets/gridx/resources/Dod.css
|
|
492
|
+
- app/assets/stylesheets/gridx/resources/basic_rtl.css
|
|
493
|
+
- app/assets/stylesheets/gridx/resources/basic.css
|
|
494
|
+
- app/assets/stylesheets/gridx/resources/claro/pagination.css
|
|
495
|
+
- app/assets/stylesheets/gridx/resources/claro/Gridx_rtl.css
|
|
496
|
+
- app/assets/stylesheets/gridx/resources/claro/basic_rtl.css
|
|
497
|
+
- app/assets/stylesheets/gridx/resources/claro/basic.css
|
|
498
|
+
- app/assets/stylesheets/gridx/resources/claro/lock.css
|
|
499
|
+
- app/assets/stylesheets/gridx/resources/claro/select.css
|
|
500
|
+
- app/assets/stylesheets/gridx/resources/claro/filter.css
|
|
501
|
+
- app/assets/stylesheets/gridx/resources/claro/Gridx.css
|
|
502
|
+
- app/assets/stylesheets/gridx/resources/lock.css
|
|
503
|
+
- app/assets/stylesheets/gridx/resources/select.css
|
|
504
|
+
- app/assets/stylesheets/gridx/resources/filter.css
|
|
505
|
+
- app/assets/stylesheets/gridx/resources/Gridx.css
|
|
506
|
+
- app/assets/stylesheets/gridx/resources/sort_rtl.css
|
|
507
|
+
- app/assets/stylesheets/gridx/mobile/themes/iphone/Grid.css
|
|
508
|
+
- app/assets/images/gridx/resources/images/header_shadow.png
|
|
509
|
+
- app/assets/images/gridx/resources/images/claro-grid-header-onepixel.bmp
|
|
510
|
+
- app/assets/images/gridx/resources/images/dndCopy.png
|
|
511
|
+
- app/assets/images/gridx/resources/images/row_back.png
|
|
512
|
+
- app/assets/images/gridx/resources/images/treeExpand_loading.gif
|
|
513
|
+
- app/assets/images/gridx/resources/images/dndNoCopy.png
|
|
514
|
+
- app/assets/images/gridx/resources/images/gridxCellChanged.png
|
|
515
|
+
- app/assets/images/gridx/resources/images/checkboxpartial.png
|
|
516
|
+
- app/assets/images/gridx/resources/images/treeExpandImages.png
|
|
517
|
+
- app/assets/images/gridx/resources/images/sprite_icons.png
|
|
518
|
+
- app/assets/images/gridx/resources/images/loadingAnimation.gif
|
|
519
|
+
- app/assets/images/gridx/resources/images/dndNoMove.png
|
|
520
|
+
- app/assets/images/gridx/resources/images/dndMove.png
|
|
521
|
+
- app/assets/images/gridx/resources/images/checkboxpartialdisabled.png
|
|
522
|
+
- app/assets/images/gridx/resources/images/header.png
|
|
523
|
+
- app/assets/images/gridx/resources/images/row_back_changed.png
|
|
524
|
+
- app/assets/images/gridx/mobile/themes/iphone/images/arrow.png
|
|
525
|
+
- app/assets/images/gridx/mobile/themes/iphone/images/ajax-loader.gif
|
|
526
|
+
- lib/gridx-rails.rb
|
|
527
|
+
- lib/tasks/gridx-rails_tasks.rake
|
|
528
|
+
- lib/gridx-rails/version.rb
|
|
529
|
+
- lib/gridx-rails/engine.rb
|
|
530
|
+
- LICENSE
|
|
531
|
+
- Rakefile
|
|
532
|
+
- README.md
|
|
533
|
+
- test/gridx-rails_test.rb
|
|
534
|
+
- test/test_helper.rb
|
|
535
|
+
- test/dummy/public/404.html
|
|
536
|
+
- test/dummy/public/favicon.ico
|
|
537
|
+
- test/dummy/public/500.html
|
|
538
|
+
- test/dummy/public/422.html
|
|
539
|
+
- test/dummy/config/routes.rb
|
|
540
|
+
- test/dummy/config/boot.rb
|
|
541
|
+
- test/dummy/config/environments/development.rb
|
|
542
|
+
- test/dummy/config/environments/test.rb
|
|
543
|
+
- test/dummy/config/environments/production.rb
|
|
544
|
+
- test/dummy/config/application.rb
|
|
545
|
+
- test/dummy/config/environment.rb
|
|
546
|
+
- test/dummy/config/initializers/secret_token.rb
|
|
547
|
+
- test/dummy/config/initializers/mime_types.rb
|
|
548
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
|
549
|
+
- test/dummy/config/initializers/session_store.rb
|
|
550
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
|
551
|
+
- test/dummy/config/initializers/inflections.rb
|
|
552
|
+
- test/dummy/config/locales/en.yml
|
|
553
|
+
- test/dummy/config/database.yml
|
|
554
|
+
- test/dummy/Rakefile
|
|
555
|
+
- test/dummy/log/test.log
|
|
556
|
+
- test/dummy/config.ru
|
|
557
|
+
- test/dummy/app/controllers/application_controller.rb
|
|
558
|
+
- test/dummy/app/assets/javascripts/application.js
|
|
559
|
+
- test/dummy/app/assets/stylesheets/application.css
|
|
560
|
+
- test/dummy/app/views/layouts/application.html.erb
|
|
561
|
+
- test/dummy/app/helpers/application_helper.rb
|
|
562
|
+
- test/dummy/README.rdoc
|
|
563
|
+
- test/dummy/db/test.sqlite3
|
|
564
|
+
- test/dummy/script/rails
|
|
565
|
+
homepage: https://github.com/agios/gridx-rails
|
|
566
|
+
licenses:
|
|
567
|
+
- BSD or AFL
|
|
568
|
+
metadata: {}
|
|
569
|
+
post_install_message:
|
|
570
|
+
rdoc_options: []
|
|
571
|
+
require_paths:
|
|
572
|
+
- lib
|
|
573
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
574
|
+
requirements:
|
|
575
|
+
- - ! '>='
|
|
576
|
+
- !ruby/object:Gem::Version
|
|
577
|
+
version: '0'
|
|
578
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
579
|
+
requirements:
|
|
580
|
+
- - ! '>='
|
|
581
|
+
- !ruby/object:Gem::Version
|
|
582
|
+
version: '0'
|
|
583
|
+
requirements: []
|
|
584
|
+
rubyforge_project:
|
|
585
|
+
rubygems_version: 2.0.3
|
|
586
|
+
signing_key:
|
|
587
|
+
specification_version: 4
|
|
588
|
+
summary: Gridx packaged for the Rails asset pipeline
|
|
589
|
+
test_files:
|
|
590
|
+
- test/gridx-rails_test.rb
|
|
591
|
+
- test/test_helper.rb
|
|
592
|
+
- test/dummy/public/404.html
|
|
593
|
+
- test/dummy/public/favicon.ico
|
|
594
|
+
- test/dummy/public/500.html
|
|
595
|
+
- test/dummy/public/422.html
|
|
596
|
+
- test/dummy/config/routes.rb
|
|
597
|
+
- test/dummy/config/boot.rb
|
|
598
|
+
- test/dummy/config/environments/development.rb
|
|
599
|
+
- test/dummy/config/environments/test.rb
|
|
600
|
+
- test/dummy/config/environments/production.rb
|
|
601
|
+
- test/dummy/config/application.rb
|
|
602
|
+
- test/dummy/config/environment.rb
|
|
603
|
+
- test/dummy/config/initializers/secret_token.rb
|
|
604
|
+
- test/dummy/config/initializers/mime_types.rb
|
|
605
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
|
606
|
+
- test/dummy/config/initializers/session_store.rb
|
|
607
|
+
- test/dummy/config/initializers/backtrace_silencers.rb
|
|
608
|
+
- test/dummy/config/initializers/inflections.rb
|
|
609
|
+
- test/dummy/config/locales/en.yml
|
|
610
|
+
- test/dummy/config/database.yml
|
|
611
|
+
- test/dummy/Rakefile
|
|
612
|
+
- test/dummy/log/test.log
|
|
613
|
+
- test/dummy/config.ru
|
|
614
|
+
- test/dummy/app/controllers/application_controller.rb
|
|
615
|
+
- test/dummy/app/assets/javascripts/application.js
|
|
616
|
+
- test/dummy/app/assets/stylesheets/application.css
|
|
617
|
+
- test/dummy/app/views/layouts/application.html.erb
|
|
618
|
+
- test/dummy/app/helpers/application_helper.rb
|
|
619
|
+
- test/dummy/README.rdoc
|
|
620
|
+
- test/dummy/db/test.sqlite3
|
|
621
|
+
- test/dummy/script/rails
|