$request[ 'field_name' ] = 'Something else'; don't work correctly on entry submit
In the function:
public static function BeforeStoreEntry( SPEntry &$model, &$request )
If I do this for a field of type inbox no value will be stored:
$request[ 'field_name' ] = 'Something else';
If I do this for a field of type chbxgroup it works, the value will be stored:
$request[ 'field_ceckbox_group' ][] = 'option_1';