Version

LoadClientCollectionsTransactionList Method (DropDownBot)

A.T. 11 / 09/ 2009 we need this so that items state is loaded before the properties so that SelectedItemIndex is set to the correct item. Why? because the new implementation for SelectedItemIndex's getter will basically loop through the items and return the first selected item. If item's state is not updated, we will end up returning the old selection ASP DropDownList and ListControl are functioning in the same way (i.e. looping through items) this enables us to return the correct selected index, when selection is just set by setting the Selected property of any item.
Syntax
'Declaration
 
Protected Overrides Sub LoadClientCollectionsTransactionList( _
   ByVal collections() As Object _
) 
protected override void LoadClientCollectionsTransactionList( 
   object[] collections
)

Parameters

collections
Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also