除非用户将鼠标悬停在 Flash 调试器版本上,否则不会加载 swf
我已经在cfm中嵌入了flex的日历(日期字段和日期选择器)控件。当我的应用程序页面加载时,只有当我们将鼠标悬停在占位符上时,日历 (swf) 才会加载。但是,该问题仅出现在具有调试器闪存版本并且在发布版本中工作正常的计算机中。
任何帮助将不胜感激
I have embedded the calender (datefield and datechooser) control of flex in cfm. When my application page loads the calender (swf) gets loads only if we mouseover the placeholder. However the issue is only in machines which have the debugger flash version and works fine in release version.
Any help would be much appreciated
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
非常感谢 weltraumpirat 的回复。
问题已经解决了。这是因为我将占位符的尺寸设置为%值。
我已经以百分比形式给出了容器(跨度)的高度和宽度,现在我已经对其进行了硬编码。然后在日历弹出窗口的事件处理程序中,我将日历尺寸设置为 100%,这将始终完美地显示它。
谢谢大家。
Thanks a lot weltraumpirat for the response.
The problem has been solved. It was because I had set the dimensions of the placeholder in % value.
I had given the height and width my container (span) in percentage which I have now hard coded .And then in the event handler of the the calender pop-up i set the calendar dimensions to 100% which would always show it perfectly.
Thanks all.