Habanero.Faces.Base.EditableGridControlMapper.EditableGridControlMapper C# (CSharp) Méthode

EditableGridControlMapper() public méthode

Constructor for the mapper.
public EditableGridControlMapper ( IEditableGridControl ctl, string relationshipName, bool isReadOnly, IControlFactory factory ) : Habanero.Base
ctl IEditableGridControl The IEditableGridControl
relationshipName string This is the relationship name to use - this relationship must be a multiple relationship and exist on the BusinessObject
isReadOnly bool Whether the editable grid should be read only or not. Ignored
factory IControlFactory The control factory to use
Résultat Habanero.Base
        public EditableGridControlMapper(IEditableGridControl ctl, string relationshipName, bool isReadOnly, IControlFactory factory)
            : base(ctl, relationshipName, isReadOnly, factory)
        {
            _editableGrid = ctl;
            _editableGrid.Buttons.Visible = false;
        }