Name: pandastable
Version: 0.14.0
lse:
if len(rows) < 1 or self.allrows == True:
rows = list(range(self.rows))
cols = [self.currentcol] # <-- PROBLEM: Only uses current column, not multiplecollist!
When you Ctrl+click columns to multi-select them, self.multiplecollist gets populated. But if no rows are explicitly selected, the code ignores multiplecollist and defaults to self.currentcol (single column).
This was catched with help from Claude Haiku 4.5.
(workaroud: select also rows, but it complicates life)
Name: pandastable
Version: 0.14.0
lse:
if len(rows) < 1 or self.allrows == True:
rows = list(range(self.rows))
cols = [self.currentcol] # <-- PROBLEM: Only uses current column, not multiplecollist!
When you Ctrl+click columns to multi-select them, self.multiplecollist gets populated. But if no rows are explicitly selected, the code ignores multiplecollist and defaults to self.currentcol (single column).
This was catched with help from Claude Haiku 4.5.
(workaroud: select also rows, but it complicates life)