Hi,
Anyone have an idea on /seen this issue:
I have two projects, one is an ASP.NET website, the other an ASP.NET application. Both have essentially the same code to create a multi selection drop down. However, whist the .NET application shows the dropdown box, I cannot refer to it from the code behind. For example:
<syncfusion:MultiSelectionDropDown ClientSideOnBeforePopupShow="OnBeforePopup()" ClientSideOnClosePopup="OnClosePopup()" ClientSideOnItemCheckChanged="OnItemChecked(this)" ClientSideOnPopupShown="OnPopup()" ClientSideOnTextChanged="OnTextChange(this)" ID="MultiSelectionDropDown1" runat="server" Width="383px" Font-Size="12px" Font-Names="Trebuchet MS" AutoFormat="Office2007 Blue">
Using this.MultiselectionDropDown1 in the .cs code behind results in error:
Error 46 'INZ.UI.Email' does not contain a definition for 'MultiSelectionDropDown1' and no extension method 'MultiSelectionDropDown1' accepting a first argument of type 'INZ.UI.Email' could be found (are you missing a using directive or an assembly reference?)
The exact same code works without issue in the .NET website.
Any "standard" asp.net items can be referred to, as expected. For example: this.Label1.Text = "test";
It appears to be an issue specific to the MultiSelectionDropDown element?
Any ideas?
Many thanks!