Hello
We are in a process of migrating our websites from using Infragistics controls and are in the process of trying Telerik web controls.
As part of this testing, I am stuck at using RadTabStrip functionality.
We have a page1.aspx page with search button and several input parameters. The clientside click event of this search button calls a function
cmdSearch()
{
.....
tab.setTargetUrl(sDestURL);
...
}
where the first tabs targetUrl is set to page2.aspx and the call is auto redirected to Page_load of page2.aspx and eventually the database call.
page2.aspx has a datagrid which is databound based upon the parameters passed as query string in sDestURL.
I am trying to replicated same functionality on clientside using telerik but failing.
When I try
selectedTab.set_target(sDestURL);
or
selected.set_NavigateUrl(sDestURL);
it does not redirect to page2.aspx, hence no grid populated.
What am I doing wrong and how do I fix this.
Any help will be deeply appreicated as I have spent enough time trying to figure this out.
Thanks much in advance.