Hi,
I am trying to upgrade an existing application from various very old versions of Telerik controls to the latest. I have the following Javascript function that gives me the "Object doesn't support this property or method".
I am trying to upgrade an existing application from various very old versions of Telerik controls to the latest. I have the following Javascript function that gives me the "Object doesn't support this property or method".
var combo = <%= RadComboBox1.ClientID %>; var userControlId = '<%= ID %>'; var selectionSetUrl = "../SelectionSets/NetworkSet.aspx"; var selectionSetType = '<%= Fox.Fbc.Rds.RdsWeb.Interfaces.SelectionSetTypeCode.NET.ToString() %>'; EditSelectionSetInModalDialogHelper(selectionSetUrl, selectionSetType, userControlId, combo.GetText()); According to the documentation GetText is supposed to be replaced with get_text. So, I replace the last line with this one:
EditSelectionSetInModalDialogHelper(selectionSetUrl, selectionSetType, userControlId, combo.get_text());And still get the same error.
Please help.
Thanks,
Olga