When SingleClick="Button" in a toolbar, buttons with NavigateURl and target="blank" no longer appear to work.
1 Answer, 1 is accepted
0
Peter Milchev
Telerik team
answered on 25 May 2016, 01:00 PM
Hello Albert,
Unfortunately, we have to confirm that this is an issue in the RadToolBar. I have forwarded the report to our developers to fix it for the upcoming versions of the product. You could follow the progress of the bug fixing here in the Feedback Portal.
One option as a temporary workaround is navigating with JavaScript to the desired page in the OnClientButtonClicking event handler. Here is a sample implementation of the event handler:
function onClientButtonClickingHandler(sender, args) {
var button = args.get_item();
if (sender._singleClick != 0 && button.get_navigateUrl()) {