JQuery + ExtJS:如何使用这两个库处理一个 DIV 组件
我正在做一个针对在线图形绘制的简单项目。我使用 Flot/JQuery 库来绘制图表,使用 ExtJs 进行布局。
我尝试做的事情如下: 1.定义一个DIV 2.在该DIV中使用Flot函数绘制图形 3.将这个DIV放入ExtJs代码定义的面板中
我的问题是:
如何控制先调用Flot函数在DIV中绘制,然后通过ExtJS将带有图形的DIV放入面板中的顺序?
现在页面上无法显示DIV和图表。
任何
I am doing a simple project targeting at online graph drawing. I am using Flot/JQuery library to draw graphs, using ExtJs for layout.
What I try to do is as follows:
1. define a DIV
2. using Flot functions to draw graphs in this DIV
3. put this DIV in a panel defined by ExtJs code
my question is:
how to control the sequence that first call Flot functions to draw in DIV, and then to put this DIV with graphs into the panel by ExtJS?
Now, the DIV and graphs cant be displayed on the page.
any
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
1
和3
可以通过使用Ext.Panel#html
2
是将图形渲染代码添加到afterlayout
事件。1
and3
can be accomplished by usingExt.Panel#html
2
is a matter of adding the graph rendering code to theafterlayout
event.