When I use the help section controls found in the Qdabra InfoPath Starter form, it works fine if the form is small, that is not very many rules or controls. Specifically, the rule Toggle Help, which is fired on the button control btnHelp. The button has a formula for the label like this: concat(substring(translate(ToggleHelp, "truefalse", "HideShow"), 1, 4), " Help"). The button rule sets the Boolean field ToggleHelp to the following formula: not(ToggleHelp = "true"). The help section has a formatting rule to hide it if the value of ToggleHelp is false.
Here's my issue, and I really don't understand how it's happening and how I can change it. When run in Filler the rules run as expected. The ToggleHelp value is changed depending on what's returned byt the not() function. In the browser, however, it seems the rule only fires once. Just to see if I could figure out what's going on, I added an additional whole number field called Clicks, default value of 0, and added an additional button click rule that adds 1 to the value. Again, when run in Filler, the number increments. However, in the browser, only the first click changes the value to 1, all additional clicks return NaN.
Don't really understand what's going on. Thanks for any help.