I have a checkbox test_mode which when the user toggles the value, I want the database to be updated immediately, without any submit buttons being pressed.
So to do it I’ve created a form, an update_test_mode Server Action, and I Submit the form onclick of the checkbox being clicked.
It works well, but seems quite a lot of effort for such a simple task.
It’s something I do a lot, and I don’t know of any easier way to do it. However, I’ll often copy and paste the form between pages and edit the code manually rather than use the UI. It’s the sort of thing a snippets facility would be useful for.
there will be some times I just want to write to a specific database column when something else happens…
… so do I need an invisible form to be able to submit that, or is it possible to write something to the database by loading a GET type of Server Action?
Have a check box, Dynamic attribute ‘Checked’ is updated from serverconnect. Works great to show state. easy part
I want to update the db record on change of state.
i set static value to 1
added dynamic click event
-added the server connection action that updates the record (no autoload), assigned the checkbox value to the parameter (which has default value 0 on action)
-reload the first sever connect to show new state.
Issue:
I am able to write 1 to the database but never 0. with debug enabled i see its always sending param=1 everytime i click the box, never blank. i want it to submit a blank value when not checked.
Try adding a default value of 0 to your server action. That way, if there is no value it should enter the 0, if there is a value it will add the value.
That’s why I suggested setting a default value in your server connect action. If it is unchecked it should submit whatever you have for a default value. You can even set your default value to Null if you want no value at all. If it’s checked it will send the 1 value. If it’s unchecked it will set the default value which can be null in your case.
i understand the purpose of the Default value. if not checked it sends no value and get replaced by default. nonetheless i added default 0 everywhere i could find
My issue is that it always sends ‘1’ its never blank.