本文介绍了dojo.byId之后dojox图表更新/销毁不起作用的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我使用以下代码创建了一个dojo图表:
I created a dojo chart using;
var pieChart = new dojox.charting.Chart2D("pieChart");
之后,我想更新/销毁该图表。所以我愿意;
Afterwards I want to update/destroy this chart. SO I do;
var pieChart = dojo.byId("pieChart");
pieChart.destroy();
这似乎不起作用。我在这里做错了吗?
This seems to be not functional. Am I doing something wrong here?
最好
推荐答案
'正在使用dojox,因此dojo.byId不会返回使用dijit.byId尝试的javascript对象,我认为它将按照以下建议进行工作:
As you're using dojox so dojo.byId will not return javascript object try using dijit.byId I think it'll work as suggested below:
var pieChart = dijit.byId( 饼形图);
pieChart.destroy();
var pieChart = dijit.byId("pieChart");pieChart.destroy();
经过一番努力后,我遇到了dojox.form.BusyButton所遇到的相同问题。
the same problem I was facing with dojox.form.BusyButton after a great effort I found this...
这篇关于dojo.byId之后dojox图表更新/销毁不起作用的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!