By default, our forms are in "Idle" state and the controls are disabled to prevent users from accidently changing data. The Edit button is then used to enable the controls for data entry. This is why I like to leave IgnoreReadOnlyManageState to the default of false.I was struggling as I couldn't get the combobox append functionality to work. After searching through the forums I found this thread:-
http://forum.strataframe.net/Topic18580-7-1.aspx
I downloaded Dustin's AutoCompleteTest.zip and it was only then I noticed he had IgnoreReadOnlyManageState to true. I tried it in my application and the append functionality suddenly starting working. When I set it to false append stops working.
On paper it looks like IgnoreReadOnlyManageState should have nothing to do with SuggestAppend but something in this setting is causing it to work.
The "suggest" part of the feature always works. It is the "append" part that is affected. Maybe the "append" feature is turned off when the control is disabled and it is not turned on again when the control is enabled?