Completed
Last Updated: 31 Oct 2019 11:47 by ADMIN
Release R3 2019 SP1
Telerik Admin
Created on: 07 Jun 2019 07:11
Category: FormDecorator
Type: Bug Report
3
Missing checkboxes and radio buttons in Firefox 65+
 FireFox 65 again changed its behavior and breaks the behavior of our 2019 R1 SP1 release., introducing a fix for the following bug:



If you are using the controls from 2019 R1 SP1 or later, you can use the following workaround in order to make the input elements visible until we include the fix internally:

<style> .t-ff input[type=checkbox].rfdRealInput, .t-ff input[type=radio].rfdRealInput { position: static; } </style>


2 comments
ADMIN
Peter Milchev
Posted on: 04 Oct 2019 14:00

Hello Guys,

For the latest version, the following script seems to fix the issue with the missing checkboxes/radiobuttons.

Please place the following script under the ScriptManager on the page, and if there are any issues remaining, share them so that we can address them.

Telerik.Web.UI.FormDecorator.ClassicDomDecorator.prototype.shouldDecorateRadioButtonsAndCheckBoxes = function () {
    var browser = Telerik.Web.Browser;
    return !(browser.webkit || browser.edge || browser.ff);
}

Regards,
Peter Milchev
Progress Telerik

Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
Luc
Posted on: 23 Sep 2019 11:10
also for the latest R3 release ...