Tabelcel onclick- cel krijgt andere kleur en checkbox aangepast (Opgelost)
Hebus - 22/02/2011 10:11
Nieuw lid
Ik ben in leek wat javscript betreft ,
en ik ben zoek naar een script dat bij een onclick van een tabel cel de background-color aangepast wordt en de checkbox in die cel aangevinkt wordt.
Ik heb al veel scripts gevonden die werken op row niveau maar ik heb het nodig in cel niveau.
Of beter nog, als dat kan de, tabel cel als checkbox laten werken zodat de checkbox niet te zien is.
12 antwoorden
Gesponsorde links
Beirensg - 22/02/2011 10:30
HTML beginner
JQuery is hetgeen wat je zoekt:
bvb:
<table>
<tr id="row1">
<td class="clickable" style="background-color:red">click here</td>
</tr>
</table>
<td class = "clickable" style = "background-color:red" > click here
</ td >
en via jquery
$('td.clickable').click(function(){
if ($(this).hasClass('checked')){ //cel is aangeklikt, dus uitklikken
$(this).css('background-color','red');
}
else{ //cel is niet aangeklikt, dus aanklikken
$(this).css('background-color','green');
}
$(this).toggleClass('checked'); //zet de juiste klasse voor de cell
});
$( 'td.clickable' ) .click ( function ( ) {
if ( $( this ) .hasClass ( 'checked' ) ) { //cel is aangeklikt, dus uitklikken
$( this ) .css ( 'background-color' , 'red' ) ;
}
else { //cel is niet aangeklikt, dus aanklikken
$( this ) .css ( 'background-color' , 'green' ) ;
}
$( this ) .toggleClass ( 'checked' ) ; //zet de juiste klasse voor de cell
} ) ;
Dit zou moeten werken (natuurlijk moet je jquery inladen op de pagina). Nu heb je geen checkbox, maar een cel die verandert van kleur indien aangeklikt. De checkbox wordt vervangen door het al of niet aanwezig zijn van de klasse checked.
Bedankt door: Hebus
Hebus - 22/02/2011 10:39
Nieuw lid
Bedankt alvast, maar hoe zie ik nu de stand van die cel , ik wil deze nl. nadien uitlezen na een submit om de eventueel aangeklikte cellen in een db te steken.
De tabel zit dus in een form.
Ben ondertuss. aan het kijken of ik het niet kan oplossen met <label>
Beirensg - 22/02/2011 10:52 (laatste wijziging 22/02/2011 10:52)
HTML beginner
Dan kan je daar een hidden en disabled checkbox insteken
<table>
<tr id="row1">
<td class="clickable" style="background-color:red">
<input id="test" type=checkbox name="test" value="1" disabled style="display:none" />
click here</td>
</tr>
</table>
<td class = "clickable" style = "background-color:red" > <input id = "test" type = checkbox name = "test" value = "1" disabled style = "display:none" / >
en de jquery
$('td.clickable').click(function(){
if ($(this).hasClass('checked')){ //cel is aangeklikt, dus uitklikken
$(this).css('background-color','red');
$(this).children("input:checkbox").attr('checked', false);
}
else{ //cel is niet aangeklikt, dus aanklikken
$(this).css('background-color','green');
$(this).children("input:checkbox").attr('checked', true);
}
$(this).toggleClass('checked'); //zet de juiste klasse voor de cell
});
$( 'td.clickable' ) .click ( function ( ) {
if ( $( this ) .hasClass ( 'checked' ) ) { //cel is aangeklikt, dus uitklikken
$( this ) .css ( 'background-color' , 'red' ) ;
$( this ) .children ( "input:checkbox" ) .attr ( 'checked' , false ) ;
}
else { //cel is niet aangeklikt, dus aanklikken
$( this ) .css ( 'background-color' , 'green' ) ;
$( this ) .children ( "input:checkbox" ) .attr ( 'checked' , true ) ;
}
$( this ) .toggleClass ( 'checked' ) ; //zet de juiste klasse voor de cell
} ) ;
De checkbox is niet echt nodig, indien je voor de submit nog een kleine verwerking van de gegevens doet (bvb controle invoervelden). Tijdens deze controle zou je in principe ook de waarde van de cel kunnen meesturen indien nodig.
Bedankt door: Hebus
Hebus - 22/02/2011 11:39 (laatste wijziging 22/02/2011 11:40)
Nieuw lid
Ik heb heb je script proberen integreren, maar blijkbaar doe ik nog iets fout
(zal wel weer iets heel dom zijn )
echo'<form action="index.php" method="post" target="_self" name="MyForm">';
echo '<table border="0" cellspacing="2" cellpadding="2">
<tr>
<td colspan="'.$col.'">Dag indeling</td>
</tr>';
while($current_row <=$max_rows)/*controle op welke rij we zitten in tabel*/
{
echo'<tr id="row'.$current_row.'">';
while ($current_col<=$col)/*controle in welke kollom we zitten*/
{
echo'<td class="clickable" style="background-color:green">';
/*Bepalen van start en eindtijd in huidige blok*/
$block_start=( ((($current_col-'1')*$max_rows)*$block_duration)+((($current_row-1)*$block_duration)+$start));
$block_end=$block_start + $block_duration;
/*bepalen van array pointer nr*/
$i=( (($current_col-'1')*$max_rows)+($current_row-1) );
if ($block_end <= $end)/*enkel geg. tonen als blocken niet groter is dan opgegeven*/
{
echo
'<input name="start['.$i.']" type="hidden" value="'.sec2hms($block_start).'" />
<input name="end['.$i.']" type="hidden" value="'.sec2hms($block_end).'" />
'.sec2hms($block_start).'-'.sec2hms($block_end).'
<input name="beschikbaar['.$i.']" type="checkbox" id="'.$i.'" value="1" checked/>'
;
}
echo'</td>';
$current_col ++; /*overschakelen naar volgende kolom dus col. positie +1*/
}
$current_col ='1'; /*terug naar eerste kolom */
echo'</tr>';/*huidige rij afsluiten*/
$current_row ++;/* naar volgende rijd gan dus rij pos. +1*/
}
echo '</table>';
echo '</form>';
echo '<form action="index.php" method="post" target="_self" name="MyForm">' ;
echo '<table border="0" cellspacing="2" cellpadding="2"> <tr>
<td colspan="' . $col . '">Dag indeling</td>
</tr>' ;
while ( $current_row <= $max_rows ) /*controle op welke rij we zitten in tabel*/
{
echo '<tr id="row' . $current_row . '">' ;
while ( $current_col <= $col ) /*controle in welke kollom we zitten*/
{
echo '<td class="clickable" style="background-color:green">' ; /*Bepalen van start en eindtijd in huidige blok*/
$block_start = ( ( ( ( $current_col - '1' ) * $max_rows ) * $block_duration ) + ( ( ( $current_row - 1 ) * $block_duration ) + $start ) ) ;
$block_end = $block_start + $block_duration ;
/*bepalen van array pointer nr*/
$i = ( ( ( $current_col - '1' ) * $max_rows ) + ( $current_row - 1 ) ) ;
if ( $block_end <= $end ) /*enkel geg. tonen als blocken niet groter is dan opgegeven*/
{
'<input name="start[' . $i . ']" type="hidden" value="' . sec2hms( $block_start ) . '" />
<input name="end[' . $i . ']" type="hidden" value="' . sec2hms( $block_end ) . '" />
' . sec2hms( $block_start ) . '-' . sec2hms( $block_end ) . '
<input name="beschikbaar[' . $i . ']" type="checkbox" id="' . $i . '" value="1" checked/>'
;
}
$current_col ++; /*overschakelen naar volgende kolom dus col. positie +1*/
}
$current_col = '1' ; /*terug naar eerste kolom */
echo '</tr>' ; /*huidige rij afsluiten*/ $current_row ++; /* naar volgende rijd gan dus rij pos. +1*/
}
Beirensg - 22/02/2011 11:47
HTML beginner
welke foutmelding geeft hij. Is er een fout in php? Of loopt iets anders mis?
Zijn bvb alle variabelen ($max_rows, $current_row,...) goed geinitialiseerd?
Hebus - 22/02/2011 11:57
Nieuw lid
Geen foutmelding , mijn script werkt nog steeds , enkel reageert hij niet op een klik op een cel.
Heb het ondertuss. nog eens nagekeken, en nog niks gezien.
op lijn 10 start de row
op lijn 14 de <td class="clickable" style="background-color:green">
(de cellen staan standaard geselecteerd)
en op 28 staat de checkbox
(moet id en name daar hetzelfde zijn?)
Beirensg - 22/02/2011 12:04 (laatste wijziging 22/02/2011 12:05)
HTML beginner
Maar heb je de javascript toegevoegd. Je zal onderaan de pagina iets in de volgende trend moeten zetten:
<script src="jquery.js"></script>
<script language='javascript'>
$('td.clickable').click(function(){
if ($(this).hasClass('checked')){ //cel is aangeklikt, dus uitklikken
$(this).css('background-color','red');
$(this).children("input:checkbox").attr('checked', false);
}
else{ //cel is niet aangeklikt, dus aanklikken
$(this).css('background-color','green');
$(this).children("input:checkbox").attr('checked', true);
}
$(this).toggleClass('checked'); //zet de juiste klasse voor de cell
});
</script>
< script src= "jquery.js" ></ script>
< script language= 'javascript' >
$( 'td.clickable' ) .click ( function ( ) {
if ( $( this ) .hasClass ( 'checked' ) ) { //cel is aangeklikt, dus uitklikken
$( this ) .css ( 'background-color' , 'red' ) ;
$( this ) .children ( "input:checkbox" ) .attr ( 'checked' , false ) ;
}
else { //cel is niet aangeklikt, dus aanklikken
$( this ) .css ( 'background-color' , 'green' ) ;
$( this ) .children ( "input:checkbox" ) .attr ( 'checked' , true ) ;
}
$( this ) .toggleClass ( 'checked' ) ; //zet de juiste klasse voor de cell
} ) ;
</ script>
waarbij je jquery.js hebt gedownload en in je root van je site plaatsen.
Bedankt door: Hebus
Hebus - 22/02/2011 12:11
Nieuw lid
Ja hoor.
Hier is de complete pagina
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>Tijdblokken berekenen</title>
<?php
include 'functions.php';
/*Start instelling van variabele*/
$block_end='0'; /*Einde van tijdsblok staat op 0 als start*/
$current_col='1'; /*start nr van eerste kollom.*/
$current_row='1'; /* Start nr van eerste rij*/
$max_rows='20';/*Max aantal tijdsblokken onder elkaar.*/
?>
<link href="../style.css" rel="stylesheet" type="text/css" />
<script src="jquery15.js"></script>
<script language='javascript'>
$('td.clickable').click(function(){
if ($(this).hasClass('checked')){ //cel is aangeklikt, dus uitklikken
$(this).css('background-color','red');
$(this).children("input:checkbox").attr('checked', false);
}
else{ //cel is niet aangeklikt, dus aanklikken
$(this).css('background-color','green');
$(this).children("input:checkbox").attr('checked', true);
}
$(this).toggleClass('checked'); //zet de juiste klasse voor de cell
});
</script>
</head>
<body>
<form action="index.php" method="post" name="tijdsblokken" target="_self" >
<table width="240" border="0" cellpadding="2" cellspacing="0" class="admin_form">
<tr>
<td colspan="2" class="bold">Dag indeling</td>
</tr>
<tr>
<td width="150">Start tijd: </td>
<td width="82"><input name="start_time" type="text" value="08:00:00" size="10" maxlength="8" /></td>
</tr>
<tr>
<td>Eind tijd: </td>
<td><input name="end_time" type="text" value="17:00:00" size="10" maxlength="8" /></td>
</tr>
<tr>
<td>Anntal min. per blok </td>
<td><input name="lenght" type="text" value="15" size="10" maxlength="3" /></td>
</tr>
<tr>
<td> </td>
<td>
<div align="center">
<input name="calculate" type="submit" value="submit" />
</div></td>
</tr>
</table>
</form>
<?php
//lijst van tijdsblokken tonen.
if (isset($_POST['calculate']) )
{
$start = time2sec ($_POST['start_time']);
$end = time2sec($_POST['end_time']);
$block_duration = $_POST['lenght'] * 60;
/*kijken of er met meeder kolommen moet worden gewerkt*/
$time_parts=($end-$start)/$block_duration;
if ($time_parts > $max_rows)
$col= ceil($time_parts / $max_rows);
else $col='1';
/*weergeven van dag indeling*/
echo'<form action="index.php" method="post" target="_self" name="MyForm">';
echo '<table border="0" cellspacing="2" cellpadding="2">
<tr>
<td colspan="'.$col.'">Dag indeling</td>
</tr>';
while($current_row <=$max_rows)/*controle op welke rij we zitten in tabel*/
{
echo'<tr id="row'.$current_row.'">';
while ($current_col<=$col)/*controle in welke kollom we zitten*/
{
echo'<td class="clickable" style="background-color:green">';
/*Bepalen van start en eindtijd in huidige blok*/
$block_start=( ((($current_col-'1')*$max_rows)*$block_duration)+((($current_row-'1')*$block_duration)+$start));
$block_end=$block_start + $block_duration;
/*bepalen van array pointer nr*/
$i=( (($current_col-'1')*$max_rows)+($current_row-'1') );
if ($block_end <= $end)/*enkel geg. tonen als blocken niet groter is dan opgegeven*/
{
echo
'<input name="start['.$i.']" type="hidden" value="'.sec2hms($block_start).'" />
<input name="end['.$i.']" type="hidden" value="'.sec2hms($block_end).'" />
'.sec2hms($block_start).'-'.sec2hms($block_end).'
<input name="beschikbaar['.$i.']" type="checkbox" id="'.$i.'" value="1" checked/>'
;
}
echo'</td>';
$current_col ++; /*overschakelen naar volgende kolom dus col. positie +1*/
}
$current_col ='1'; /*terug naar eerste kolom */
echo'</tr>';/*huidige rij afsluiten*/
$current_row ++;/* naar volgende rijd gan dus rij pos. +1*/
}
echo '</table>';
echo '</form>';
}
?>
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<title>Tijdblokken berekenen</title>
<?php
include 'functions.php' ;
/*Start instelling van variabele*/
$block_end = '0' ; /*Einde van tijdsblok staat op 0 als start*/
$current_col = '1' ; /*start nr van eerste kollom.*/
$current_row = '1' ; /* Start nr van eerste rij*/
$max_rows = '20' ; /*Max aantal tijdsblokken onder elkaar.*/
?>
<link href="../style.css" rel="stylesheet" type="text/css" />
<script src="jquery15.js"></script>
<script language='javascript'>
$('td.clickable').click(function(){
if ($(this).hasClass('checked')){ //cel is aangeklikt, dus uitklikken
$(this).css('background-color','red');
$(this).children("input:checkbox").attr('checked', false);
}
else{ //cel is niet aangeklikt, dus aanklikken
$(this).css('background-color','green');
$(this).children("input:checkbox").attr('checked', true);
}
$(this).toggleClass('checked'); //zet de juiste klasse voor de cell
});
</script>
</head>
<body>
<form action="index.php" method="post" name="tijdsblokken" target="_self" >
<table width="240" border="0" cellpadding="2" cellspacing="0" class="admin_form">
<tr>
<td colspan="2" class="bold">Dag indeling</td>
</tr>
<tr>
<td width="150">Start tijd: </td>
<td width="82"><input name="start_time" type="text" value="08:00:00" size="10" maxlength="8" /></td>
</tr>
<tr>
<td>Eind tijd: </td>
<td><input name="end_time" type="text" value="17:00:00" size="10" maxlength="8" /></td>
</tr>
<tr>
<td>Anntal min. per blok </td>
<td><input name="lenght" type="text" value="15" size="10" maxlength="3" /></td>
</tr>
<tr>
<td> </td>
<td>
<div align="center">
<input name="calculate" type="submit" value="submit" />
</div></td>
</tr>
</table>
</form>
<?php
//lijst van tijdsblokken tonen.
if ( isset ( $_POST [ 'calculate' ] ) ) {
$start = time2sec ( $_POST [ 'start_time' ] ) ;
$end = time2sec( $_POST [ 'end_time' ] ) ;
$block_duration = $_POST [ 'lenght' ] * 60 ;
/*kijken of er met meeder kolommen moet worden gewerkt*/
$time_parts = ( $end - $start ) / $block_duration ;
if ( $time_parts > $max_rows )
$col = ceil ( $time_parts / $max_rows ) ; else $col = '1' ;
/*weergeven van dag indeling*/
echo '<form action="index.php" method="post" target="_self" name="MyForm">' ;
echo '<table border="0" cellspacing="2" cellpadding="2"> <tr>
<td colspan="' . $col . '">Dag indeling</td>
</tr>' ;
while ( $current_row <= $max_rows ) /*controle op welke rij we zitten in tabel*/
{
echo '<tr id="row' . $current_row . '">' ;
while ( $current_col <= $col ) /*controle in welke kollom we zitten*/
{
echo '<td class="clickable" style="background-color:green">' ; /*Bepalen van start en eindtijd in huidige blok*/
$block_start = ( ( ( ( $current_col - '1' ) * $max_rows ) * $block_duration ) + ( ( ( $current_row - '1' ) * $block_duration ) + $start ) ) ;
$block_end = $block_start + $block_duration ;
/*bepalen van array pointer nr*/
$i = ( ( ( $current_col - '1' ) * $max_rows ) + ( $current_row - '1' ) ) ;
if ( $block_end <= $end ) /*enkel geg. tonen als blocken niet groter is dan opgegeven*/
{
'<input name="start[' . $i . ']" type="hidden" value="' . sec2hms( $block_start ) . '" />
<input name="end[' . $i . ']" type="hidden" value="' . sec2hms( $block_end ) . '" />
' . sec2hms( $block_start ) . '-' . sec2hms( $block_end ) . '
<input name="beschikbaar[' . $i . ']" type="checkbox" id="' . $i . '" value="1" checked/>'
;
}
$current_col ++; /*overschakelen naar volgende kolom dus col. positie +1*/
}
$current_col = '1' ; /*terug naar eerste kolom */
echo '</tr>' ; /*huidige rij afsluiten*/ $current_row ++; /* naar volgende rijd gan dus rij pos. +1*/
}
}
?>
</body>
</html>
Beirensg - 22/02/2011 14:07
HTML beginner
probeer eens met volgende functie:
$('td.clickable').live('click',function(){
if ($(this).hasClass('checked')){ //cel is aangeklikt, dus uitklikken
$(this).css('background-color','red');
$(this).children("input:checkbox").attr('checked', false);
}
else{ //cel is niet aangeklikt, dus aanklikken
$(this).css('background-color','green');
$(this).children("input:checkbox").attr('checked', true);
}
$(this).toggleClass('checked'); //zet de juiste klasse voor de cell
});
$( 'td.clickable' ) .live ( 'click' , function ( ) {
if ( $( this ) .hasClass ( 'checked' ) ) { //cel is aangeklikt, dus uitklikken
$( this ) .css ( 'background-color' , 'red' ) ;
$( this ) .children ( "input:checkbox" ) .attr ( 'checked' , false ) ;
}
else { //cel is niet aangeklikt, dus aanklikken
$( this ) .css ( 'background-color' , 'green' ) ;
$( this ) .children ( "input:checkbox" ) .attr ( 'checked' , true ) ;
}
$( this ) .toggleClass ( 'checked' ) ; //zet de juiste klasse voor de cell
} ) ;
Ik heb je code eens getest mbv jsfiddle (geen php mogelijk), en daar werkt de javascript: http://jsfiddle.net/beirensg/gA38E/
Bedankt door: Hebus
Hebus - 22/02/2011 15:12 (laatste wijziging 22/02/2011 15:27)
Nieuw lid
Het blijkt te werken , maar ik moet de eerste keer 2x klikken op de cel voor er iets wordt aangepast nadien moet je maar één keer klikken op diezelfde cel om het te laten switchen.
http://jsfiddle.net/beirensg/gA38E /
het werkt dus bijna
bedankt al voor de fantastische hulp tot hier toe
oplossing:
<form action="index.php" method="post" target="_self" name="MyForm">
<table border="0" cellspacing="2" cellpadding="2">
<tr>
<td colspan="'.$col.'">Dag indeling</td>
</tr>
<tr id="row'.$current_row.'">
<td class="clickable checked" style="background-color:green">
<input name="start['.$i.']" type="hidden" value="sec2hms($block_start)" />
<input name="end['.$i.']" type="hidden" value="sec2hms($block_end)" />
<input name="beschikbaar['.$i.']" type="checkbox" id="'.$i.'" value="1" checked/>
</td> </tr></table>
</form>
< form action= "index.php" method= "post" target= "_self" name= "MyForm" >
< table border= "0" cellspacing= "2" cellpadding= "2" >
< tr>
< td colspan= "'.$col .'" > Dag indeling</ td>
</ tr>
< tr id= "row'.$current_row .'" >
< td class = "clickable checked" style= "background-color:green" >
< input name= "start['.$i .']" type= "hidden" value= "sec2hms($block_start )" />
< input name= "end['.$i .']" type= "hidden" value= "sec2hms($block_end )" />
< input name= "beschikbaar['.$i .']" type= "checkbox" id= "'.$i .'" value= "1" checked/>
</ td> </ tr></ table>
</ form>
$('td.clickable').click(function(){
if ($(this).hasClass('checked')){ //cel is aangeklikt, dus uitklikken
$(this).css('background-color','red');
$(this).children("input:checkbox").attr('checked', false);
}
else{ //cel is niet aangeklikt, dus aanklikken
$(this).css('background-color','green');
$(this).children("input:checkbox").attr('checked', true);
}
$(this).toggleClass('checked'); //zet de juiste klasse voor de cell
});
$( 'td.clickable' ) .click ( function ( ) {
if ( $( this ) .hasClass ( 'checked' ) ) { //cel is aangeklikt, dus uitklikken
$( this ) .css ( 'background-color' , 'red' ) ;
$( this ) .children ( "input:checkbox" ) .attr ( 'checked' , false ) ;
}
else { //cel is niet aangeklikt, dus aanklikken
$( this ) .css ( 'background-color' , 'green' ) ;
$( this ) .children ( "input:checkbox" ) .attr ( 'checked' , true ) ;
}
$( this ) .toggleClass ( 'checked' ) ; //zet de juiste klasse voor de cell
} ) ;
Hebus - 22/02/2011 15:25 (laatste wijziging 22/02/2011 15:28)
Nieuw lid
Yipie het werkt ik die td class al eens proberen aanpassen maar had toen clickable weg gedaan.
Hartelijk bedankt, ik kan nu verder gaan prutsen.
$('td.clickable').click(function(){
if ($(this).hasClass('checked')){ //cel is aangeklikt, dus uitklikken
$(this).css('background-color','red');
$(this).children("input:checkbox").attr('checked', false);
}
else{ //cel is niet aangeklikt, dus aanklikken
$(this).css('background-color','green');
$(this).children("input:checkbox").attr('checked', true);
}
$(this).toggleClass('checked'); //zet de juiste klasse voor de cell
});
$( 'td.clickable' ) .click ( function ( ) {
if ( $( this ) .hasClass ( 'checked' ) ) { //cel is aangeklikt, dus uitklikken
$( this ) .css ( 'background-color' , 'red' ) ;
$( this ) .children ( "input:checkbox" ) .attr ( 'checked' , false ) ;
}
else { //cel is niet aangeklikt, dus aanklikken
$( this ) .css ( 'background-color' , 'green' ) ;
$( this ) .children ( "input:checkbox" ) .attr ( 'checked' , true ) ;
}
$( this ) .toggleClass ( 'checked' ) ; //zet de juiste klasse voor de cell
} ) ;
<form action="index.php" method="post" target="_self" name="MyForm">
<table border="0" cellspacing="2" cellpadding="2">
<tr>
<td colspan="'.$col.'">Dag indeling</td>
</tr>
<tr id="row'.$current_row.'">
<td class="clickable checked" style="background-color:green">
<input name="start['.$i.']" type="hidden" value="sec2hms($block_start)" />
<input name="end['.$i.']" type="hidden" value="sec2hms($block_end)" />
<input name="beschikbaar['.$i.']" type="checkbox" id="'.$i.'" value="1" checked/>
</td> </tr></table>
</form>
< form action= "index.php" method= "post" target= "_self" name= "MyForm" >
< table border= "0" cellspacing= "2" cellpadding= "2" >
< tr>
< td colspan= "'.$col .'" > Dag indeling</ td>
</ tr>
< tr id= "row'.$current_row .'" >
< td class = "clickable checked" style= "background-color:green" >
< input name= "start['.$i .']" type= "hidden" value= "sec2hms($block_start )" />
< input name= "end['.$i .']" type= "hidden" value= "sec2hms($block_end )" />
< input name= "beschikbaar['.$i .']" type= "checkbox" id= "'.$i .'" value= "1" checked/>
</ td> </ tr></ table>
</ form>
Gesponsorde links
Je moet ingelogd zijn om een reactie te kunnen posten.