yii2-editable-widget icon indicating copy to clipboard operation
yii2-editable-widget copied to clipboard

X-Editable Widget for Yii2

Results 10 yii2-editable-widget issues
Sort by recently updated
recently updated
newest added

to prevent function injections, because the callable value is provided by user relates to #40

This line is pretty dangerous. Try to update a value to `phpinfo` in a textinput editable field, and refresh the page. https://github.com/2amigos/yii2-editable-widget/blob/8de9559b20ed6a4af8a6cdd47bfa32b4f20c7bab/src/Editable.php#L105

I've noticed that when I use datepicker widget, it set's a wrong date. For example, if I choose 2016-02-04 it would set 2016-02-03 in stead. After digging around a bit,...

bug
enhancement
help wanted

how to use 2 attribute on one editable ? Like this , ![Like This](https://user-images.githubusercontent.com/29086757/73623993-ad3e2000-4671-11ea-98f4-4f53380ec44f.png)

You have to use `bootstrap-datepicker.' . $language . '.js'` instead of `bootstrap-datetimepicker.' . $language . '.js'` `protected function registerClientScript() { $view = $this->getView(); $language = ArrayHelper::getValue($this->clientOptions, 'language'); switch ($this->type) {...

Hello When I use the widget and that I have for example a value "Max" for the column "firstname", I have this error. max(): When only one parameter is given,...

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' =>...

Is there any plan to upgrade select2 to the latest version?

enhancement
help wanted

Is it possible to have an Editable textarea with additional ajax link (for generating textarea content)? So if I open the Editable, there will be a textarea and link. This...

enhancement
help wanted

How to validate via ActiveRecord

question