Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1390
Disabling all texteditor styling.
posted

Hi, I have upgraded from 11.2 to the current service released and realised that all my text editor controls have aditional styling applied. Is there any way that I can disable all the styling being applied to the text editors.

I hace tried the following:

$("[data-datatype=Currency]").each(function () {
		var $this = $(this);
		var disabled = $this.attr("disabled");
		$this.igCurrencyEditor({
			theme: "",
			renderInContainer: true,
			valueChanged: function () {
				eval($this.attr("onchange"));
			}
		});
		$this.removeClass();
		$this.parent().removeClass();
		$this.attr("disabled", disabled);
	});

But the you are stuck with the focus and hover styling that gets applied via script.

Thanks in advanced

Regards Christoff

 

Parents Reply Children