Marco Curatitoli
Marco Curatitoli
Just a question. Why in this action you are using sendToStatus and then $model->save()? In this way if model has WorkflowValidator it doesn't validate... transition has already done so validator...
Have a look here https://jsfiddle.net/efpgr4xw/ it's a modified version of Dynamic tab example button test toggles second tab ('Is Logged In?') putting slot title BEFORE tab-content messed up tabs positions:...
It the jasperstarter project dead? It could be great if someone can upgrade jasperstarter to new Java version and new JasperReport libraries in order to use latest JasperReport Studio releases
as in the subject ```html .... ``` results in class="mb-3 mb-0" in html
I think Widget.php row 284 should be ``` php 'value' => $this->hasModel() ? $this->model->{$this->attributeName} : $this->value, ```
Any plan for BPaginationNav and the possibility to global config components? example: ``` app.use(BootstrapVue3, { BLink: { routerComponentName: 'inertia-router-link' }, BModal: { cancelTitle: i18n.tc('app.cancel'), }, /....... }
The "old" bootstrap-vue BTable has also this feature [provider function](https://bootstrap-vue.org/docs/components/table#using-items-provider-functions). I think it should be implemented if possibile. In this case also busy property should be a v-model.
BTable is now near to be usable for production!!! Good job! what is missing now is ```empty``` slot and "old" props to define the default empty slot like: ```empty-filtered-text```, ```empty-text```,...
I must modify afterSave function in CropImageUploadBehavior ``` php public function afterSave() { parent::afterSave(); if (in_array($this->owner->scenario, $this->scenarios)) { $image = null; foreach ($this->getConfigurations() as $crop) { if ($crop['_changed']) { if...
I need to change line 112 in CropImageUploadBehavior: ``` php if (!empty($crops[$ind])) { $crop['value'] = $crops[$ind]; } ```