MikeStratoti

Results 2 comments of MikeStratoti

I have a similar result implementing PageUp/PageDown functionality: ``` self.tableTop.bind("", self.handle_page_keys, '+') # Bind to PageUp self.tableTop.bind("", self.handle_page_keys, '+') # Bind to PageDown ``` def handle_page_keys (self, event): """Handle PageUp/PageDown...

Thanks for fixing the PageUp/PageDown issue in https://github.com/dmnfarrell/pandastable/issues/245 Any suggestions for programmatically create, populate, and apply a "filter table" row? Thanks for