I am writing a plugin and 'discovered' that by passing the following options
{"pgsrc", "pgEmailSuggestions"},
{"delimiters", ";,"},
{"ffillparentwidth", "1"},
{"fignoreinputtracking", "1"},
{"nshorttokenlength", "50"},
{"fwriteback", "1"},
{"fescapeinitialquotes", "1"},
{"fxnvalidate", "IsValidEmailStrict"},
{"fchunky", "1"}
to a FogCreek.FogBugz.UI.Forms.TextInput constructor, I obtained a very nice person search bar that automatically returned results via AJAX.
However, I could not find any documentation on what are the options that can be passed to a TextInput or other form inputs.
Are there more gems hidden behind the options constructor argument? How could I find more documentation about that?