Wt
4.11.1
|
Classes that handle the Dbo Forms. More...
Classes | |
class | Wt::Form::WFormDelegate< Wt::WString, void > |
Form delegate class for WString More... | |
class | Wt::Form::WFormDelegate< std::string, void > |
Form delegate class for std::string More... | |
class | Wt::Form::WFormDelegate< Wt::WDate, void > |
Form delegate class for WDate More... | |
class | Wt::Form::WFormDelegate< Wt::WTime, void > |
Form delegate class for WTime More... | |
class | Wt::Form::WFormDelegate< Wt::WDateTime, void > |
Form delegate class for WDateTime More... | |
class | Wt::Form::WFormDelegate< bool, void > |
Form delegate class for boolean More... | |
class | Wt::Form::WFormDelegate< int, void > |
Form delegate class for integer More... | |
class | Wt::Form::WFormDelegate< double, void > |
Form delegate for double More... | |
class | Wt::Form::Dbo::FormModel< C > |
A model class to represent database objects. More... | |
class | Wt::Form::Dbo::FormModelBase |
A model class keeping information about database columns that are to be used in the model/view logic. More... | |
class | Wt::Form::Dbo::FormView< C > |
A view class to represent database objects. More... | |
class | Wt::Form::WAbstractFormDelegate |
Abstract delegate class for creating form widgets. More... | |
Enumerations | |
enum class | Wt::Form::Dbo::FieldOptions { Wt::Form::Dbo::ExcludeForeignKeys = 0x1 } |
Configuration option for database fields. More... | |
Classes that handle the Dbo Forms.
This module allows Wt to automatically generate a form for a Dbo class. Based on the data types that are used within the Dbo class, Wt will generate form delegates. These form delegates are responsible for creating the widget, creating an optional validator, and making sure that the data is correctly loaded in and from the model. For example: WString objects are by default represented by a WLineEdit, WDate objects by WDateEdit and so on.
The user is able to override the default behavior one of three ways:
|
strong |