ORACLE APEX - Losing radio group value in region on cancel and submit in Tabular Form - forms

I have a region at the top of my form with a radio group. I have a tabular form in a region at the bottom of the form. When I hit submit or cancel on the tabular form I lose the selected radio value in the top region. Is there a simple solution to this problem? I am new to radio groups.
John

Related

Access 2016 Prevent "change" event from firing

I have a combo box in an Access form with 2 values Yes / No. The user opens the form and enters the reference number and pushes a button to run a macro. The macro executes a query to return data based on the reference number. The results of query are displayed in various text boxes.
After the combo box is built, the macro selects the appropriate value based on the query. The problem I'm having is that the "change" event is triggered because the combo box is loaded for the first time. I want to prevent this.
After reviewing the data, the user can choose to change the value in the combo box. At this time, I want the change event to fire because the additional macros are run that update multiple tables in the database.
Can I prevent the "change" event from firing when the form is loaded with data but allow it to fire when the combo box is changed?
Thanks in advance for any help or suggestions you provide........

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

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

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.

How do I create a subform that shows query results of a search on the parent form?

I'm quite new to MS Access but understand basic dvl concepts. I have a form (SalesOrder) where I can create sales order info. Creating a new sales order populates more than one table.
I'd like to have a two search buttons on the bottom of the form that will display the results of a query (search by customer name or order id). The results of the query need to be displayed in a subform, and once I click on the selected row, it should populate the master form fields with read-only data (i'll have an edit button to change to writable).
Do I simply link a query to the subform? If so, how do I do that? and how do get the event in the main form (the search button click event) to trigger action in the subform?
thanks in advance.
jeff

Creating radio button with text field in install4j

I want to create a form component that contains radio button along with text field for each of the radio button options. The radio button group component in install4j creates a radio button, however there is no option to create a text field along with it. Basically, I want to give an option to the user to allow him to enter either of the 2 values. Is there any other alternative? The value will be entered by the user and hence cannot use combo box. Please help!
You can use a "Single radio button" form component and "Text field" form component and put them into a "Horizontal group".
In the configuration of the "Single radio button" form component, select the "Coupled form component" tabs and select the text field form component. Then the text field will only be enabled is the radio button is selected.
Then, repeat this for each value of the radio button group and make sure that all "Single radio button" form components have the same value in their "Variable name" properties.