use dosamigos\editable\Editable;
$url = url to my controller's action;
echo Editable::widget( [
'model' => $model,
'attribute' => 'myattribute',
'name'=>'myname'
'url' => $url,
'type' => 'text',
'mode' => 'pop',
]);
A text with the value appeared but can't be clicked as if It's not a link. It's still stylized with the underline but black font instead of blue, though. When I do with a more direct approach as in x-vitalet's documentation using <a> anchor tag, it works well. For information, I used Bootstrap 4.
Is there any solution? Thanks.
When I try to use
A text with the value appeared but can't be clicked as if It's not a link. It's still stylized with the underline but black font instead of blue, though. When I do with a more direct approach as in x-vitalet's documentation using
<a>
anchor tag, it works well. For information, I used Bootstrap 4. Is there any solution? Thanks.