In version 1.2.3, I have a field defined as follows:
If I examine my data in the chrome console with:
$("#mytable").dataTable().fnSettings().aoData[4]._aData
I get:
This shows that the Enabled property of the data rows is correctly set to either true or false as a boolean datatype, not a string, matching the values specified in the field definition.
When I edit a row, it displays the form with neither the Enabled or Disabled button pre-selected - i.e. ignores the value of the Enabled property in the data row. When I submit the form, it does correctly send the selected choice to the server and update the selected row of aoData in the underlying data table with either true or false.
If I then display the edit form for a 2nd row, it leaves selected whatever option was chosen the previous time the form was open.
Furthermore, if I load the page and click new, it does correctly pre-select "Enabled" as the default choice. If i then edit a row, select "Disabled" and submit that change to the server, then click new a 2nd time, this time it has "Disabled" pre-selected - it hasn't reverted to the default choice.
{ "label": "Enabled:", "name": "Enabled", "type": "radio", "default": true, "ipOpts": [ { "label": "Enabled", "value": true }, { "label": "Disabled", "value": false } ] }
If I examine my data in the chrome console with:
$("#mytable").dataTable().fnSettings().aoData[4]._aData
I get:
Object Enabled: false ID: 2008 Name: "Item 1" __proto__: Object
This shows that the Enabled property of the data rows is correctly set to either true or false as a boolean datatype, not a string, matching the values specified in the field definition.
When I edit a row, it displays the form with neither the Enabled or Disabled button pre-selected - i.e. ignores the value of the Enabled property in the data row. When I submit the form, it does correctly send the selected choice to the server and update the selected row of aoData in the underlying data table with either true or false.
If I then display the edit form for a 2nd row, it leaves selected whatever option was chosen the previous time the form was open.
Furthermore, if I load the page and click new, it does correctly pre-select "Enabled" as the default choice. If i then edit a row, select "Disabled" and submit that change to the server, then click new a 2nd time, this time it has "Disabled" pre-selected - it hasn't reverted to the default choice.