问题描述
在页面加载时,我正在渲染import tkinter as tk
def autocomplete(widget,first,last):
# insert the two characters at the insertion point
widget.insert("insert",first + last)
# move insertion cursor back one character
widget.mark_set("insert","insert-1c")
# prevent the text widget from inserting the character that
# triggered the event since we've already inserted it.
return "break"
root = tk.Tk()
text = tk.Text(root,wrap="word")
text.pack(fill="both",expand=True)
text.bind("(",lambda event: autocomplete(event.widget,"(",")"))
text.bind("[","[","]"))
root.mainloop()
,它工作正常。稍后,我想更改列标题名称,删除特定的列并根据某些条件启用可编辑的列。因此,我可以根据自己的意愿修改angular-slickgrid
和columnDeFinitions
的值,但不会重新加载整个网格。
如何动态地使用更新的列标题重新加载整个网格?
解决方法
暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!
如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。
小编邮箱:dio#foxmail.com (将#修改为@)