Difference between #5 and #12 of
adding class and links to Ctreeview node

Revision #12 has been created by bingjie2680 on Aug 6, 2011, 8:28:59 AM with the memo:

change link position
« previous (#5) next (#13) »

Changes

Title unchanged

adding class and links to Ctreeview node

Category unchanged

Tips

Yii version unchanged

Tags unchanged

ctreeview, link, class

Content changed

This article will show you how to add links and class to each node in ctreeview. so you can attach events in js by obtaining handler on anchor or class. I am new to Yii, butand I love this framewrok. lately I have been playing a bit with ctreeview. and I find out there is a lack of documentation about adding links to ctree node, so here, I would like to share my experience with you, because I think this is a quite common practice if you are using ctreeview. this article is based on this [article](http://www.yiiframework.com/wiki/70/display-an-ajax-tree-from-your-db-using-ctreeview "")  
中文版请查看我的[博客](http://yjlblog.com "")


So I assume that you have something like this in your controller:
[...]
```

after the query($children = $req->queryAll()) in
the above code, add the following loop to insert a link to each node, you can also add a class or id along with it.


```php
$treedata=array();
foreach($children as $child){
[...]
4 0
6 followers
Viewed: 19 532 times
Version: 1.1
Category: Tips
Written by: bingjie2680
Last updated by: bingjie2680
Created on: Jul 8, 2011
Last updated: 12 years ago
Update Article

Revisions

View all history