I facing problem in opera while selecting multiple contacts on radgrid. While holding ctrl key it always opens new window/tab of ajaxMap. As on single click in radgrid; i am showing addresses of contacts on AjaxMap which is implemented in my page. And on multiple clicks on radgrid it shows multiple addresses of contacts on Ajaxmap. But in opera it opens ajaxMap in new window instead of showing contact address on Ajaxmap in same page where i implement it. Except opera it works fine in all browsers. But why i facing this issue in opera. Can anyone please help me.
8 Answers, 1 is accepted
0

Sahil
Top achievements
Rank 1
answered on 31 Oct 2012, 02:31 PM
Any one please help me to sort out this issue.
0
Hello Sahil,
Selecting of multiple items in this demo is working fine in Opera holding Ctrl key. So the problem must be something specific in your site. If you share your page we might find out why you are facing the issue.
Greetings,
Vasil
the Telerik team
Selecting of multiple items in this demo is working fine in Opera holding Ctrl key. So the problem must be something specific in your site. If you share your page we might find out why you are facing the issue.
Greetings,
Vasil
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0

Julius
Top achievements
Rank 1
answered on 07 Jan 2013, 07:31 AM
We have a web application that have a telerik radgrid with multiple selection using select column. We don't have a problem with other browsers except for opera. The select-all functionality is not working in opera, also, upon checking with your on-line demo, http://demos.telerik.com/aspnet-ajax/grid/examples/client/selecting/defaultcs.aspx, using opera browser, the select-all functionality selects all the records but it doesn't put a check-mark. Please advise on how we can resolve the issue with the opera browser.
Many Thanks.
Many Thanks.
0
Hello Julius,
The problem that you are observing seems to be in the RadFormDecorator. The checkboxes are checked by the grid's code, but their styles are not updated properly.
Our developers provided the JavaScript below as workaround for the checkbox decorated by the decorator. And the problem will be fixed in future release.
Regards,
Vasil
the Telerik team
The problem that you are observing seems to be in the RadFormDecorator. The checkboxes are checked by the grid's code, but their styles are not updated properly.
Our developers provided the JavaScript below as workaround for the checkbox decorated by the decorator. And the problem will be fixed in future release.
Sys.Application.add_load(
function
() {
var
fd = getFormDecorator();
var
element = $get(
"checkbox"
);
fd._overrideGetterSetter(element,
"checked"
, {
overrideSetter:
function
(value, originalSetter)
{
originalSetter.call(
this
, value);
Telerik.Web.UI.RadFormDecorator.prototype.set_elementChecked(
this
, value);
},
shouldUseCustomOverride:
function
(element)
{
return
false
;
}
});
});
function
getFormDecorator() {
return
$find(
"theFormDecorator"
); }
Regards,
Vasil
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0

Julius
Top achievements
Rank 1
answered on 09 Jan 2013, 05:15 AM
You are correct, upon checking with our web application, the checkboxes are checked, and the check mark appears after a post back. Unfortunately, what we intend to do is to show that checkboxes are checked after putting a check mark in the select all even without the post back. We applied the javascript that you provided, but still, it doesn't solve the problem. Please provide another work around that we can use to fix our problem.
Many Thanks.
Many Thanks.
0
Hi Julius,
This is a workaround for a single check box in your page. To resolve the issue you will need to apply it for each of the textboxes in the grid. You can use jQuery to get all the CheckBoxes in your page and to apply it. Another possible resolution is to remove the checkboes from the updated controls of your RadFormDecorator.
We will do our best to fix the issue for our next release, so you could upgrade when it is available after few weeks.
All the best,
Vasil
the Telerik team
This is a workaround for a single check box in your page. To resolve the issue you will need to apply it for each of the textboxes in the grid. You can use jQuery to get all the CheckBoxes in your page and to apply it. Another possible resolution is to remove the checkboes from the updated controls of your RadFormDecorator.
We will do our best to fix the issue for our next release, so you could upgrade when it is available after few weeks.
All the best,
Vasil
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0

Dan
Top achievements
Rank 1
answered on 22 Jan 2013, 06:23 AM
Hi,
We are having the same issue. When this release is expected?
Regards,
Dan
We are having the same issue. When this release is expected?
Regards,
Dan
0
Hello Dan,
Next release is scheduled for 20th of February and the public beta will be available in 30th of January.
Kind regards,
Vasil
the Telerik team
Next release is scheduled for 20th of February and the public beta will be available in 30th of January.
Kind regards,
Vasil
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.