no, it's defintly wrong
to let my colleague test on his computer (without debugger etc.), I made
an alert
in the function where the selectenindex is checked
if(group0.selectedIndex==0){
//normal code to do
alert(this);
}
else{
//normal code to do
alert(that);
}
the really really weird thing is that the error appears to 1-5% on my
computer and to maybe to 80% on my colleagues computer.
Am 18.10.2015 um 14:33 schrieb Evyatar Ben Halevi-Arbib:
Could it be just some debugger mistake where it shows the wrong value
(which isn't real)?
If you print the value to a log file / console does it show the same thing?
In addition, you said you make the selection using two properties.
Have you tried using only one of them and see if the issue still occur?
On Sun, Oct 18, 2015 at 3:12 PM, Frank Dahmen <[email protected]> wrote:
even worse, after adding creationcomplete, on the first run (on my
computer) the error appears, on all runs (maybe 10-15)after that, it's
working
(I close the browser after a run)
callout and radiogroups are in the <fx:Declaration> tag of the component,
maybe this is wrong?
Am 18.10.2015 um 12:10 schrieb Frank Dahmen:
thanks, i will try that,
.....but why does it not happen on my computer....weird..
Am 18.10.2015 um 12:03 schrieb Evyatar Ben Halevi-Arbib:
If you think it is an initialization problem, you can try setting the
initial values on the callout's creationComplete event.
Good luck,
Evyatar
On Sun, Oct 18, 2015 at 12:57 PM, Frank Dahmen <[email protected]>
wrote:
forgot to say that this happens only when nothing is selected by the user
if he switches between the radiobuttons everything works
there must be an issue with the initialization.....(on the other
computers!)
Am 18.10.2015 um 11:27 schrieb Frank Dahmen:
In a callout i have several radiobuttongroups
and a submit button
when pressed a function is called which checks the selctedindex of all
groups
in the first group, the second radiobutton is selected
(selected="true")
and also the property of the first group is set (selectedindex="1")
BUT:
on 2 other computers than mine, the selectedindex of the first group
is 0
instead of 1
on my computer it works?????????
also, the error appears not always, sometimes it also works correct on
the other 2 computers
any help?