我正在尝试在 ext 窗口中显示 cytoscape 图。一切运行良好,直到我添加 ext-all.css,图表不再显示。
这是应该显示图表的面板(#cy div)
var formPanel2 = new Ext.form.FormPanel({
id : 'graph_model',
bodyStyle : 'padding:10px',
width :400,
height : 400,
overflow:'auto',
items : [ {
html: "<div id='cy' style=' height: 100%; width: 100%; position: absolute; left: 0; top: 0 '></div>",
xtype: "panel"} ]
});
问题出在哪里 ?