The problem I have is that I am returning a subset of data from the User table to a view. Using TbGridView I should be able to type in a search term and this data should be filtered by my search term however the data is not filtered. The same data is simply retuned. The filtering is not working.
I have an action in my User controller to show a list of users that have previously logged in. The action is
public function actionLoginhistory() {
$model=new User('searchlogin');
$model->unsetAttributes(); // clear any default values
if(isset($_GET['User'])) {
$model->attributes=$_GET['User