File python-jupyter_qgrid.changes of Package python-jupyter_qgrid
-------------------------------------------------------------------
Thu Aug 2 19:33:35 UTC 2018 - toddrme2178@gmail.com
- Update to 1.1.1
* Fixes an issue where the grid widget would flash noticeably
when the df attribute or any other attributes were changed.
This issue has existed since 1.0. (#186)
* Make the SlickGrid object available via
$('.q-grid').data('slickgrid') as suggested here:
#178 (comment). This allows you to work with a particular
SlickGrid instance from the js console.
- Update to 1.1.0
* Column options can be provided via the show_grid method.
Options can be provided for all columns via the
column_options parameter, and for individual columns via the
column_definitions parameter.
* Added edit_cell, change_selection, toggle_editable methods
for updating the state of an existing grid widget without
having to call show_grid.
* Updated the add_row method so that the caller can specify
the values for the new row via the row parameter. This will
allow people to add rows to a qgrid instance even if it's
showing a DataFrame that doesn't have an integer index.
* Updated the remove_row method so that the indices of the rows
to remove can optionally be provided via the rows parameter.
* Fixed issue where moving the scroll bar around a bunch of
times quickly can cause a series of grid refreshes to occur.
* Thanks to Abigail Hahn (vardaofthevalier) for adding many of
the features in the following PR: #191
-------------------------------------------------------------------
Sun Jun 10 11:06:15 UTC 2018 - jengelh@inai.de
- Avoid bashism in scriptlet.
-------------------------------------------------------------------
Thu Jun 7 21:29:28 UTC 2018 - jengelh@inai.de
- Use noun phrase in summary.
-------------------------------------------------------------------
Thu Jun 7 15:30:57 UTC 2018 - toddrme2178@gmail.com
- Update to 1.0.5
* Fixes issue where editing cells in a DataFrame with an unnamed
index results in an error pop up
* Make categorical column filtering work with old versions of
pandas, like 0.18
* Adds new on and off methods at both the module-level (for
listening to events on all qgrid instances) and at the
instance-level (for listening to events on individual qgrid
instances)
* The on and off methods mentioned above should now be used to
listen for events instead of listening for the on_value_change
event of the _df attribute. In other words using
qgrid_widget.observe(on_value_change, names=['_df']) for being
notified about changes to the state of the grid (i.e. editing,
sorting, filtering) will no longer work.
- Use || true syntax instead of exit 0
-------------------------------------------------------------------
Thu May 3 14:07:08 UTC 2018 - toddrme2178@gmail.com
- Use %license tag
-------------------------------------------------------------------
Thu Apr 19 05:01:09 UTC 2018 - toddrme2178@gmail.com
- Update to 1.0.2
* Fixes issue that made it impossible to set the value of a float cell to zero #174
* Updated tests to be python 2 compatible by removing usages of nonlocal. This change will help us to simplify the coda build process.
-------------------------------------------------------------------
Thu Feb 15 15:58:27 UTC 2018 - toddrme2178@gmail.com
- Update to 1.0.1b1
* Fix handling of grid_options in set_defaults
-------------------------------------------------------------------
Wed May 6 08:13:45 UTC 2015 - toddrme2178@gmail.com
- Initial version