details here: http://forums.delphi-php.net/vcl4php/3282-problem-controls-duplicating.html
Bug report:
I don't know where it is in the php scripts but there is a generated error when a spinner is put into a panel and the panel is on a pagecontrol
[CODE]
.....
pagePageControl1_1.add(container);
container.addEventListener("appear", function(e) { var d = qx.ui.core.ClientDocument.getInstance();
var inline_div = new qx.ui.basic.Inline("udTotals");
inline_div.setHeight("auto");
.....
[/CODE]
The error is the appear event is used to add the spinner. Well every time that fires it adds another spinner. :eek:
To test just put a page control with a few tabs on it along with a spinner on a panel and a spinner separately on one of the tabs.
Click back and forth between the 2 tabs and watch the spinners on the panel add one every time.