This question is locked. New answers and comments are not allowed.
We are automating a Silverlight application (using
UFT) which has some Telerik Custom Controls like, RadTreeView and RadGridView
in it. Since these controls are not getting recognized hence we are trying to
access the API of Telerik and expose the methods. However, we are not able to
get the callback function for both these controls (RadTreeView and
RadGridView). Can we please get the required methods and/or some documentation
around it.
In order to elaborate on this, please refer to the
below code which is written for Calender Control in .Net.
private void RaiseButtonClickEvent(Button button)
{
if (button != null)
{
RoutedEvent e = Button.ClickEvent;
RoutedEventArgs arg
= new RoutedEventArgs();
arg.RoutedEvent = e;
button.RaiseEvent(arg);
}
}
Code in BOLD above is where the help is required. As
we require similar type of methods in Telerik. Also, mentioning a link which
will give further details to what we are trying to do.
http://www.azar-tech.com/xmls/documents/qtp/11/WpfSlvExtensibility.pdf
UFT) which has some Telerik Custom Controls like, RadTreeView and RadGridView
in it. Since these controls are not getting recognized hence we are trying to
access the API of Telerik and expose the methods. However, we are not able to
get the callback function for both these controls (RadTreeView and
RadGridView). Can we please get the required methods and/or some documentation
around it.
In order to elaborate on this, please refer to the
below code which is written for Calender Control in .Net.
private void RaiseButtonClickEvent(Button button)
{
if (button != null)
{
RoutedEvent e = Button.ClickEvent;
RoutedEventArgs arg
= new RoutedEventArgs();
arg.RoutedEvent = e;
button.RaiseEvent(arg);
}
}
Code in BOLD above is where the help is required. As
we require similar type of methods in Telerik. Also, mentioning a link which
will give further details to what we are trying to do.
http://www.azar-tech.com/xmls/documents/qtp/11/WpfSlvExtensibility.pdf