F
Filament2mo ago
Gush

Alpine component broke filament create button

I made a custom form field component, put some alpine inside and now my create button doesnt work
6 Replies
Gush
Gush2mo ago
awcodes
awcodes2mo ago
You going to need to move the script outside of the component. It’s a caveat with livewire. And how the things in script tags can’t react with the dom diff.
Gush
Gush2mo ago
how can i do that? im working with packages so in the js folder of my package i created ProductComponent.js with the following:
export function tableComponent() {
return {
products: [],
form: {
ref: '',
description: '',
qtd: 0,
unit_value: 0
},
showForm: false,
openForm() {
this.showForm = true;
},
closeForm() {
this.showForm = false;
this.resetForm();
},
resetForm() {
this.form = {
ref: '',
description: '',
qtd: 0,
unit_value: 0
};
},
saveProduct() {
this.products.push({
...this.form,
total_value: (this.form.qtd * this.form.unit_value).toFixed(2)
});
this.closeForm();
},
removeProduct(index) {
this.products.splice(index, 1);
}
};
}
export function tableComponent() {
return {
products: [],
form: {
ref: '',
description: '',
qtd: 0,
unit_value: 0
},
showForm: false,
openForm() {
this.showForm = true;
},
closeForm() {
this.showForm = false;
this.resetForm();
},
resetForm() {
this.form = {
ref: '',
description: '',
qtd: 0,
unit_value: 0
};
},
saveProduct() {
this.products.push({
...this.form,
total_value: (this.form.qtd * this.form.unit_value).toFixed(2)
});
this.closeForm();
},
removeProduct(index) {
this.products.splice(index, 1);
}
};
}
now what i have to do? import it in my blade view?
Gush
Gush2mo ago
did that, same problem create button doesnt respond bumping this
Want results from more Discord servers?
Add your server
More Posts