Method |
Description |
|
AddItem ( mixed $mixListItemOrName, string $strValue = null, boolean $blnSelected = null, string $strItemGroup = null, string $strOverrideParameters = null ) : QListItem |
Allows you to add a QListItem to the QListControl at the end of the
private objItemsArray. |
|
AddItemAt ( integer $intIndex, QListItem $objListItem ) |
Allows you to add a QListItem to this QListControl at a specific location in the current item array |
|
AddItems ( array $mixItemArray, mixed $mixSelectedValues = null, string $strItemGroup = null, string $strOverrideParameters = null ) |
Allows you to add an array of key/value pairs to the ListControl. Convenient especially for adding a list from a type table,
e.g. by passing in SomeType::$NameArray. The list of seleted values can either be an array of values, or just a single value. |
|
CountItems ( ) : integer |
Returns the count of items in this QListControl |
|
GetAllItems ( ) : QListItem[] |
This will return an array of ALL the QQListItems associated with this QListControl. |
|
GetItem ( $intIndex ) |
Gets the ListItem at a specific location in objItemsArray |
|
RemoveAllItems ( ) |
Removes all the items in objItemsArray |
|
RemoveItem ( $intIndex ) |
Removes a specific ListItem at a specific location in objItemsArray |
|
__get ( $strName ) |
|
|
__set ( $strName, $mixValue ) |
|
|