Constructs the navigation datasource for the combo box.

Namespace: MonoSoftware.MonoX.BusinessLayer
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
public virtual Dictionary<string, string> GetNavigationComboDataSource(
	string emptyText,
	string emptyValue
)
Visual Basic
Public Overridable Function GetNavigationComboDataSource ( 
	emptyText As String,
	emptyValue As String
) As Dictionary(Of String, String)
Visual C++
public:
virtual Dictionary<String^, String^>^ GetNavigationComboDataSource(
	String^ emptyText, 
	String^ emptyValue
)
F#
abstract GetNavigationComboDataSource : 
        emptyText : string * 
        emptyValue : string -> Dictionary<string, string> 
override GetNavigationComboDataSource : 
        emptyText : string * 
        emptyValue : string -> Dictionary<string, string> 

Parameters

emptyText
Type: System..::..String
Text that will be displayed when the combobox is empty.
emptyValue
Type: System..::..String
Value that will be returned when the combobox is empty.

Return Value

Type: Dictionary<(Of <(<'String, String>)>)>

Implements

IPageBLL..::..GetNavigationComboDataSource(String, String)

See Also