forked from jrowen/rhandsontable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNEWS
64 lines (40 loc) · 2.75 KB
/
NEWS
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
rhandsontable 0.2.2
-------------------------
* Added support for default column values when new row added (#33)
* Fixed bug that jumbled columns when some column names were numeric (#47)
* Fixed a bug in the validation logic that was preventing the call background from changing to red for invalid entries when allowInvalid = TRUE (#48)
rhandsontable 0.2.1
-------------------------
* Added a new function, hot_context_menu, to better control right-click menu. The option to export to csv has been removed for now, but a new context_menu example has been added that shows how to enable the option. The example also shows how to enable the table search functionality (#38, #41).
* Added a new comments parameter to rhandsontable to allow bulk comment specification.
* Added a new shiny _comment callback to track changes to table comments. See the new rhandsontable_comment example for more details.
* Added dateFormat to hot_col and allow passing additional column parameters. Future updates should hopefully allow more control over date formatting.
* Fixed a table resize bug (#26)
* Fixed hot_to_r to preserve original data classes when useTypes = FALSE (#39). See the rhandsontable_output example for more details.
* Fixed shiny select callback to use 1-based indices (instead of JavaScripts 0-based indices).
rhandsontable 0.2
-------------------------
* Added a project page at http://jrowen.github.io/rhandsontable
* Upgraded to handsontable 0.16.1
* Improved mapping between R classes and handsontable column types. Numeric columns
in R are now mapped to numeric columns in the table, and factors are now
mapped as dropdown columns (#30).
* Numeric columns are now formatted as '0' for integers and '0.00' for all other
numeric columns. See http://http://numeraljs.com/ for more details on
formatting options.
* Sparkline charts (http://omnipotent.net/jquery.sparkline/) can now be added to the
table. See the project page for examples, and thanks to the sparkline package and
Ramnath Vaidyanathan for inspiration. The sparkline chart width will be
set to fit within the specified column width. The feature is still evolving, so
please pass along feedback.
* Display NA values as blank cells in the table. This requires changing colums with NA
values to character when displaying in handsontable and may require special handling
for Date and factor columns. See the examples on the project page for more details.
Thanks to Melanie Bacou for the suggestion.
* Added stretchH parameter to hot_table.
* Fixed a bug where the table was not updated when resized.
* Fixed a bug with row indices when sorting rows (#34)
* Set overflow: auto and specified a default height = 400 in shiny (#21).
rhandsontable 0.1
-------------------------
* Initial version.