2amigos / yii2-editable-widget

X-Editable Widget for Yii2
Other
58 stars 20 forks source link

the echoed widget can't be clicked. #36

Open codeneet opened 5 years ago

codeneet commented 5 years ago

When I try to use

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.