MCPcopy Create free account
hub / github.com/Akascape/CTkTable / update_values

Method update_values

CTkTable/ctktable.py:347–354  ·  view source on GitHub ↗

update all values at once

(self, values, **kwargs)

Source from the content-addressed store, hash-verified

345 self.update_data()
346
347 def update_values(self, values, **kwargs):
348 """ update all values at once """
349 for i in self.frame.values():
350 i.destroy()
351 self.frame = {}
352 self.values = values
353 self.draw_table(**kwargs)
354 self.update_data()
355
356 def add_row(self, values, index=None, **kwargs):
357 """ add a new row """

Callers 1

configureMethod · 0.95

Calls 2

draw_tableMethod · 0.95
update_dataMethod · 0.95

Tested by

no test coverage detected