This is a migrated thread and some comments may be shown as answers.

RadComboBox JScript Error

1 Answer 25 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
Andreas
Top achievements
Rank 1
Andreas asked on 17 Nov 2008, 01:06 AM
Hello,

I tried to implement multiple combobox. But I got an error:

Microsoft JScript runtime error: Object doesn't support this property or method

function LoadChild(combo,eventargs)

 

var item = eventargs.get_item();  <-- error occured here.

 

 

 


Anyone has any ideas/ solution that can help?

Thanks,

Andreas 

 


1 Answer, 1 is accepted

Sort by
0
Rosi
Telerik team
answered on 17 Nov 2008, 06:37 AM
Hello Andreas,

I suspect that you use RadComboBox for ASP.NET. The code that you use is supported from RadComboBox for ASP.NET AJAX(part of Telerik.Web.UI dll). I suggest you edit your code by the following code:

function LoadChild(item)  
var item = item;  
 

Also I suggest you read our help article RadComboBox Client Object Model.

Regards,
Rosi
the Telerik team

Check out Telerik Trainer, the state of the art learning tool for Telerik products.
Tags
ComboBox
Asked by
Andreas
Top achievements
Rank 1
Answers by
Rosi
Telerik team
Share this question
or