Method | Description | |
---|---|---|
CheckboxList ( |
Initializes a new instance of the CheckboxList class.
|
|
GetEnumerator ( ) : IEnumerator |
Returns an enumerator that iterates through a collection.
|
|
Item ( ) : string |
Outputs the Checkbox in the correct state (checked/unchecked) based on the Set. FormHelper.CreateCheckboxList(string,IEnumerable,IDictionary)
|
|
Item ( string id ) : string |
Outputs the Checkbox in the correct state (checked/unchecked) based on the Set. FormHelper.CreateCheckboxList(string,IEnumerable,IDictionary)
|
|
MoveNext ( ) : bool |
Advances the enumerator to the next element of the collection.
|
|
Reset ( ) : void |
Sets the enumerator to its initial position, which is before the first element in the collection.
|
public CheckboxList ( |
||
helper | The helper. | |
target | string | The object to get the value from and to be based on to create the element name. |
initialSelectionSet | object | The initial selection set. |
dataSource | IEnumerable | The set of available elements |
attributes | IDictionary | Attributes for the FormHelper method and for the html element it generates |
return | System |