The NavigationDataSource to use for any command changes that would be done by the user. This propery should only be used in conjunction with the DataSource property. This property should not be used in conjunction the DataSourceID property.

Namespace:  Endeca.Web.UI.WebControls
Assembly:  Endeca.Web.UI.WebControls (in Endeca.Web.UI.WebControls.dll) Version: 2.1.3.0 (2.1.3.622)

Syntax

C#
public string NavigationDataSourceID { get; set; }
Visual Basic (Declaration)
Public Property NavigationDataSourceID As String
Visual C++
public:
property String^ NavigationDataSourceID {
	String^ get ();
	void set (String^ value);
}

Remarks

The two ways of binding data into this control are: 1. The common use case. Set a NavigationDataSource's ID in the DataSourceID property. 2. If you want to use an alternative data source outside of the main data source. For example you may have run your own command and want to use the results from that command, but you want user interaction to affect the command in the main data source. You would use the DataSource property and the NavigationDataSourceID property together to set the data to render, and the DataSourceID to be modified user interactions.

See Also