我想为 CompleteLister 的每一行添加一个简单的表单。我试过这个:
<?php
class page_list extends Page {
function init(){
parent::init();
$l = $this->add('Lister_Comment',null,'comm_list_spot','comm_list_spot');
$l->setModel('Comment');
}
function defaultTemplate(){
return array('view/comment_list');
}
}
class Lister_Comment extends CompleteLister {
function formatRow(){
parent::formatRow();
$f = $this->add('Form');
$f->addField('line','com_text');
$f->addSubmit();
$this->current_row_html['commm'] = $f->getHTML();
}
}
?>
` 但它不起作用。我做错了什么?
谢谢你。