Unfortunately I am a Jack Of All Code and Master of None.... This problem has surpassed my abilities and searches do not respond with anything close to my issue.
I have coded a page that takes a source listbox that is populated with available options and a partner listbox to pass the selected options to. I've stripped the page down to just the list boxes and manually entered items. I am developing on a Windows 10 laptop, testing on a Windows 2008 R2 server, and deploying to a Windows 2012 R2 server. The listbox renders correctly in development and testing. When published to the production server it is drawn but it does not respond to clicks of the list items.
I created a test site on the production server and the page worked as expected. This test site was <servername>.<domainname>.com:1180. I found that when I altered this test site to <alias hostname>.<domainname>.com:1180 the listbox failed again. Thinking this may be a security issue in Windows 2012 I added the alias to the SETSPN list for the local machine. This did not resolve the issue.
Is this a security issue in Windows 2012? I do have other Telerik controls working on this production server without issue.
Thanks in advance for any help or support.
<tr> <td style="vertical-align:top"> <asp:Label ID="lblSource" runat="server" Text="Available Locations:"></asp:Label><br /> <telerik:RadListBox ID="lbSource" runat="server" AllowTransfer="True" AllowTransferOnDoubleClick="true" TransferToID="lbTarget" Width="250" Height="350"> <ButtonSettings TransferButtons="All" /> <Items> <telerik:RadListBoxItem runat="server" Text="Test Item" Value="0" /> </Items> </telerik:RadListBox> </td> <td style="vertical-align:top"> <asp:Label ID="lblTarget" runat="server" Text="Selected Locations:"></asp:Label><br /> <telerik:RadListBox ID="lbTarget" runat="server" AllowTransferOnDoubleClick="true" TransferToID="lbSource" Width="250" Height="350"> <ButtonSettings TransferButtons="Common" /> <Items> <telerik:RadListBoxItem runat="server" Text="Test Item" Value="100" Height="85%" /> </Items> </telerik:RadListBox> </td> </tr>