Uses of Interface
org.tentackle.fx.bind.FxTableBinder
-
Packages that use FxTableBinder Package Description org.tentackle.fx.bind Tentackle binding for FX.org.tentackle.fx.table FX table support. -
-
Uses of FxTableBinder in org.tentackle.fx.bind
Classes in org.tentackle.fx.bind that implement FxTableBinder Modifier and Type Class Description classDefaultFxTableBinder<S>Binding Workhorse.Methods in org.tentackle.fx.bind that return FxTableBinder Modifier and Type Method Description <S> FxTableBinder<S>DefaultFxBindingFactory. createTableBinder(TableConfiguration<S> tableConfiguration)<S> FxTableBinder<S>FxBindingFactory. createTableBinder(TableConfiguration<S> tableConfiguration)Creates a table binder.FxTableBinder<S>DefaultFxTableBinding. getBinder()FxTableBinder<S>FxTableBinding. getBinder()Methods in org.tentackle.fx.bind with parameters of type FxTableBinder Modifier and Type Method Description <S,T>
FxTableBinding<S,T>DefaultFxBindingFactory. createTableBinding(FxTableBinder<S> binder, org.tentackle.bind.BindingMember[] parents, org.tentackle.bind.BindingMember member, TableColumnConfiguration<S,T> columnConfig, java.lang.String columnOptions)<S,T>
FxTableBinding<S,T>FxBindingFactory. createTableBinding(FxTableBinder<S> binder, org.tentackle.bind.BindingMember[] parents, org.tentackle.bind.BindingMember member, TableColumnConfiguration<S,T> columnConfig, java.lang.String columnOptions)Creates a table binding.Constructors in org.tentackle.fx.bind with parameters of type FxTableBinder Constructor Description DefaultFxTableBinding(FxTableBinder<S> binder, org.tentackle.bind.BindingMember[] parents, org.tentackle.bind.BindingMember member, TableColumnConfiguration<S,T> columnConfiguration, java.lang.String columnOptions)Creates a binding. -
Uses of FxTableBinder in org.tentackle.fx.table
Methods in org.tentackle.fx.table that return FxTableBinder Modifier and Type Method Description FxTableBinder<S>DefaultTableConfiguration. getBinder()FxTableBinder<S>TableConfiguration. getBinder()Gets the table binder.
Don't mix up the table's binder with the FxController's binder! The table binder is responsible to bind the cells to the model, whereas the controller binder binds the data list to the table.
As a consequence, binding properties such as the DomainContext, if necessary for cell editors, must be applied to the table binder!
-