This question is locked. New answers and comments are not allowed.
Hello -
I am trying to fire a JavaScript function from my Silverlight Radchart. I currently have it firing an item command using this reference:
http://www.telerik.com/help/silverlight/radchart-features-interactivity.html
But now I would like it to run a JavaScript which will open a radwindow with a URL defined in this click event.
Is this possible? I did not see any specific documentation for this.
Ideally I would like to be able to call a JavaScript function similar to your AJAX Grid examples :
Thanks
I am trying to fire a JavaScript function from my Silverlight Radchart. I currently have it firing an item command using this reference:
http://www.telerik.com/help/silverlight/radchart-features-interactivity.html
But now I would like it to run a JavaScript which will open a radwindow with a URL defined in this click event.
Is this possible? I did not see any specific documentation for this.
Ideally I would like to be able to call a JavaScript function similar to your AJAX Grid examples :
String.Format("return ShowMyPopUp('{0}','{1}');", e.Item.OwnerTableView.DataKeyValues(e.Item.ItemIndex)("SomeIdentifier"), e.Item.ItemIndex)
Thanks