When building a query, I can't find a way to build the query with a string for a select field, it has to be the numerical ID for the value.
for example:
query_builder.equals(fields.incident.testselect, "Test1")
query = query_builder.build()
incidents = helper.findIncidents(query)
would not work, but replacing the first line with:
query_builder.equals(fields.incident.testselect, 123)
would work (replacing 123 with the ID for that value)
I've tried to find a way of using the label property rather than value, but it doesn't seem possible. Am I doing something wrong, or can you not create a query on a select field with a string?
------------------------------
Thomas Spray
------------------------------