217 Commits

Author SHA1 Message Date
Shariq Ansari
8ceadaccba
fix: update rowIndex width when row count changes (#138)
* fix: update rowIndex width when row count changes

* fix: removed unwanted code

* fix: Added Refresh Data button
2021-08-20 17:07:35 +05:30
Prssanna Desai
279a876f7d
fix: 🐛 scroll for rtl direction (#111) 2020-09-16 11:45:20 +05:30
prssanna
18964c0346 fix: 🐛 set content of empty cell to empty string for sorting 2020-02-29 15:56:36 +05:30
Faris Ansari
3475f6ccaa fix: Set cell height explicitly 2019-12-09 22:35:53 +05:30
Faris Ansari
31264d1f4d feat: Ability to disable column reordering 2019-10-01 00:12:17 +05:30
Faris Ansari
1a9c11edf0 fix: Render fluid layout if first row doesnt exist 2019-09-28 14:00:18 +05:30
Faris Ansari
d92fc5e969 feat: Allow overriding individual components 2019-09-17 19:00:11 +05:30
Faris Ansari
ad0e0b592a fix: Render blank state when rows is 0 2019-09-17 18:59:14 +05:30
Faris Ansari
a47e1f07eb fix: Move past non focusable cell while navigating 2019-08-11 18:00:39 +05:30
Deepesh Garg
3712aaada3 fix: Navigation fix using tabs in inline filters (#75) 2019-07-05 13:14:55 +05:30
Faris Ansari
40c8e51e86 fix: Set dropdown background as header background 2019-06-24 15:19:09 +05:30
Faris Ansari
b1962dffcf fix: Submit cell if editing deactivated
Editing cell will now submit the value when the editing is deactivated,
except when Escape key is pressed.
It will also submit when Tab key is pressed.
2019-06-24 15:11:24 +05:30
Faris Ansari
1a0eba65a0 fix: Number compare
- 006 will match abc006
- 1230 will match 1,230 (formatted), 1230 and abc1230
2019-06-24 15:08:39 +05:30
Deepesh Garg
bbca6d8f60 fix: String compare if hay is alphanumeric 2019-06-11 15:27:22 +05:30
Deepesh Garg
e25ef86a63 fix: Parse keyword as float (#68) 2019-05-28 17:45:53 +05:30
Deepesh Garg
b075fb5d71 fix: Compare number using contains instead of equals (#67) 2019-05-23 12:51:18 +05:30
Deepesh Garg
e014960e97
feat: Add support for RTL (#64) 2019-04-26 13:10:10 +05:30
Saif
67f9717827 perf: ️ Expand All and Collapse All render only once (#63)
* perf: ️ Expand All and Collapse All render only once

* Introduce setTreeDepth() function
2019-04-25 12:37:56 +05:30
Faris Ansari
8d96f953cd fix: Allow column to be resized below naturalWidth
- Also honor minimumColumnWidth option
2019-04-24 11:22:33 +05:30
Faris Ansari
944010d113 fix: Filter numeric columns by value
No need to use = to filter numeric values by their value
2019-04-16 12:43:21 +05:30
Faris Ansari
007579f55e feat: Add API for expand/collapse tree nodes 2019-04-05 17:02:31 +05:30
Faris Ansari
637d37deb8 feat: Add not equals (!=) filter 2019-04-03 23:10:00 +05:30
Faris Ansari
7b325a5ba0 feat: Double click resize handle to resize to perfect width 2019-03-30 17:22:25 +05:30
Faris Ansari
3446488b08 fix: Allow column resize past minWidth upto 30px 2019-03-30 17:21:08 +05:30
Faris Ansari
1845adc46e fix: Scroll problem when cell is focused 2019-03-30 17:19:23 +05:30
Saif
0f44a51da3 feat: 🎸 Total Accumulator hook for totals row (#55)
* feat: 🎸 Accumulator event for totals row

* fix: 🐛 Changed values passed to accumulator function

and moved function to hooks.totalAccumulator

* fix: 🐛 Total row set null for column without any number

* fix: Refactor accumulator

- Rename to columnTotal

* fix: 🐛 Prevent showing 0 in total row for Data fieldtype

* fix: Remove hooks object from parent

* fix: Remove separate hooks initialization
2019-02-12 19:51:13 +05:30
Faris Ansari
3e044a5ffa feat: 🎸 Add compareValue hook to control comparison
For custom comparison where the formatted value is different than the
actual value, users will mostly compare using the formatted string. Use
compareValue to return parsed cell value and keyword.
2019-01-14 13:34:04 +05:30
Faris Ansari
3fc8ac9e72 fix: 🐛 Dropdown z-index problem
Z-index of dropdown does not work because it's parent has a transform
property. To avoid this, we float the dropdown using fixed co-ordinates
and then update the x, y positions.
2018-12-28 19:16:26 +05:30
Faris Ansari
acfe0e49cd fix: 🐛 Comparison now also works with strings
Inline filters like >2011/04/01 will work as expected. Works with >, <
and :
2018-12-28 18:10:24 +05:30
Faris Ansari
302c1f83d5 fix: 🐛 Smarter setting of bodyHeight based on overflow
When there are only a couple of rows, the scrollbar causes a scroll
which is not needed. We check if the overflow amount is less than the
size of scrollbar and then forcefully disable the scrolling.
2018-12-22 13:02:31 +05:30
Saif Ur Rehman
d6aa52fb16 fix: 🐛 scrolling and height fixes 2018-12-20 05:33:39 +05:00
Faris Ansari
19fb921ed2 fix: 🐛 Border styling for header 2018-12-13 18:01:30 +05:30
Faris Ansari
bdbdc90578 fix: 🐛 Initialize hyperlist with width/height of container 2018-12-13 18:01:01 +05:30
Faris Ansari
fb4370020f fix: 🐛 Always show vertical scrollbar
Decouple bodyScrollable from header. Now header position is synced based
on scrollLeft of bodyScrollable. Also, remove redundant .dt-body
container.
2018-12-13 16:59:30 +05:30
Faris Ansari
b6d4a0eea7 feat: 🎸 Add = keyword for equality matching
Support = keyword for equality matching in numeric columns
2018-12-10 20:05:19 +05:30
Faris Ansari
c559faa67b fix: 🐛 Sort filtered results
Fixes the problem where when you sort rows and then try to filter, the
sort order is lost.

closes #51
2018-12-10 19:30:12 +05:30
Faris Ansari
1e20502d09 fix: 🐛 Extract getTotalRow into a function 2018-12-07 17:15:08 +05:30
Faris Ansari
96c7b723da fix: 🐛 Fallback to cell content when html is not available 2018-12-07 15:23:22 +05:30
Faris Ansari
f5df997c00 feat: 🎸 Total Row
A persistent row which shows the total of the columns which have numeric
values. It also updates when the rows are filtered.
2018-11-29 16:39:35 +05:30
Faris Ansari
f791c91df6 fix: 🐛 Numeric comparison should compare with cell value
Numeric comparison like >, < should compare with the cell value and not
the formatted html value
2018-11-29 13:41:07 +05:30
Faris Ansari
ec08d75261 fix: 🐛 Filter rows based on the formatted value
Earlier filtering was done based on the original value of the cell, but
formatters could change the display value
2018-11-29 13:19:56 +05:30
Faris Ansari
33f7ab9c25 fix: 🐛 Reset body height before setting the bodyStyle
In case when there are very less number of rows, the height will adapt
to a lower value. But in the next refresh the number of rows could
increase so the body height should be reset to it's original value
2018-11-28 00:15:31 +05:30
Faris Ansari
89f13b530a fix: 🐛 Skip setting cellHeight in setDimensions
cellHeight (row height technically) is now handled by hyperlist
directly, so no need to do it manually
2018-11-20 13:34:04 +01:00
Faris Ansari
6fe075467d fix: 🐛 Sort rows numerically
Default sort method uses alphabetical sort
2018-11-01 16:40:35 +05:30
Faris Ansari
cfbb891737 fix: 🐛 Adapt container height when there are less rows 2018-11-01 15:26:11 +05:30
Faris Ansari
1f27d194ca fix: 🐛 Remove non-existing bindEvents method call 2018-11-01 11:29:15 +05:30
Faris Ansari
7eaabcbfe0 fix: 🐛 Reimplement tree node toggle logic
Earlier, rows were hidden using style. Now, since we are using
hyperlist, it is better to refresh the whole list.
2018-10-31 19:09:40 +05:30
Faris Ansari
932afb6cbe feat: 🎸 Support for multiple filters in columns
Multiple inline filters will be applied as AND filters
2018-10-16 13:56:10 +05:30
Faris Ansari
ffe0d2a3f5 style: 💄 Fix ESLint 2018-10-11 13:14:33 +05:30
Faris Ansari
84b7fa3d83 fix: 🐛 More robust column width calculation
Set minimum column width based on options (default 70), also measure
rowIndex column directly in DOM
2018-10-11 13:05:25 +05:30