Wednesday, 1 January 2014

The unification of desktop and mobile into a single version


You could think of this trend more like a uniformx web design where the goal is to

have a single set of codes which run perfectly on all environments.Responsive websites are often

thought to cater towards mobile browsers, but that isn’t the sole

purpose.


The idea is to support all devices from laptops, desktops,

smartphones, tablets, and anything released in the future.

Responsive, Adaptative Content, Mobile First, Device Agnostic,

Resolution Independent; all these terms are evolving towards a common

destination which is the unification of desktop and mobile into a

single version.The responsive trend until now has been to adapt

content, but many voices now argue for unification
.

Over the next few months we’re going to witness a process of

transformation for most desktop websites, which will increasingly

imitate the style and interfaces of mobile apps, unifying and

simplifying content and design and at the same time facilitating the

creation of responsive project.


The benefits of using a responsive select menu all cater towards a

familiar user experience. People who are comfortable on the Internet

must be familiar with select menus, and so it shouldn’t take a rocket

scientist to navigate these links. The largest drawback is how the

entire menu feels very generic and often times out-of-place.

The process of creating a great responsive layout includes many

factors. Fluid-width designs are similar, but not always built with

mobile devices in mind. Any typical responsive web design is going to feature

staple elements you’d expect to find in most website layout.

Navigation is a big focal point because you need to handle the shift

between desktop to mobile in a usable manner.


shafi mc
www.mctreecreations.com

Monday, 7 October 2013

hi frinds there comes a new blog from me..

Please keep on book marked the link to read manthrikakoodu.blogspot.com.


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/





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
  1. 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
        ));