This question is locked. New answers and comments are not allowed.
I am using $.telerik.formatString in the following manner:
It appears that if the selectedText substituted for .groupName has a space in it, groupName is being sent with just the characters before the first space. The rest of the string is cut off. I know that selectedText is correct as I see the full string in the alert. I am thinking maybe it is in the way I am using $.telerik.formatString, but I couldn't find any documentation on how to use it, just different examples in the forum.
Your help is very much appreciated.
Thank you,
Donna
urlFormat = '<%= HttpUtility.UrlDecode(Url.Action("EditReportGroup", "Report", New With { .id = "{0}", .groupName = "{1}" } )) %>'; specificUrl = $.telerik.formatString(urlFormat, selectedValue, selectedText); alert(selectedValue + " " + selectedText); $("#reportindexright").load(specificUrl);It appears that if the selectedText substituted for .groupName has a space in it, groupName is being sent with just the characters before the first space. The rest of the string is cut off. I know that selectedText is correct as I see the full string in the alert. I am thinking maybe it is in the way I am using $.telerik.formatString, but I couldn't find any documentation on how to use it, just different examples in the forum.
Your help is very much appreciated.
Thank you,
Donna