Nikolay S.
Nikolay S.
django== 1.11
It can be fixed by checking for unicode? ``` if not isinstance(value, unicode) and value: ... ``` That is not a good solution, because it seems that imagefield is empty.
Could be solved by adding below function in "DropFileWidget" ``` def value_from_datadict(self, data, files, name): """ Given a dictionary of data and this widget's name, return the value of this...
> Mm, yep, if field is present in the layout, it rendered in the desired by layout place, and the hidden form fields rendered separately. > > I'm not sure...
So no error in console or anywhere else. Textarea is not displayed, no tinymce wrapper added.
Yes, the problem only occurs in internet explorer and only when I use renamed tinymce.js. Actually the problem has nothing to do with `ManifestStaticFilesStorage`.
I think for current projects, we can use NATIVE(input) by adding this in `mounted()`. With NATIVE binding groups also trigger but not when item is removed then we can use...
Hi @rmitsch, **spacy-llm-config.cfg**: ``` [paths] examples = "./assets/examples.json" template = "./assets/prompt_template.txt/" [nlp] lang = "en" pipeline = ["llm"] [components] [components.llm] factory = "llm" save_io = true [components.llm.task] @llm_tasks = "spacy.NER.v3"...
You can also add `setup` option to **`TINYMCE_DEFAULT_CONFIG`**. The below code: ``` setup: function (editor) { editor.on('change', function () { editor.save(); }); } ``` **TINYMCE_DEFAULT_CONFIG** looks than like: ``` TINYMCE_DEFAULT_CONFIG...
Hi @acdha , @cclauss , Could you please review my pull request for Django-Haystack? It addresses issue #1992. Thanks