Textfield becomes not visible or invisible after checking a specific option in my checkbox in PowerApps. What do I need to correct? - checkbox

It is not working ;(.
Let me write it down like this
The checkbox name is: Categories Checkbox
This checkbox has 4 options you can check: "clients", "employees", "consumers", "other"
I have a TextInput1 which I only want it to be visible if the option "Other" from the checkbox "Categories Checkbox" is checked.
This is why I am using this formula but it is not working :
If('Categories Checkbox'.Value = "other",true,false)
What do I need to correct? Can somebody please write me down the correct formula?
I tried to change the name of my checkbox,
I also tried to make the first letter a capital letter of "Other" instead of "other"
I also changed the Value in the formula to text
I also changed the textfield,which was text area to Single line of text in the Dataverse Table.
But still if I check or uncheck "other" then the textfield does not appear.

Related

smartgwt listgridfield with boolean type with checkbox in field header

I've listgridfield in which I need to show checkboxes. So, I just set that field like
listGridFieldChk.setFieldDataType(ListGridFieldType.BOOLEAN);
It working fine like I want, only thing which I need now is checkbox in header with the same field. So when user want to check or uncheck all checkbox at once will do with this.
I know about the listGrid property which put checkbox field at first column
thisGrid.setSelectionAppearance(SelectionAppearance.CHECKBOX);
But this will not helpful for me, I need it at custom level.

How to grey out a checkbox (disable input) in Lotus Notes (Version 8.5.2FP4)

What is the way to grey out a Lotus Notes checkbox?
I use the Input Enabled calculation, but it disappears when the Value is #TRUE. I just want the input disabled.
Create a second checkbox, set it to the type "Computed for Display". Then you use a hide-when formula to display the computed one and hide the editable one based on your criteria.
The values of CheckBox must be a text values. #True is wrong value for CheckBox. So, if your CheckBox field contains right values, then you can use Input Enabled calculation.
For example, if your CheckBox have this choices:
then if the value of CheckBox is "Value0":"Value2" and Input Enabled calculation is evaluates to #False then you receive this result:

Include text between check boxes in a check box group?

Anyone know if there's a way to include some text between check boxes in a check box group in XPages? What I'd like to do is implement something like this with a single check box group:
Explanation about these checkboxes:
- Checkbox 1
- Checkbox 2
Explanation about these checkboxes:
- Checkbox 3
- Checkbox 4
I'm pretty sure there isn't an easy solution to this using the CheckboxGroup control. You'll have to build it one checkbox at a time.
You will need to have multiple checkbox groups, then on an onchange you can change the value of another group to null.

add checkbox to subtab on a NetSuite form

This may be a simple quesiton but I need to ask to be sure I am in the correct direction. In the Item Fulfillment form for example, there is a first column Fulfill that is a checkbox. Above it there are buttons for Mark All and Unmark All as well. What I would like to do is have similar functionality on one of my other subtabs. I already have a custom child record that lives on my subtab and added a checkbox bool field to the record. I could get that to somewhat work but what I would like to know is
1- is that the correct approach.
2- does it need to be a field that is selected to be saved,
3- for their functionality this only appears in Edit mode. is that a limitation?
4- I notice their "checkbox field" is not as wide as the one I made
5- Is there a way that I would only get this "field" to appear in the record when it is in a sublist and not when it is in its own custom form to create a new item? I would only have it as a checkbox in a subtab.
Or is my approach wrong and perhaps there is an easier way to do it?
Thanks
1 - You can create a check box using inline HTML field - script the check box that way. Call a client script's function to handle the click.
2 - Not really sure what you're talking about - if you mean "Store Value" in the field definition, the answer is "No".
3 - Edit mode, yes. You can't change values of a field when not in edit mode.
4 - Width of a field can be controlled on the form design.
5 - Create 2 different forms. The data entry form would not include the check box, the sublist form would.

Change view of form on click of button or checkbox

I have to make a form codename-one in which i have a check box. if check box is checked then bellow it i want to display 2 combo box and if check box is unchecked then i want to display 2 text field.
How can i do it.
I have tried setVisible(true/false) but in it space consumed by label or text field is never covered up.
Please help.
You need to remove/add the components and then invoke either revalidate() or animateLayout(int) to refresh the UI.

Resources