Please keep on book marked the link to read manthrikakoodu.blogspot.com.
Monday, 7 October 2013
hi friends please watch movie and dont get distracted while reading watsapp messages
Hi friends now you can now play mobile games in a bigger screen, you can have whatsapp while watching movies. And for developers you can just test your web applications and android applications using this bluestacks application installed in your windows pc.
You just have to download bluestacks in your windows pc and install.The bluestacks will automatically work like an android phone inside your windows platform.
Download from here http://www.bluestacks.com/
You just have to download bluestacks in your windows pc and install.The bluestacks will automatically work like an android phone inside your windows platform.
Download from here http://www.bluestacks.com/
Monday, 27 May 2013
mctreegidview
A modification of cqtreeview,combining treeview and cgridview with filter search enabled
http://www.yiiframework.com/extension/mctreegridview/
1.Generate a model
- Add the widget to yourview
3.Download extension from downloads and upload into the extensions folder
//instead of zii.widgets.grid.CGridView a new extension CQTreeGridView is used here $this->widget('ext.QTreeGridView.CQTreeGridView', array( 'id'=>'category-grid', // 'cssFile'=>false, 'ajaxUpdate' => false, 'dataProvider'=>$dataProvider, 'filter'=>$model, 'columns'=>array( 'id', 'name', 'description', //'icon', //'parent_id', array( 'name' => 'parent_id', 'value'=>'(($data->parent_id==0)?"No Parent" :$data->parentCategory->name)', ), array( 'class'=>'CButtonColumn', 'template'=>'{view}{update}{delete}', 'buttons'=>array ( ), ), ), ));
4.In your Controller
$model=new Category('search'); $dataProvider=new CActiveDataProvider('Category'); $criteria = new CDbCriteria(); $model->unsetAttributes(); // clear any default values if(isset($_GET['Category'])) { foreach($_GET['Category'] as $key=>$value) { $criteria -> compare($key, $value, true, 'AND'); } $dataProvider = new CActiveDataProvider('Category', array('criteria' => $criteria)); } $this->render('admin',array( 'model'=>$model,'dataProvider'=>$dataProvider ));
Subscribe to:
Comments (Atom)