Editor - Latest Version
Editor - Latest Version
CMEDev
Posts: 6Questions: 1Answers: 0
When you buy the full package of editor does it come with a non-minified version? I'm unable to tell if this product will work for us because we are getting an error in the min code with editor:
TypeError: dt((W4 + s6) + y0a)[0] is undefined.
Is there an non-minified version we can test?
This question has accepted answers - jump to:
This discussion has been closed.
Answers
This happens when you try clicking on a cell.
Yes. The licensed version includes the source as well as a minified version. The trial is obfuscated and debugging it isn't the easiest thing as you are seeing!
Can you show me the page and I might be able to spot what is going wrong. Possibly a table id that doesn't match?
Allan
dataTables.editor.js:5681 Uncaught TypeError: Cannot read property 'oFeatures' of undefined
This is the error we are getting. Unfortunately, right now I can't give you the site because it is password protected.
Can you show me the code you are using to initialise DataTables and Editor please?
Thanks,
Allan
I am pre-rendering the table with php loops.
Looks like Allan was on track with the issue. You are initializing the Editor with this
table: "#example",
but your Datatables init is using thisvar table = $('#regulations').DataTable( {
.Do you have a table called example?
Kevin
Woops, stupid mistake! Thanks guys.