Topic: Added filed is blank.

During the development of my data base, I have returned to a previous table and added a new text field but It will not function.  It remains blank after adding or editing.  I cleared out all my records, regenerated my  sqlite.db but it will not function.  Once a table is used, are new fields locked out?  At what point are new fields not allowed in a table.

Re: Added filed is blank.

Chances are that you forgot to include the new field in the list of fields to save in the SAVE ACTION of the form.

Re: Added filed is blank.

Hello lectrond, hello ehwagner

As said ehwagner, you've forgot to add this new field to save.
Click your button SAVE (or what saves all your fields).
You will see on the right all fields already chosen to save your data and on the left you wil see among
componenents not necessary for saving and you will notice the new field added (this may be a combobox, a textbox ,a datetimepicker ...).

With green right arrow, pass it to the right (don't forget to select the database table where to save the record), click OK and your new data wil be recorded.

If you use a tablegrid to display your datas, make an update to refresh it.

Hope this will resolve your question

JB

Re: Added filed is blank.

How simple.  How did I miss that?  Thanks Jean, Thanks ehwagner.

Re: Added filed is blank.

it's a classic omission, I've been there too.
But we quickly get used to integrate any new field in the list of those to save.

JB