Import CSV not working...

Import CSV not working...

bfarkasbfarkas Posts: 181Questions: 48Answers: 0

Hi,
I have built several working setups that use the import CSV setup and they work as expected.
My latest I did everything the same and it does not work. I load a file and then nothing happens. There are no errors reported so tough to trace down. Any Ideas?
Here is a link to alive page https://newyorklife.acms.com/p16hfoeo3enq/

This question has an accepted answers - jump to answer

Answers

  • bfarkasbfarkas Posts: 181Questions: 48Answers: 0

    Hmm, thinking it may be tied to the foundation styling, still working on pinpointing though.

  • allanallan Posts: 61,650Questions: 1Answers: 10,094 Site admin
    Answer ✓

    Hi,

    You are right - there is an error in our Foundation styling for when switching between Editor instance. Try replacing the contents of your editor.foundation.min.js file with:

    /*! Foundation integration for DataTables' Editor
     * ©2015 SpryMedia Ltd - datatables.net/license
     */
    
    (function( factory ){
        if ( typeof define === 'function' && define.amd ) {
            // AMD
            define( ['jquery', 'datatables.net-zf', 'datatables.net-editor'], function ( $ ) {
                return factory( $, window, document );
            } );
        }
        else if ( typeof exports === 'object' ) {
            // CommonJS
            module.exports = function (root, $) {
                if ( ! root ) {
                    root = window;
                }
    
                if ( ! $ || ! $.fn.dataTable ) {
                    $ = require('datatables.net-zf')(root, $).$;
                }
    
                if ( ! $.fn.dataTable.Editor ) {
                    require('datatables.net-editor')(root, $);
                }
    
                return factory( $, root, root.document );
            };
        }
        else {
            // Browser
            factory( jQuery, window, document );
        }
    }(function( $, window, document, undefined ) {
    'use strict';
    var DataTable = $.fn.dataTable;
    
    
    /*
     * Set the default display controller to be our foundation control 
     */
    DataTable.Editor.defaults.display = "foundation";
    
    
    /*
     * Change the default classes from Editor to be classes for Foundation
     */
    $.extend( true, $.fn.dataTable.Editor.classes, {
        field: {
            wrapper:         "DTE_Field row",
            label:           "small-4 columns inline",
            input:           "small-8 columns",
            error:           "error",
            multiValue:      "panel radius multi-value",
            multiInfo:       "small",
            multiRestore:    "panel radius multi-restore",
            "msg-labelInfo": "label secondary",
            "msg-info":      "label secondary",
            "msg-message":   "label secondary",
            "msg-error":     "label alert"
        },
        form: {
            button:  "button small",
            buttonInternal:  "button small"
        }
    } );
    
    
    /*
     * Foundation display controller - this is effectively a proxy to the Foundation
     * modal control.
     */
    var self;
    
    DataTable.Editor.display.foundation = $.extend( true, {}, DataTable.Editor.models.displayController, {
        /*
         * API methods
         */
        "init": function ( dte ) {
            self._dom.content = $(
                '<div class="reveal reveal-modal DTED" data-reveal></div>'
            );
            self._dom.close = $('<button class="close close-button">&times;</div>')
                .attr('title', dte.i18n.close);
    
            self._dom.close.click( function () {
                self._dte.close('icon');
            } );
    
            return self;
        },
    
        "open": function ( dte, append, callback ) {
            if ( self._shown ) {
                if ( callback ) {
                    callback();
                }
                return;
            }
    
            self._dte = dte;
            self._shown = true;
    
            var content = self._dom.content;
            content.children().detach();
            content.append( append );
            content.prepend( self._dom.close );
            console.log('appended', $(append).html());
    
            $(self._dom.content)
                .one('open.zf.reveal', function () {
                    if ( callback ) {
                        callback();
                    }
                })
                .one('closed.zf.reveal', function () {
                    self._shown = false;
                });
    
            if ( window.Foundation && window.Foundation.Reveal ) {
                // Foundation 6
                self._reveal = new window.Foundation.Reveal( self._dom.content, {
                    closeOnClick: false
                } );
    
                self._reveal.open();
            }
            else {
                // Foundation 5
                $(self._dom.content).foundation( 'reveal','open' );
            }
    
            $(document).on('click.dte-zf', 'div.reveal-modal-bg, div.reveal-overlay', function (e) {
                if ( $(e.target).closest(self._dom.content).length ) {
                    return;
                }
                self._dte.background();
            } );
        },
    
        "close": function ( dte, callback ) {
            if ( !self._shown ) {
                if ( callback ) {
                    callback();
                }
                return;
            }
    
            if ( self._reveal ) {
                self._reveal.close();
            }
            else {
                $(self._dom.content).foundation( 'reveal', 'close' );
            }
    
            $(document).off( 'click.dte-zf' );
    
            self._dte = dte;
            self._shown = false;
    
            if ( callback ) {
                callback();
            }
        },
    
        node: function ( dte ) {
            return self._dom.content[0];
        },
    
    
        /*
         * Private properties
         */
         "_shown": false,
        "_dte": null,
        "_dom": {}
    } );
    
    self = DataTable.Editor.display.foundation;
    
    
    return DataTable.Editor;
    }));
    

    Allan

  • bfarkasbfarkas Posts: 181Questions: 48Answers: 0

    Yup, that seemed to resolve it, thanks Allan!

This discussion has been closed.