Bogdan Vovchuk
Bogdan Vovchuk
I just created new model and detect that dynamic attributes saved to db, but when i try to access them - I always get `null`
model: ``` class Product extends \spinitron\dynamicAr\DynamicActiveRecord { public static function dynamicColumn() { return 'params'; } } ``` view _attributes: ``` if($attributes) { foreach($attributes as $attribute) { if ($attribute->is_multiple) { echo...
You have to include this filter by yourself.
I've found the solution, maybe it can be useful: ```javascript getRemoteBlob(remoteFile) { return new Promise((resolve) => { const xhr = new XMLHttpRequest(); xhr.open('GET', remoteFile); xhr.responseType = 'blob'; xhr.onload = ()...
Here is how I solved this problem: ```javascript appendFormData() { const {files} = this.$refs.photos; const fields = JSON.stringify(omit(this.form, ['photos'])); const formData = new FormData(); for (let i = 0; i...
> thank you!i had solve it How?
RabbitMQ?
The same issue is with rotation. this.$refs.transformer.getNode().forceUpdate() helps only for width, and height changes.