How to create a form allowing multiple checkbox selection in Wix? - forms

Does anyone know if there's a possibility to create a form where users can select multiple checkbox options instead of just one? I need users to be able to check multiple boxes. Any help for a newbie would be greatly appreciated.

I know I'm late, but if you're using Wix Forms, you can click on the form, click the plus sign, then click "Selection" in the left column, then click "Multi Checkbox Field" to get checkboxes where users can select more than one. Right now you're probably using Radio Buttons, which are often used as the default in most form templates but only allow for one box to be selected.

Related

Taking a Word document out of design mode

This should be a really simple thing that for some reason I can get to work.
I have an MS Word document which has a drop-down field. If I double-click it - a dialog comes up to add or remove things from the drop-down field.
I just need to be able to get out of this mode so that the drop-down field behaves like it should from a user's point-of-view rather than from a design point-of-view. Basically I just need it to display the items rather than a dialog to allow me to add and remove the items.
According to what I've read, it looks like I should be able to do this by going to Developer, and then toggling the Design Mode button. This doesn't work; whether the Design Mode button is on or off I still can't get it to just act like a drop-down.
Thanks much
It sounds like you're using a legacy form field dropdown. For those to operate as a dropdown, you must protect the document for forms:
On the Developer tab, click on Restrict Editing. The Restrict Editing task pane opens.
In the task pane, check the box beside Allow only this type of editing in the document.
In the next dropdown, choose Filling in forms.
Click on Yes, Start Enforcing Protection.
Protected forms don't allow text to be edited in protected sections. In those areas, only form fields allow you to enter text. If that's too restrictive, look into Content Controls, which don't require document protection.

Editable text box on MS Access 2010 - Behavior correct?

I have a continuous form which displays an overview/summary of my data. A user can select a row and click a button I created in the footer to open another form which has all the detail for that particular record and be able to edit it. This works fine. However I would also like for certain fields to be editable from the continuous form. I enabled two fields I would like users to edit directly (One is a combo box selection and the other a text box) When users click the combo box for any record it works fine and they can go back to the same record and select another value if they wish. All great but the text box behaves rather differently - The text box will allow the user to initially enter a value but after entry the box appears disabled and the only way to change the initial data entry is to go into the detail form which still works. Why can't users change the text box from the continuous form after an initial entry?
I found the issue!
There was a conditional filter on that particular field

Inno Setup: how to create a page with radio buttons and forms

How can I put radio buttons and forms on the same Inno Setup page?
I currently have 3 fields:
I would like a radio button over the first field (Company / Name) and the third field (Customer Code).
Once a radio button is clicked, it disables the fields that aren't related to it (meaning making them a little grayish and unclickable).
So is there a way to put radio buttons and fields on the same page?
Inno Setup is flexible enough to allow what you need. But to have such a complicated GUI, you have to program this completely, you cannot do with simple utility functions like you are using atm probably (like CreateInputQueryPage).
You need to create:
a new blank page using CreateCustomPage
add radio buttons (TRadioButton)
add input controls for all three forms
handle TRadioButton.OnClick event and enable/disable respective forms based on selected button.
For a general introduction, see Pascal Scripting: Using Custom Wizard Pages.
Though for a faster start, you can actually start with CreateInputQueryPage, and only add your radio buttons and layout the text boxes correctly. To access individual edit boxes and their labels, use TInputQueryWizardPage.Edits and TInputQueryWizardPage.PromptLabels.
For some examples, see:
Select image file on custom layout page and and copy the file to installation folder
Inno Setup: Combo box on TInputQueryWizardPage

spring mvc remember selected option in drop down

I have a spring mvc form with a drop down and radio button.
I want to redisplay the form for confirmation and the drop down and radio buttons are not retaining the selections in the command object.
The drop down displays all the contents from the list but doesnt show the selected option from the command as 1st option.
Appreciate your help.
use the spring forms tags and set the path attribute to the name of the variable in which you are storing the radio and drop-down selections.
Make sure that you are using form:radiobutton and not form:input type="radio".

"Create New" text box in GWT radio button group

In my GWT app I have a radio button group of choices. The last choice is to add a new item. What I want is that the words "create new xyz" to disappear, and to be replaced with a text box to take the input. What is the best way to do this? I have thought about using a disclosure panel, but that seems unnatural and I don't have it working properly yet.
Is it possible to write an onClickHandler for that radio button? If so, then inside that onClickHandler, add code to generate the textbox.