yes, that's exactly how appearance settings work.
you have to rather create a formatting rule to show/hide a control based on other control's value
Thanks Marian, that's what I expected, but it only seems to work based on the trigger control's value coming into the form, not as I change the form's value while in edit mode. Perhaps I'm setting it up wrong. How should I do it?
Perhaps you can give a little more detail as to exactly what you're trying to accomplish. Can you post screenshots and examples?
If you're simply trying to show or hide a control/field based on the value of another field, you can create a rule (there's an Add Rule button in the ribbon when you click the control).
Some of my confusion was with what is done with the "Rules" display on the right, vs. right clicking on a Panel control, selecting Settings, Appearance, Visible (expression here). Since I have never done this before, finding the object settings first really threw me off. The settings spot only evaluates when the form loads, or so it seems, which was driving me batty! Now I understand. I have to use the Rules for things to work dynamically during form edits.
I successfully used a T/F button and a Text Box value to control the visibility of other objects, dynamically during form use, so phew, got that one. For any newbies like me reading this, the syntax to show something in a rule can be found in this video on youtube https://www.youtube.com/watch?v=UYHXJpNT_04. Only 3.5 minutes or so, and at least I knew what "normal" looks like!
I still have this question:
I have a 4 option radio button selection. How do I write a rule that only shows the target item when the first option is selected? Do I test for text, or index position, and what does the rule look like?
Thanks for answering!!!
TJ
For radio buttons, you should only need to test for the text value like this:
I've named my Choice field 'options' and am testing for when it's == to "Option 2". I've applied the rule to the label so that it will hide the label when I select Option 2.
Something else selected:
Option 2 selected:
Many thanks Chad. I was able to get everything working that I needed to. As my father in law used to say, now "I'm cooking with gas." In Nintex I saw some sites where a single quote was used instead of the double quote. Are both valid? Is there a functional difference if they are?
I'm happy to help.
In this case, single vs double won't matter. It will come into play when you're trying to pass quotes into a string. You can either escape the quotes using a , or you can start the string with one type of quotation and pass through the other one.
Example: "<a href='www.google.com'>Google</a>"
See how I'm including the single quotes around the URL in the overall string?
If we've covered all your questions, please mark the correct post as answered.