Subversion Repositories DevTools

Rev

Rev 6787 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 6787 Rev 6788
Line 94... Line 94...
94
                    {
94
                    {
95
                        tmpRow[tmpRow.length] = jQuery.trim(options.extraData[trCounter - 1]);
95
                        tmpRow[tmpRow.length] = jQuery.trim(options.extraData[trCounter - 1]);
96
                    }
96
                    }
97
                    if (jQuery(this).css('display') != 'none' || options.showHiddenRows) {
97
                    if (jQuery(this).css('display') != 'none' || options.showHiddenRows) {
98
                        if ( jQuery(this).data('csv') ) {
98
                        if ( jQuery(this).data('csv') ) {
99
                            tmpRow[tmpRow.length] = formatData(jQuery(this).data('etext'));
99
                            tmpRow[tmpRow.length] = formatData(jQuery(this).data('csv'));
100
                        }
-
 
101
                        else if ( jQuery.trim(jQuery(this).html()) == "" ) {
100
                        } else if ( jQuery.trim(jQuery(this).html()) == "" ) {
102
                            tmpRow[tmpRow.length] = formatData(options.emptyValue);
101
                            tmpRow[tmpRow.length] = formatData(options.emptyValue);
103
                        } else {
102
                        } else {
104
                            tmpRow[tmpRow.length] = jQuery.trim(formatData(jQuery(this).html()));
103
                            tmpRow[tmpRow.length] = jQuery.trim(formatData(jQuery(this).html()));
105
                        }
104
                        }
106
                    }
105
                    }