hundreds-camera-24900
11/11/2021, 2:30 PMhundreds-camera-24900
11/11/2021, 2:30 PMhundreds-camera-24900
11/11/2021, 2:30 PMhundreds-camera-24900
11/11/2021, 2:30 PMhundreds-camera-24900
11/11/2021, 2:31 PMcareful-room-54859
11/12/2021, 8:20 PMhtml
<form id="frmUpdate" method="POST" enctype="multipart/form-data"
hx-post="{% url 'products:update' product.id %}"
hx-target="#viewport"
hx-swap="innerHTML"
hx-push-url="true"
hx-indicator="#content-loader"
>
{% csrf_token %}
{% crispy form form.helper %}
<div class="flex justify-end gap-3">
<a hx-get="{{ product.get_list_url }}"
hx-target="#viewport"
hx-swap="innerHTML"
hx-push-url="true"
hx-indicator="#content-loader"
class="intro-x px-3 py-2 cursor-pointer">
Cancel
</a>
<button class="intro-x text-white bg-blue-500 hover:bt-blue-600 px-3 py-2 rounded-md"
type="submit"
form="frmUpdate">
Save
</button>
</div>
</form>
careful-room-54859
11/12/2021, 8:20 PMcareful-room-54859
11/12/2021, 8:22 PMclean
function on my ProductForm class that it is as well. What has me scratching my head is that I can see the POST in the Network tab in the debugger and it shows the data properly.....careful-room-54859
11/12/2021, 8:22 PMmysterious-toddler-20573
11/12/2021, 8:23 PMmultipart/form-data
encoding?careful-room-54859
11/12/2021, 8:24 PMmysterious-toddler-20573
11/12/2021, 8:26 PMcareful-room-54859
11/12/2021, 8:27 PMenctype
set so I added hx-enctype="multipart/form-data"
but it still fails.....careful-room-54859
11/12/2021, 8:32 PM1.5.0
of htmx, it started working...careful-room-54859
11/12/2021, 8:35 PMhx-enctype
to hx-enctype="text/x-www-form-urlencoded"
and it works fine.careful-room-54859
11/12/2021, 8:36 PMenctype="multipart/form-data"
careful-room-54859
11/12/2021, 8:36 PMcareful-room-54859
11/12/2021, 8:36 PMmysterious-toddler-20573
11/12/2021, 8:39 PMmysterious-toddler-20573
11/12/2021, 8:39 PMmysterious-toddler-20573
11/13/2021, 3:10 AMhundreds-camera-24900
11/13/2021, 4:22 PMhundreds-camera-24900
11/16/2021, 12:03 AMhundreds-camera-24900
11/16/2021, 12:03 AMhundreds-camera-24900
11/16/2021, 12:04 AMhundreds-camera-24900
11/16/2021, 12:04 AMhundreds-camera-24900
11/16/2021, 12:47 AMhundreds-camera-24900
11/16/2021, 12:47 AMmysterious-toddler-20573
11/16/2021, 1:19 AMhundreds-camera-24900
11/16/2021, 1:38 AM