D
D
DenimTornado2014-12-03 02:27:54
openoffice
DenimTornado, 2014-12-03 02:27:54

How to transform a table in OpenOffice Calc?

Hello, there is a large table for several tens of thousands of lines with a clear structure. How to transform it?
547e4a8e0077913669910dde.png?Expires=141
That is, I need to build vertically from a horizontal column into 1 column.
Thanks in advance!

Answer the question

In order to leave comments, you need to log in

4 answer(s)
D
DenimTornado, 2014-12-03
@DenimTornado

Copy-paste in sublime will save the father of Russian democracy, but the Toaster is no longer a cake. Eh.

S
Stepanya, 2017-03-22
@Wekeed

because

$('.field_email').val()
returned undefined

J
justdealman, 2017-03-22
@justdealman

$('.field__email').blur(function() {
    $(this).removeClass('form__error form__accept');
    var nameLngth = $(this).val().length;
    if(nameLngth <= 1){
        $('.field__email').addClass('form__error');
    } else {
        $('.field__email').addClass('form__accept');
    }
});

M
Maxim Kuzmin, 2017-03-22
@KuzMaxxx

Because the expression $('.field__email').val()returns 'undefined'. This is because there is no such element with class 'field_email' because you removed all classes from elements with class 'field__email' in the line above. Most likely, this code will work:

$('.field__email').blur(function(){
    var field = $('.field__email');
    field.removeClass();
    var nameLngth = field.val().length;
    if(nameLngth <= 1){
        field.addClass('.form__error');
    } else {
        field.addClass('.form__accept');
    }
});

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question