加载后检索树的状态
我更新我的树并使用以下方法将其与我的 JSON 同步:
mystore.sync(); mystore.load();
如果我不使用第二种方法,树不会显示修改!使用load方法,树的折叠和更新是有效的。但树还没扩展就倒塌了。如何恢复加载前的状态?
多谢 :)
I updating my tree and to synchronize this with my JSON i using methods :
mystore.sync();
mystore.load();
If i don't using the second method, the tree don't show modifications ! With load method, tree collapse and the updates are effectives. But tree collapse even though before it was expand . How to restore state before load ??
Thanks a lot :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以将扩展项目列表发送到服务器,并根据扩展列表生成带有“expanded: ture”的 json。
You can send list of expanded items to server, and generate your json with 'expanded: ture' according to expanded list.