Can I make it readonly? (like Label)
If I set like below:
$this->crud->set_relation(
'auth_user_id',
'auth_users',
'name'
);
$this->crud->change_field_type('auth_user_id', 'readonly');
'auth_users.auth_user_id' will be drawn.
I just wanna draw 'auth_users.name' as Label.
Is there smart way to do this?