w_field détecte le type du champ et appelle le w_??? correspondant.

This commit is contained in:
Georges Dupéron 2010-10-15 17:03:39 +02:00
parent 01e73fed15
commit 91206e21cb

View File

@ -209,9 +209,7 @@ ElementDocument::add_widget("description", create_function('$d, $cell', '
ElementDocument::add_widget("field", create_function('$d, $cell', '
$f = $d->span("field");
$f->text("[(" . $cell->type() .")". $cell->propriete() . " = " . toString($cell) . "]");
return $f;
return call_user_func(array($d, "w_" . $cell->type()), $cell);
'));
@ -238,7 +236,7 @@ ElementDocument::add_widget("text_rich", create_function('$d, $cell', '
ElementDocument::add_widget("bool", create_function('$d, $cell', '
// checkbox
return $d->text("Not Implemented Yet : w_bool($cell)");
return $d->text("w_bool(" . toString($cell) . ")");
'));