﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
11302	ACF not working at all	santaclaus21		"I'm trying to use ACF. But it's not working for me at all. I was trying to use many configurations even from sample ""datafiltering.html"", but it has worked for me only aprox 1 for 100 times trying. But it's not working at the moment.

I don't know what I'm doing wrong. 

Simple, I've got some plugins loaded (custom 4.3.1) and I'm tring to use:

a) firstly: (config.js) config.allowedContent = 'p';

then:

function podmienEditor(ec)
{
	if ( editor )
		return;
  
  var box = document.getElementById( 'opis_' + ec );
  if (box) {
    var html = box.innerHTML;
  	editor = CKEDITOR.replace( 'opis_' + ec , {} );  
    }
}
``

I'm going to source edit, and I'm writing ""<span style=""font-size: 10px;"">bla bla bla</span>, switch to normal mode - nothing.
One time when I've clicked arrow on keyboard, span was removed. But it was working only 1 time and it's not working for now. Also, I've pasted some tables from MS Word - nothing. No one tag wasn't removed.

So I think, maybe plugins are replacing configuration, I've tried also call config when CKE is running:

function podmienEditor(ec)
{
	if ( editor )
		return;
  
  var box = document.getElementById( 'opis_' + ec );
  if (box) {
    var html = box.innerHTML;
  	editor = CKEDITOR.replace( 'opis_' + ec , {
				allowedContent: 'p'
			} );  
    }
}

nothing... What I'm doing wrong ???"	Bug	closed	Normal		Core : Output Data	4.3.1	invalid		
