
Dave Schmid
Top achievements
Rank 1
Dave Schmid
asked on 05 Aug 2010, 09:57 AM
In http://www.telerik.com/help/aspnet-ajax/back-button-combo-selected-value.html you wrote "Until we find a fix for the problem ..". Since Q1 2010 SP1 i did not tried if its fixed. Is these bug fixed now or is it a feature?
4 Answers, 1 is accepted
0
Hi Dave Schmid,
We have not found a full solution for this common issue yet. We have it logged and once we come up with something concrete and complete we will fix the issue.
Kind regards,
Simon
the Telerik team
We have not found a full solution for this common issue yet. We have it logged and once we come up with something concrete and complete we will fix the issue.
Kind regards,
Simon
the Telerik team
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Public Issue Tracking
system and vote to affect the priority of the items
0

Jonathan
Top achievements
Rank 1
answered on 07 Aug 2010, 10:39 PM
I need this too just spent a couple of hours trying to figure out wierd numbers on a report based on the selcted value...
0

Jonathan
Top achievements
Rank 1
answered on 07 Aug 2010, 11:33 PM
Is there a way to do the redirect from the client when the button is clicked using javascript to create the URL on the fly from the selected value and opening a new blank tab (Target="_blank") rather than a server redirect?
My server code looks like:
Any help appreciated.
Thanks
Jonathan
My server code looks like:
protected void btnCreateReport_Click(object sender, EventArgs e)
{
string args = ddlSchoolMonth.SelectedValue.ToString();
Response.Redirect("ReportViewer.aspx?report=RptADASummary&args=" + args);
}
Any help appreciated.
Thanks
Jonathan
0
Hi Jonathan,
A convenient way to this is by defining the function, that will open the Window, with one parameter - args, e.g.
and register a script that calls this function in the Button's Click event handler, e.g.
I hope this helps.
Sincerely yours,
Simon
the Telerik team
A convenient way to this is by defining the function, that will open the Window, with one parameter - args, e.g.
function
openReportViewer(args) {
// Open Window with the appropriate URL.
}
and register a script that calls this function in the Button's Click event handler, e.g.
ClientScript.RegisterClientScriptBlock(
typeof
(Page),
"openReportViewer"
,
"openReportViewer('"
+ args +
"');"
,
true
);
I hope this helps.
Sincerely yours,
Simon
the Telerik team
Do you want to have your say when we set our development plans?
Do you want to know when a feature you care about is added or when a bug fixed?
Explore the
Telerik Public Issue Tracking
system and vote to affect the priority of the items