我的表有数百条记录,我需要该表自动向下滚动到第一条带标签的记录。
这是我到目前为止所拥有的:
if model in prospects:
found_rows.append(iid_count) # memorize iid of record in table
--------------------------------------------------
for foundrec in found_rows:
all_table.item(foundrec, tags="Find_Green")
#mark matching records green, where "found_rows" is a list of iids that match searching criteria
我希望表格自动向下滚动到第一行突出显示的行,不确定是否可行。