products form htmx attributes wip - bedtime though
CI / testsuite (mysql, 8.1, ) (push) Failing after 0s Details
CI / testsuite (mysql, 8.4, ) (push) Failing after 1s Details
CI / testsuite (pgsql, 8.1, ) (push) Failing after 0s Details
CI / testsuite (pgsql, 8.4, ) (push) Failing after 0s Details
CI / testsuite (sqlite, 8.1, ) (push) Failing after 0s Details
CI / testsuite (sqlite, 8.1, prefer-lowest) (push) Failing after 0s Details
CI / testsuite (sqlite, 8.4, ) (push) Failing after 0s Details
CI / Coding Standard & Static Analysis (push) Failing after 0s Details

This commit is contained in:
Brandon Shipley 2025-04-01 02:52:00 -07:00
parent 9f94f7d0ed
commit 42f2b4f64b
Signed by: bmfs
GPG Key ID: 14E38571D8BB0DE4
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@
</aside>
<div class="column column-80">
<div class="products form content">
<?= $this->Form->create($product) ?>
<?= $this->Form->create($product, ['id' => 'main-form']) ?>
<fieldset>
<legend><?= __('Add Product') ?></legend>
<?= $this->element('Products/form'); ?>

View File

@ -10,7 +10,6 @@
<h4 class="mb-4">Basic Info</h4>
<?php
echo $this->Form->hidden('form', ['value' => 'product']);
echo $this->Form->control('name');
echo $this->Form->control('product_catalog_id', [
'empty' => 'Select a Catalog',
@ -31,6 +30,7 @@ echo $this->Form->control('product_category_id', [
'hx-get' => $this->Url->build([
'controller' => 'ProductCategoryAttributes',
'action' => 'form',
'?' => ['form' => 'product'],
0 => $productCategory ? $productCategory->product_catalog_id : '',
]),
'hx-target' => '#product-attributes-container',