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

Is the Bug "Back Button and SelectedValue" fixed?

4 Answers 62 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
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

Sort by
0
Simon
Telerik team
answered on 05 Aug 2010, 03:04 PM
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
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:
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
Simon
Telerik team
answered on 12 Aug 2010, 12:05 PM
Hi Jonathan,

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
Tags
ComboBox
Asked by
Dave Schmid
Top achievements
Rank 1
Answers by
Simon
Telerik team
Jonathan
Top achievements
Rank 1
Share this question
or