5

我正在使用 Yii 框架为自己构建一个穷人的项目跟踪系统。目标是拥有一个类似于basecamp 的便笺小部件的“crud”小部件/表单,以显示带有标题和内容字段的便笺。(我不再使用大本营,因此无法发布他们的笔记小部件的图像:-()

使用 Yii,我有一个客户端模型,我想在一个 div 中显示与该客户端对应的所有注释,并在同一webroot/client/view/client_id页面中为这些注释提供 CRUD 功能。

我在网上找到的最接近的实现纯粹是在 jquery、jeditable中完成的,但缺少创建和删除功能。此外,它不支持 Yii 模型(CActiveRecord),这意味着需要硬连线控制器代码中来回传输的数据,而不利用 Yii 的 MVC 设置。

我现在拥有的:通过 AJAX (forcCreation) 提交的隐藏表单和笔记的 Zii CListView 小部件(用于检索),它利用了内置的 zii 小部件更新功能$.fn.yiiListView.update('clistview_id');,但我相当坚持游戏的 U 和 D 部分使用 Yii/Zii 小部件、jquery 或它们的组合。

我的 client/view.php 片段:

<div class="note_create">
    <?php echo CHtml::button('Add new note',array('class'=>'create-note-button')) ?>
    <div class="create-note-form" style="display: none;">
    <!-- _createNote is just a CActiveForm with a CHtml::ajaxSubmitButton-->
    <?php $this->renderPartial('_createNote', array('client' => $model, 'note' => $note)); ?>
    </div>
</div>
<div class="note_browser">
    <?php $this->widget('zii.widgets.CListView', array(
        'id' => 'clist_note_browser',
        'dataProvider' => $model->noteSearch(),
        'itemView' => '_note', // refers to the partial view named '_note'
        'emptyText' => 'No notes found.',
        'sortableAttributes' => array(
            'note.title',
            'note.last_modify'
        ),
        ));
    ?>
</div>

一个非常简单的 Note 模型:

<?php

/**
 * This is the model class for table "note".
 *
 * The followings are the available columns in table 'note':
 * @property string $nid
 * @property string $title
 * @property string $content
 * @property string $first_create
 * @property string $last_modify
 *
 * The followings are the available model relations:
 * @property ClientNote $client  ClientNote an intermediate table with two columns: nid, cid
 */
class Note extends CActiveRecord
{
    ...
    public function relations()
    {   
        return array('client' => array(self::HAS_ONE, 'ClientNote', 'nid'),);
    }
    ...
}

有没有人有什么建议?

4

1 回答 1

0

开始检查这个,它可以帮助您了解您想要的方式:

http://help.discretelogix.com/php/yii/enable-in-place-editing-in-yii-grid.htm

after you understood, you need to create your own widget that does this

you can check out existing extensions that tries to do what you are after: http://www.yiiframework.com/extension/editablegridview/

http://yiitutorials.net/easy/creating-a-widget-with-the-yii-framework

http://www.yiiframework.com/extension/escrollablegridview/

You need to study all these, and understand how they work, so you should be able to take one and extend to fit your needs. Good luck.

于 2012-10-16T08:42:22.200 回答