CLinkColumn and filter

I will do link for e-mail in my list from GRID. I added this:


array(

    'class'=>'CLinkColumn',

    'header'=>'e-mail',

    'labelExpression'=>'$data->email',

    'urlExpression'=>'"mailto:".$data->email',

),

this working ok, but now i dont hava column filter. CLinkColumns doesnt has method filter. How can i make link mailto: and use filter for this?

Just replace your array(…) with this line:




'email:email:e-mail',



@Da:Sourcerer very thanks! :)