When editing, I want the Status Display to show the full text, but only save the character for it. If I enter Key-Value pairs in the Items of the TWebDBComboBox, the html generated is correct
<select id="view.staff.form.edStatus" class="form-control" role="combobox" style="">
<option value="A">Active</option>
<option value="D">Deleted</option>
<option value="I">Inactive</option>
</select>
However, if the user selects say Inactive, nothing gets saved to the database.
Is there a way to leverage this?
To track whats happening above, how can I log the actual sql statements being executed by the REST server?