Custom Query (18300 matches)
Results (22 - 24 of 18300)
Ticket | Resolution | Summary | Owner | Reporter |
---|---|---|---|---|
#11660 | wontfix | OnmouseEnter/Leave ComboBox bug | ||
Description |
Hi guys ! I found a real nasty bug using onmouseEnter/Leave (and onmouseover) inside a widget. Here's how to reproduce :
Now when the user mouse pointer will onmouseOver the comboBox/FilteringSelect, the onMouseLeave event will fire on. That means : while your pointer *is still inside the div*, where the events were defined orignally, the onmouseLeave will fire. This should not happen when the mouse pointer is still inside the original div. Here's a widget that will show you the problem : <div class="F1" dojoAttachEvent="onmouseenter:ShowOptions, onmouseleave:HideOptions">
</div> ======================================================== dojo.provide("de.Ts"); dojo.require("dijit._Widget"); dojo.require("dijit._Templated"); dojo.require("dojox.data.JsonRestStore?"); dojo.require("dojox.data.QueryReadStore?"); dojo.require("dijit.form.FilteringSelect?"); dojo.require("dijit.form.ComboBox?"); dojo.require("dijit.InlineEditBox?"); dojo.require("dijit.form.Textarea"); dojo.require("dojo.date"); dojo.require("dijit.form.Button"); dojo.require("dojo.fx"); dojo.declare("de.Ts",
); |
|||
#11678 | patchwelcome | Use the TimeTextBox widget for time mesurement | ||
Description |
One of the possible use of the TimeTextBox could also be for time mesurement (aka timesheets). The widget is nearly usable in it's current state for this except one details. It allows only a 24h view. Time mesurment would need an high or infinite time period. I think this could be done really simply by adding a "TimeMesurement mode" in wich the widget would not scroll from 0 to 24 hours but from 0 to x hours. This would allow another great usage for this widget ! |
|||
#11824 | wontfix | dojo.charting not working with FF 3.5.3 for Ubuntu | ||
Description |
I've had a LOT of problems using FF under linux with dojo.charting. Usually the bugs are that nothing is shown inside a graphic. I'm parsing this piece of code : dojo.require("dojox.charting.Chart2D"); makeCharts = function(){ var chart1 = new dojox.charting.Chart2D("simplechart"); chart1.addPlot("default", {type: "Lines"}); chart1.addAxis("x"); chart1.addAxis("y", {vertical: true}); chart1.addSeries("Series 1", [1, 2, 2, 3, 4, 5, 5, 7]); chart1.render(); }; dojo.addOnLoad(makeCharts); and nothing appears inside the graph (I see the axes though). I've tested the same thing under chrome and it works. It seems also that using an array makes the navigator bug (I never get to see the array of elements inside a graph, only the first elements). |