C# 클래스 Habanero.Faces.Base.ListComboBoxMapper

Wraps a ComboBox in order to display and capture a property of the business object. The List of items to be selected is a '|' seperated list.
상속: ControlMapper
파일 보기 프로젝트 열기: Chillisoft/habanero.faces 1 사용 예제들

공개 메소드들

메소드 설명
ApplyChangesToBusinessObject ( ) : void

Updates the properties on the represented business object

ListComboBoxMapper ( IControlHabanero ctl, string propName, bool isReadOnly, IControlFactory factory )

Constructor form ListComboBoxMapper

SetList ( string list ) : void

Populates the Items list based on the pipe (|) seperated string list.

보호된 메소드들

메소드 설명
InternalUpdateControlValueFromBo ( ) : void

Updates the value in the control from its business object.

메소드 상세

ApplyChangesToBusinessObject() 공개 메소드

Updates the properties on the represented business object
public ApplyChangesToBusinessObject ( ) : void
리턴 void

InternalUpdateControlValueFromBo() 보호된 메소드

Updates the value in the control from its business object.
protected InternalUpdateControlValueFromBo ( ) : void
리턴 void

ListComboBoxMapper() 공개 메소드

Constructor form ListComboBoxMapper
public ListComboBoxMapper ( IControlHabanero ctl, string propName, bool isReadOnly, IControlFactory factory )
ctl IControlHabanero
propName string
isReadOnly bool
factory IControlFactory

SetList() 공개 메소드

Populates the Items list based on the pipe (|) seperated string list.
public SetList ( string list ) : void
list string A pipe (|) seperated string representing /// the list of string options to populate the list e.g Mr|Mrs|Dr
리턴 void