This is what my form looks like, essentially I want the user to click hazardous or non-hazardous and have it set a value (itemtype) to Haz or NonHaz Here are my problems:
Using buttons to set form values (Bootstrap/Bootstrap Studio)
636 views Asked by ecorp At
1
There are 1 answers
Related Questions in BOOTSTRAP-4
- Displaying a Movie List on a Website Using Jinja2 and Bootstrap
- I just cant make it work, HTML, JS and Firebase error
- enable overflown data visible outside the container
- Html + Css good response on computer (even in minimized mode) but bad on mobile
- n is not a constructor error for bs4.5.2 dropdown and jquery 3.5.1
- How to write HTML CSS code for a header navbar that too responsive
- Change Opacity of Bootstrap Button
- PhotoSwipe image position affected by other img elements in html on mobile
- Should i learn Bootstrap in 2024
- Having trouble sizing single resizable column with Bootstrap
- In Boostrap 4 how can I change the the translucency of toasts to fully opaque?
- Project was bootstrapped with an old unsupported version of tools while creating react app
- Tooltip positioned too high with data-bs-placement="top" in Bootstrap 5
- TypeError when using Popper with Bootstrap 4
- How can I generate a Business Model Canvas with Bootstrap Cards and integrate it as html in a qmd-file?
Related Questions in BOOTSTRAP-STUDIO
- Using Bootstrap Studio and JQuery to dynamically add components to a page
- bootstrapsudio col-md-4 option missing
- Using buttons to set form values (Bootstrap/Bootstrap Studio)
- document is undefined in script.min.js
- I cant figure out firebase authentication
- Stacking columns and merging rows on Bootstrap 4
- Change Flask static folder name to "assets"
- How to import angular in bootstrap project generated by bootstrap studio?
- Icons overriding html/css bootstrap studio
- two-column dropdown menu issue
- how can i make this type of layout in bootstrap studio
- boostrap studio form responses across columns
- Issue linking CSS files exported from Bootstrap Studio
- Opening a Bootstrap 4 accordion panel via URL on another page
- bootstrap studio: how to set path to css files when serving page from php
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)

What's your reason that you don't want to use radio buttons? because radio buttons are the best for your scenario. If it's because of its look,
bootstraphas a button plugin you can use:https://getbootstrap.com/docs/4.1/components/buttons/#button-pluginHTML
See the name for the radio button control "hazardous-item". I don't know what server-side language you use but that name could easily come from a boolean variable. This is how and where you store the variable.
With
bootstrapbutton plugin, when you click any of the buttons, it updates the underneath radio buttons as if you're clicking the radio buttons.To test, you can put this
javascripton your page:You can F12 to go to your browser's developer tool to see the selected value.
On form post-back
When you submit the form back to the server, the selected value, which is a boolean, will get binded to the variable, i.e.
hazardous-item=trueorhazardous-item=false.Screenshot
jsfiddle: http://jsfiddle.net/aq9Laaew/230903/