We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
При построении полей для сохранении json поля(как это делалось можно посмотреть тут). У полей внутри Template не срабатывает реактивность.
Template
Template::make(column: 'config') ->fields([ Select::make('test', 'test') ->searchable() ->reactive(function (Fields $fields, ?string $value, Field $field, array $values) { // Ставим брейкпоинт. Остановки не происходит $a = 0; }) ->async('/search'), Select::make('test 1', 'test_1')->reactive(), ]) ->changeRender(fn (mixed $value, Template $ctx) => FieldsGroup::make($ctx->preparedFields())) ->onApply(function (mixed $item, mixed $values) { $item->config = $values ?: []; return $item; });
The text was updated successfully, but these errors were encountered:
В таком виде и не будет, будет работать через Template()->reactive в 3.4 но Template также подразумевает правильно настроенную логику
Sorry, something went wrong.
No branches or pull requests
Description
При построении полей для сохранении json поля(как это делалось можно посмотреть тут).
У полей внутри
Template
не срабатывает реактивность.The text was updated successfully, but these errors were encountered: