HighDots Forums  

Checkbox in Tabelle

Javascript (German) Programmiersprache JavaScript. (de.comp.lang.javascript)


Discuss Checkbox in Tabelle in the Javascript (German) forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Crispie
 
Posts: n/a

Default Checkbox in Tabelle - 10-20-2006 , 04:45 AM






In meiner Tabelle ist in jeder Zelle eine Checkbox. Um die Auswahl zu
vereinfachen, habe ich auf der Zelle ein onclick-Ereignis, das mir die
Checkbox an- oder abwählt und noch andere Dinge tut. Das Problem ist
nun, dass beim Klick auf die Checkbox selber diese an- oder abgewählt
wird und danach wird die onclick-Funktion der Zelle aufgerufen, welche
die Checkbox wieder in den ursprünglichen Zustand bringt. wie kann ich
das verhindern?


Reply With Quote
  #2  
Old   
Martin Honnen
 
Posts: n/a

Default Re: Checkbox in Tabelle - 10-20-2006 , 08:22 AM






Crispie wrote:
Quote:
In meiner Tabelle ist in jeder Zelle eine Checkbox. Um die Auswahl zu
vereinfachen, habe ich auf der Zelle ein onclick-Ereignis, das mir die
Checkbox an- oder abwählt und noch andere Dinge tut. Das Problem ist
nun, dass beim Klick auf die Checkbox selber diese an- oder abgewählt
wird und danach wird die onclick-Funktion der Zelle aufgerufen, welche
die Checkbox wieder in den ursprünglichen Zustand bringt. wie kann ich
das verhindern?

Fuer jede Checkbox:
<input type="checkbox"
onclick="if (typeof event.stopPropagation != 'undefined') {
event.stopPropagation();
}
else if (typeof event.cancelBubble != 'undefined') {
event.cancelBubble = true;
}
return true;"

bzw. eventuell eine Funktion definieren

function stopEventPropagation (evt) {
if (typeof evt.stopPropagation != 'undefined') {
evt.stopPropagation();
}
else if (typeof evt.cancelBubble != 'undefined') {
evt.cancelBubble = true;
}
}

und dann

<input type="checkbox"
onclick="stopEventPropagation(event); return true;"


--

Martin Honnen
http://JavaScript.FAQTs.com/


Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.