You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to set a default value for a field in a table, but I don't know how to do it. I'm looking for a method similar to info.AddField("Limit", "limit", db.Int).FieldDefault(100), but it seems that this method is only used for typing the panel. Can you implement this method for the table?
The text was updated successfully, but these errors were encountered:
Are you referring to specifying a default value for a field when submitting a form? If so, you can use this: formList.AddField("Limit", "limit", db.Integer, form. Number).FieldDefault("100"). Can you give more examples, and screenshots better?
Are you referring to specifying a default value for a field when submitting a form? If so, you can use this: formList.AddField("Limit", "limit", db.Integer, form. Number).FieldDefault("100"). Can you give more examples, and screenshots better?
Thanks for your response. I would like to create an example similar to this example, but with the default city field as "ABC".
I want to set a default value for a field in a table, but I don't know how to do it. I'm looking for a method similar to
info.AddField("Limit", "limit", db.Int).FieldDefault(100)
, but it seems that this method is only used for typing the panel. Can you implement this method for the table?The text was updated successfully, but these errors were encountered: