Welcome to the LimeSurvey Community Forum

Ask the community, share ideas, and connect with other LimeSurvey users!

Multiple question types in array modifiy

  • phpsurvey
  • phpsurvey's Avatar Topic Author
  • Offline
  • Junior Member
  • Junior Member
More
13 years 3 months ago - 13 years 3 months ago #53125 by phpsurvey
Replied by phpsurvey on topic Multiple question types in array modifiy
before I post this I tried it a lot of times :) realy


I want to add an extra array with a comment field under an normal radio array



Question group 1
1. First question is an normal radio array
2. Second question is one row: comment field + radio array

I think my javascript is wrong, but I don't know how I can make it:
Code:
<script type="text/javascript" charset="utf-8">
 
  $(document).ready(function() {
 
    /*********** 
    Display multiple questions side by side
    ***********/
 
    //////// Define question attributes for later use ////////
 
    // Give questions row specific attributes so we can easily manipulate them by row
         $('#question583,#question1145, #question1146').attr('name', 'qRow1');
 
 
    // Give questions column specific attributes so we can easily manipulate them by column
    // I know, not the correct use of "rel" attribute but...too bad!
    $('#question583').attr('rel', 'qCol1');
    $('#question1145').attr('rel', 'qCol2');
                $('#question1146').attr('rel', 'qCol3');
 
 
    //////// Survey layout manipulation ////////
 
    // Fix the width of the survey
    $( 'table.outerframe' ).css({
      'width': '900px'
    });
 
    // Wrap each row in a div
    // This is kinda verbose but IE won't let me use jQuery shortcuts
    var el = document.createElement('div');
    el.setAttribute('id','inlineWrapper1');
    document.body.appendChild(el);
    $('div[name="qRow1"]').wrapAll($('#inlineWrapper1'));
 
    el.setAttribute('id','inlineWrapper2');
    document.body.appendChild(el);
    $('div[name="qRow2"]').wrapAll($('#inlineWrapper2'));
 
    el.setAttribute('id','inlineWrapper3');
    document.body.appendChild(el);
    $('div[name="qRow3"]').wrapAll($('#inlineWrapper3'));
 
    el .setAttribute('id','inlineWrapper4');
    document.body.appendChild(el );
    $('div[name="qRow4"]').wrapAll($('#inlineWrapper4'));    
 
    // Style the wrapper divs
    $( '#inlineWrapper1, #inlineWrapper2' ).css({
      'width': '850px',
      'margin': '0 auto 0 auto',
      'clear': 'both'
    });
 
    // Get all the questions to sit politely side by side
    $( 'div[name="qRow1"], div[name="qRow2"]' ).css({
      'float': 'left'    
    });
 
    //////// Column manipulation ////////
 
    // Set the column widths - can be set individually if necessary
    // Must add up to less than 100%
    $( 'div[rel="qCol1"]' ).css({
      'width': '12%'
    });
    $( 'div[rel="qCol2"], div[rel="qCol3"]' ).css({
      'width': '30%'
    });
 
    //////// Question manipulation ////////
 
    // Hide the answer element in boilerplate questions
    $( 'div.boilerplate td.answer' ).parent().hide();
 
    // Hide the question text elements in non-boilerplate questions
    $('div.multiple-opt td.questiontext, div.text-short td.questiontext, div.list-dropdown td.questiontext, div.yes-no td.questiontext, div.numeric td.questiontext').parent().hide();
 
    // Push the question tables to 100%
    $( 'div[name="qRow1"] table, div[name="qRow2"] table' ).css({
      'width': '100%'
    });
 
    // Get everything to line up nicely vertically
    $( 'td.questiontext, td.answer p' ).css({
      'text-align': 'center'
    });
 
    // Adjust cell heights so everything lines up nicely horizontally
    $( 'td.answer, td.questiontext' ).css({
      'height':'35px'
    });
 
// Checkbox question styles
$( 'div.multiple-opt ul' ).css({
    'text-align': 'center',
    'font-size': '90%',
    'margin': '0',
});
$( 'div.multiple-opt ul li' ).css({
    'text-align': 'center',
});
 
    // Yes-no question styles
    $( 'div.yes-no ul' ).css({
      'text-align': 'center',
      'font-size': '90%',
      'margin': '0',
      'padding-bottom': '5px'
    });
    $( 'div.yes-no td.answer' ).css({
      'padding-bottom': '0'
    });
 
    // Short-text question styles
    $( 'div.text-short input' ).css({
      'width': '125px',
      'margin-left': '0'
    });
 
    // Numeric question styles
    $( 'div.numeric input' ).css({
      'width': '125px',
      'margin-left': '0'
    });
    $( 'div.numeric p.tip' ).css({
      'display': 'none'
    });
 
    // Get rid of the margins around select boxes  
    $( 'p.question' ).css({'margin':'0'});
 
    // Reduce the space caused by the question help table
    $( 'div[name="qRow1"], div[name="qRow2"]' ).css({
      'margin-bottom': '-8px'
    });  
 
  });
 
</script>
Last edit: 13 years 3 months ago by phpsurvey.
The topic has been locked.
  • phpsurvey
  • phpsurvey's Avatar Topic Author
  • Offline
  • Junior Member
  • Junior Member
More
13 years 3 months ago #53160 by phpsurvey
Replied by phpsurvey on topic Multiple question types in array modifiy
this is what I want to do:




seriously

div.array is not avaible

at docs.limesurvey.org/tiki-index.php?page=...g_questions_with_CSS

and I don't know how I can do it..
The topic has been locked.
  • tpartner
  • tpartner's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
13 years 3 months ago #53216 by tpartner
Replied by tpartner on topic Multiple question types in array modifiy
This should do the trick.

Create a short-text question and an array question with only one answer. Insert the following script in the source of one of them. Replace "11" (line 5) with the ID of the short-text and "22" (line 6) with the ID of the array you want inline.

Note that the styles inserted here only apply to the default template and you my need to adjust the padding in line 40 if any of your array labels wrap.
Code:
<script type="text/javascript" charset="utf-8">
 
    $(document).ready(function() {
 
        var qText = 11;       
        var qArray = 22;
 
        // Fix the width of the survey
        $( 'table.outerframe' ).css({'width': '900px'});
 
        // Wrap the 2 questions ina container div and style it
        $('#question'+qText+', #question'+qArray+'').wrapAll('<div class="inlineWrapper" />');
        $('.inlineWrapper').append('<div style="clear:both" />');
        $('.inlineWrapper').css({
            'width': '75%',
            'margin':'0 auto 10px auto',
            'background-color':'#FFFFFF'
        });
        $('.inlineWrapper *').css({
            'padding': '0',
            'margin':'0'
        });
 
        // Hide the question and the help text
        $('#question'+qText+' td.questiontext, #question'+qArray+' td.questiontext').parent().hide();
        $('#question'+qText+' > table:eq(1), #question'+qArray+' > table:eq(1)').hide();
        $('#question'+qText+' td.survey-question-help, #question'+qArray+' td.survey-question-help').parent().hide();
 
        //Hide the answer cell of the array
        $('#question'+qArray+' table.question thead tr').children(":first").hide();
        $('#question'+qArray+' table.question tbody tr').children(":first").hide();
        $('#question'+qArray+' col').attr('width', '');
 
        // Push all question tables to 100%
        $('#question'+qText+' table, #question'+qArray+' table').css({'width': '100%'});
 
        // Get the 2 questions to sit politely side by side
        $('#question'+qText+', #question'+qArray+'').css({'float':'left'});
        $('#question'+qText+'').css({'padding':'15px 0 5px 25px'});
        $('#question'+qText+'').css({'padding-top':'27px'}); // Adjust here for wrapped array labels
        $('#question'+qArray+'').css({'padding':'5px 0 10px 0'});
        $('#question'+qArray+' table.question td').css({'padding':'4px'});
        $('#question'+qText+' table:first').attr('align', 'left');
        $('#question'+qText+' label').css({
            'display':'inline', 
            'width':'auto', 
            'margin-right':'10px'
        });
 
        // Set the widths of the 2 questions
        $('#question'+qText+'').css({'width': '35%'});
        $('#question'+qArray+'').css({'width': '58%'});
 
    });
 
</script>


Cheers,
Tony Partner

Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.
The following user(s) said Thank You: phpsurvey
The topic has been locked.
  • phpsurvey
  • phpsurvey's Avatar Topic Author
  • Offline
  • Junior Member
  • Junior Member
More
13 years 3 months ago #53236 by phpsurvey
Replied by phpsurvey on topic Multiple question types in array modifiy
thank you tpartner
The topic has been locked.
  • Mazi
  • Mazi's Avatar
  • Offline
  • Official LimeSurvey Partner
  • Official LimeSurvey Partner
More
13 years 3 months ago #53270 by Mazi
Replied by Mazi on topic Multiple question types in array modifiy
You're welcome!

If our hints have been helpful and you enjoy limesurvey please consider a donation to the team .
We do all this in our free time and you don't have to pay a penny for this software.

Without your help we can't keep this project alive.

Best regards/Beste Grüße,
Dr. Marcel Minke
Need Help? We offer professional Limesurvey support: survey-consulting.com
Contact: marcel.minke(at)survey-consulting.com
The topic has been locked.
  • phpsurvey
  • phpsurvey's Avatar Topic Author
  • Offline
  • Junior Member
  • Junior Member
More
13 years 3 months ago - 13 years 3 months ago #53316 by phpsurvey
Replied by phpsurvey on topic Multiple question types in array modifiy
When I find a solution for my last problem I write an article about limesurvey with multiple question types in array in two languages, that nobody has the the barriers like me...:)

I have the same problem like: www.limesurvey.org/de/support/hilfe-fore...ernet-explorer#50103

tpartner wrote:

You have a span in your banner element that's not closed properly and the resulting HTML error may be messing up IE.

Code:
<h2><span style='font-size:26px;font-family:"Times New Roman"; color:#003366' >SocPiMu10</h2>


Okay I understand the error, but I don't know how I can fix it????
Last edit: 13 years 3 months ago by phpsurvey.
The topic has been locked.
  • tpartner
  • tpartner's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
13 years 3 months ago #53318 by tpartner
Replied by tpartner on topic Multiple question types in array modifiy
This particular error is solved by inserting a </span> before the </h2> tag:
Code:
<h2><span style='font-size:26px;font-family:"Times New Roman"; color:#003366' >SocPiMu10</span></h2>

Cheers,
Tony Partner

Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.
The topic has been locked.
  • phpsurvey
  • phpsurvey's Avatar Topic Author
  • Offline
  • Junior Member
  • Junior Member
More
13 years 3 months ago #53330 by phpsurvey
Replied by phpsurvey on topic Multiple question types in array modifiy
Sorry, but where should I insert the </span> before the </h2> tag and what means SocPiMu10 ?????

Please tell me the data or field where I can insert the tag.

I tried the Boilerplate question and set it in the tags, but this solved not the problem ???
The topic has been locked.
  • tpartner
  • tpartner's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
13 years 3 months ago #53352 by tpartner
Replied by tpartner on topic Multiple question types in array modifiy
I'm afraid I don't understand your problem. My previous post is simply a suggestion on how to fix that particular snippet of HTML.

Cheers,
Tony Partner

Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.
The topic has been locked.
  • phpsurvey
  • phpsurvey's Avatar Topic Author
  • Offline
  • Junior Member
  • Junior Member
More
13 years 3 months ago - 13 years 3 months ago #53356 by phpsurvey
Replied by phpsurvey on topic Multiple question types in array modifiy
sorry... you mean that there is anywhere a tag, that is not closed?? I thought that you mean accurately the <h2> tag. I searched for the h2 tag :)

Maybe I show you what I did and you could understand me:

1. I checked the source code of my Boilerplate questions where I insert your javascript code -> there were no open tags

2. I checked the template file -> no open tag

Thats all what I changed ????

So how can I fix it :dry: ?????



Here an extract from the html sourcecode
Code:
  <table class="question-wrapper">
    <tr>
      <td class="questiontext">
 
        <span class="asterisk"></span><span>Offer</span><br /><span class="questionhelp"></span>
 
 
      </td>
    </tr>
    <tr>
 
Last edit: 13 years 3 months ago by phpsurvey.
The topic has been locked.
  • tpartner
  • tpartner's Avatar
  • Offline
  • LimeSurvey Community Team
  • LimeSurvey Community Team
More
13 years 3 months ago #53366 by tpartner
Replied by tpartner on topic Multiple question types in array modifiy
The error (if there is one) could be anywhere in the source and I can't check that without seeing it live. Try the HTML Validator for Firefox .

Cheers,
Tony Partner

Solutions, code and workarounds presented in these forums are given without any warranty, implied or otherwise.
The topic has been locked.
  • phpsurvey
  • phpsurvey's Avatar Topic Author
  • Offline
  • Junior Member
  • Junior Member
More
13 years 3 months ago #53369 by phpsurvey
Replied by phpsurvey on topic Multiple question types in array modifiy
the result :blink: :
Code:
Result: 376 Fehler / 0 Warnungen
 
line 39 column 147 - Fehler: there is no attribute "autocomplete"
line 422 column 22 - Fehler: invalid comment declaration: found delimiter """ outside comment but inside comment declaration
line 391 column 18 - Info: comment declaration started here
line 423 column 19 - Fehler: there is no attribute "m:val"
line 423 column 26 - Fehler: element "m:smallFrac" undefined
line 424 column 12 - Fehler: element "m:dispDef" undefined
line 425 column 17 - Fehler: there is no attribute "m:val"
line 425 column 22 - Fehler: element "m:lMargin" undefined
line 426 column 17 - Fehler: there is no attribute "m:val"
line 426 column 22 - Fehler: element "m:rMargin" undefined
line 427 column 15 - Fehler: there is no attribute "m:val"
line 427 column 30 - Fehler: element "m:defJc" undefined
line 428 column 20 - Fehler: there is no attribute "m:val"
line 428 column 28 - Fehler: element "m:wrapIndent" undefined
line 429 column 16 - Fehler: there is no attribute "m:val"
line 429 column 26 - Fehler: element "m:intLim" undefined
line 430 column 17 - Fehler: there is no attribute "m:val"
line 430 column 27 - Fehler: element "m:naryLim" undefined
line 431 column 10 - Fehler: end tag for element "m:mathPr" which is not open
line 431 column 27 - Fehler: end tag for element "w:WordDocument" which is not open
line 432 column 5 - Fehler: end tag for element "xml" which is not open
line 432 column 9 - Fehler: "endif" is not a reserved name
line 705 column 26 - Fehler: there is no attribute "regular"
line 705 column 35 - Fehler: there is no attribute "bliss"
line 764 column 22 - Fehler: invalid comment declaration: found delimiter """ outside comment but inside comment declaration
line 733 column 18 - Info: comment declaration started here
line 765 column 26 - Fehler: element "m:smallFrac" undefined
line 766 column 12 - Fehler: element "m:dispDef" undefined
line 767 column 22 - Fehler: element "m:lMargin" undefined
line 768 column 22 - Fehler: element "m:rMargin" undefined
line 769 column 30 - Fehler: element "m:defJc" undefined
line 770 column 28 - Fehler: element "m:wrapIndent" undefined
line 771 column 26 - Fehler: element "m:intLim" undefined
line 772 column 27 - Fehler: element "m:naryLim" undefined
line 773 column 10 - Fehler: end tag for element "m:mathPr" which is not open
line 773 column 27 - Fehler: end tag for element "w:WordDocument" which is not open
line 774 column 5 - Fehler: end tag for element "xml" which is not open
line 774 column 9 - Fehler: "endif" is not a reserved name
line 1106 column 22 - Fehler: invalid comment declaration: found delimiter """ outside comment but inside comment declaration
line 1075 column 18 - Info: comment declaration started here
line 1107 column 26 - Fehler: element "m:smallFrac" undefined
line 1108 column 12 - Fehler: element "m:dispDef" undefined
line 1109 column 22 - Fehler: element "m:lMargin" undefined
line 1110 column 22 - Fehler: element "m:rMargin" undefined
line 1111 column 30 - Fehler: element "m:defJc" undefined
line 1112 column 28 - Fehler: element "m:wrapIndent" undefined
line 1113 column 26 - Fehler: element "m:intLim" undefined
line 1114 column 27 - Fehler: element "m:naryLim" undefined
line 1115 column 10 - Fehler: end tag for element "m:mathPr" which is not open
line 1115 column 27 - Fehler: end tag for element "w:WordDocument" which is not open
line 1116 column 5 - Fehler: end tag for element "xml" which is not open
line 1116 column 9 - Fehler: "endif" is not a reserved name
line 1449 column 22 - Fehler: invalid comment declaration: found delimiter """ outside comment but inside comment declaration
line 1418 column 18 - Info: comment declaration started here
line 1450 column 26 - Fehler: element "m:smallFrac" undefined
line 1451 column 12 - Fehler: element "m:dispDef" undefined
line 1452 column 22 - Fehler: element "m:lMargin" undefined
line 1453 column 22 - Fehler: element "m:rMargin" undefined
line 1454 column 30 - Fehler: element "m:defJc" undefined
line 1455 column 28 - Fehler: element "m:wrapIndent" undefined
line 1456 column 26 - Fehler: element "m:intLim" undefined
line 1457 column 27 - Fehler: element "m:naryLim" undefined
line 1458 column 10 - Fehler: end tag for element "m:mathPr" which is not open
line 1458 column 27 - Fehler: end tag for element "w:WordDocument" which is not open
line 1459 column 5 - Fehler: end tag for element "xml" which is not open
line 1459 column 9 - Fehler: "endif" is not a reserved name
line 1520 column 22 - Fehler: invalid comment declaration: found delimiter """ outside comment but inside comment declaration
line 1489 column 18 - Info: comment declaration started here
line 1521 column 26 - Fehler: element "m:smallFrac" undefined
line 1522 column 12 - Fehler: element "m:dispDef" undefined
line 1523 column 22 - Fehler: element "m:lMargin" undefined
line 1524 column 22 - Fehler: element "m:rMargin" undefined
line 1525 column 30 - Fehler: element "m:defJc" undefined
line 1526 column 28 - Fehler: element "m:wrapIndent" undefined
line 1527 column 26 - Fehler: element "m:intLim" undefined
line 1528 column 27 - Fehler: element "m:naryLim" undefined
line 1529 column 10 - Fehler: end tag for element "m:mathPr" which is not open
line 1529 column 27 - Fehler: end tag for element "w:WordDocument" which is not open
line 1530 column 5 - Fehler: end tag for element "xml" which is not open
line 1530 column 9 - Fehler: "endif" is not a reserved name
line 2014 column 22 - Fehler: invalid comment declaration: found delimiter """ outside comment but inside comment declaration
line 1983 column 18 - Info: comment declaration started here
line 2015 column 26 - Fehler: element "m:smallFrac" undefined
line 2016 column 12 - Fehler: element "m:dispDef" undefined
line 2017 column 22 - Fehler: element "m:lMargin" undefined
line 2018 column 22 - Fehler: element "m:rMargin" undefined
line 2019 column 30 - Fehler: element "m:defJc" undefined
line 2020 column 28 - Fehler: element "m:wrapIndent" undefined
line 2021 column 26 - Fehler: element "m:intLim" undefined
line 2022 column 27 - Fehler: element "m:naryLim" undefined
line 2023 column 10 - Fehler: end tag for element "m:mathPr" which is not open
line 2023 column 27 - Fehler: end tag for element "w:WordDocument" which is not open
line 2024 column 5 - Fehler: end tag for element "xml" which is not open
line 2024 column 9 - Fehler: "endif" is not a reserved name
line 2297 column 62 - Fehler: "Bliss" is not a member of a group specified for any attribute
line 2297 column 62 - Fehler: "2" is not a member of a group specified for any attribute
line 2297 column 71 - Fehler: an attribute value literal can occur in an attribute specification list only after a VI delimiter
line 2508 column 22 - Fehler: invalid comment declaration: found delimiter """ outside comment but inside comment declaration
line 2477 column 18 - Info: comment declaration started here
line 2509 column 26 - Fehler: element "m:smallFrac" undefined
line 2510 column 12 - Fehler: element "m:dispDef" undefined
line 2511 column 22 - Fehler: element "m:lMargin" undefined
line 2512 column 22 - Fehler: element "m:rMargin" undefined
line 2513 column 30 - Fehler: element "m:defJc" undefined
line 2514 column 28 - Fehler: element "m:wrapIndent" undefined
line 2515 column 26 - Fehler: element "m:intLim" undefined
line 2516 column 27 - Fehler: element "m:naryLim" undefined
line 2517 column 10 - Fehler: end tag for element "m:mathPr" which is not open
line 2517 column 27 - Fehler: end tag for element "w:WordDocument" which is not open
line 2518 column 5 - Fehler: end tag for element "xml" which is not open
line 2518 column 9 - Fehler: "endif" is not a reserved name
line 2791 column 62 - Fehler: "Bliss" is not a member of a group specified for any attribute
line 2791 column 62 - Fehler: "2" is not a member of a group specified for any attribute
line 2791 column 71 - Fehler: an attribute value literal can occur in an attribute specification list only after a VI delimiter
line 3002 column 22 - Fehler: invalid comment declaration: found delimiter """ outside comment but inside comment declaration
line 2971 column 18 - Info: comment declaration started here
line 3003 column 26 - Fehler: element "m:smallFrac" undefined
line 3004 column 12 - Fehler: element "m:dispDef" undefined
line 3005 column 22 - Fehler: element "m:lMargin" undefined
line 3006 column 22 - Fehler: element "m:rMargin" undefined
line 3007 column 30 - Fehler: element "m:defJc" undefined
line 3008 column 28 - Fehler: element "m:wrapIndent" undefined
line 3009 column 26 - Fehler: element "m:intLim" undefined
line 3010 column 27 - Fehler: element "m:naryLim" undefined
line 3011 column 10 - Fehler: end tag for element "m:mathPr" which is not open
line 3011 column 27 - Fehler: end tag for element "w:WordDocument" which is not open
line 3012 column 5 - Fehler: end tag for element "xml" which is not open
line 3012 column 9 - Fehler: "endif" is not a reserved name
line 3285 column 62 - Fehler: "Bliss" is not a member of a group specified for any attribute
line 3285 column 62 - Fehler: "2" is not a member of a group specified for any attribute
line 3285 column 71 - Fehler: an attribute value literal can occur in an attribute specification list only after a VI delimiter
line 3496 column 22 - Fehler: invalid comment declaration: found delimiter """ outside comment but inside comment declaration
line 3465 column 18 - Info: comment declaration started here
line 3497 column 26 - Fehler: element "m:smallFrac" undefined
line 3498 column 12 - Fehler: element "m:dispDef" undefined
line 3499 column 22 - Fehler: element "m:lMargin" undefined
line 3500 column 22 - Fehler: element "m:rMargin" undefined
line 3501 column 30 - Fehler: element "m:defJc" undefined
line 3502 column 28 - Fehler: element "m:wrapIndent" undefined
line 3503 column 26 - Fehler: element "m:intLim" undefined
line 3504 column 27 - Fehler: element "m:naryLim" undefined
line 3505 column 10 - Fehler: end tag for element "m:mathPr" which is not open
line 3505 column 27 - Fehler: end tag for element "w:WordDocument" which is not open
line 3506 column 5 - Fehler: end tag for element "xml" which is not open
line 3506 column 9 - Fehler: "endif" is not a reserved name
line 3779 column 62 - Fehler: "Bliss" is not a member of a group specified for any attribute
line 3779 column 62 - Fehler: "2" is not a member of a group specified for any attribute
line 3779 column 71 - Fehler: an attribute value literal can occur in an attribute specification list only after a VI delimiter
line 3990 column 22 - Fehler: invalid comment declaration: found delimiter """ outside comment but inside comment declaration
line 3959 column 18 - Info: comment declaration started here
line 3991 column 26 - Fehler: element "m:smallFrac" undefined
line 3992 column 12 - Fehler: element "m:dispDef" undefined
line 3993 column 22 - Fehler: element "m:lMargin" undefined
line 3994 column 22 - Fehler: element "m:rMargin" undefined
line 3995 column 30 - Fehler: element "m:defJc" undefined
line 3996 column 28 - Fehler: element "m:wrapIndent" undefined
line 3997 column 26 - Fehler: element "m:intLim" undefined
line 3998 column 27 - Fehler: element "m:naryLim" undefined
line 3999 column 10 - Fehler: end tag for element "m:mathPr" which is not open
line 3999 column 27 - Fehler: end tag for element "w:WordDocument" which is not open
line 4000 column 5 - Fehler: end tag for element "xml" which is not open
line 4000 column 9 - Fehler: "endif" is not a reserved name
line 4273 column 62 - Fehler: "Bliss" is not a member of a group specified for any attribute
line 4273 column 62 - Fehler: "2" is not a member of a group specified for any attribute
line 4273 column 71 - Fehler: an attribute value literal can occur in an attribute specification list only after a VI delimiter
line 4484 column 22 - Fehler: invalid comment declaration: found delimiter """ outside comment but inside comment declaration
line 4453 column 18 - Info: comment declaration started here
line 4485 column 26 - Fehler: element "m:smallFrac" undefined
line 4486 column 12 - Fehler: element "m:dispDef" undefined
line 4487 column 22 - Fehler: element "m:lMargin" undefined
line 4488 column 22 - Fehler: element "m:rMargin" undefined
line 4489 column 30 - Fehler: element "m:defJc" undefined
line 4490 column 28 - Fehler: element "m:wrapIndent" undefined
line 4491 column 26 - Fehler: element "m:intLim" undefined
line 4492 column 27 - Fehler: element "m:naryLim" undefined
line 4493 column 10 - Fehler: end tag for element "m:mathPr" which is not open
line 4493 column 27 - Fehler: end tag for element "w:WordDocument" which is not open
line 4494 column 5 - Fehler: end tag for element "xml" which is not open
line 4494 column 9 - Fehler: "endif" is not a reserved name
line 4750 column 155 - Fehler: "Bliss" is not a member of a group specified for any attribute
line 4750 column 155 - Fehler: "2" is not a member of a group specified for any attribute
line 4750 column 164 - Fehler: an attribute value literal can occur in an attribute specification list only after a VI delimiter
line 4753 column 7 - Fehler: end tag for "span" omitted, but OMITTAG NO was specified
line 4750 column 105 - Info: start tag was here
line 4961 column 22 - Fehler: invalid comment declaration: found delimiter """ outside comment but inside comment declaration
line 4930 column 18 - Info: comment declaration started here
line 4962 column 26 - Fehler: element "m:smallFrac" undefined
line 4963 column 12 - Fehler: element "m:dispDef" undefined
line 4964 column 22 - Fehler: element "m:lMargin" undefined
line 4965 column 22 - Fehler: element "m:rMargin" undefined
line 4966 column 30 - Fehler: element "m:defJc" undefined
line 4967 column 28 - Fehler: element "m:wrapIndent" undefined
line 4968 column 26 - Fehler: element "m:intLim" undefined
line 4969 column 27 - Fehler: element "m:naryLim" undefined
line 4970 column 10 - Fehler: end tag for element "m:mathPr" which is not open
line 4970 column 27 - Fehler: end tag for element "w:WordDocument" which is not open
line 4971 column 5 - Fehler: end tag for element "xml" which is not open
line 4971 column 9 - Fehler: "endif" is not a reserved name
line 5244 column 62 - Fehler: "Bliss" is not a member of a group specified for any attribute
line 5244 column 62 - Fehler: "2" is not a member of a group specified for any attribute
line 5244 column 71 - Fehler: an attribute value literal can occur in an attribute specification list only after a VI delimiter
line 5455 column 22 - Fehler: invalid comment declaration: found delimiter """ outside comment but inside comment declaration
line 5424 column 18 - Info: comment declaration started here
line 5456 column 26 - Fehler: element "m:smallFrac" undefined
line 5457 column 12 - Fehler: element "m:dispDef" undefined
line 5458 column 22 - Fehler: element "m:lMargin" undefined
line 5459 column 22 - Fehler: element "m:rMargin" undefined
line 5460 column 30 - Fehler: element "m:defJc" undefined
line 5461 column 28 - Fehler: element "m:wrapIndent" undefined
line 5462 column 26 - Fehler: element "m:intLim" undefined
line 5463 column 27 - Fehler: element "m:naryLim" undefined
line 5464 column 10 - Fehler: end tag for element "m:mathPr" which is not open
line 5464 column 27 - Fehler: end tag for element "w:WordDocument" which is not open
line 5465 column 5 - Fehler: end tag for element "xml" which is not open
line 5465 column 9 - Fehler: "endif" is not a reserved name
line 5738 column 62 - Fehler: "Bliss" is not a member of a group specified for any attribute
line 5738 column 62 - Fehler: "2" is not a member of a group specified for any attribute
line 5738 column 71 - Fehler: an attribute value literal can occur in an attribute specification list only after a VI delimiter
line 5949 column 22 - Fehler: invalid comment declaration: found delimiter """ outside comment but inside comment declaration
line 5918 column 18 - Info: comment declaration started here
line 5950 column 26 - Fehler: element "m:smallFrac" undefined
line 5951 column 12 - Fehler: element "m:dispDef" undefined
line 5952 column 22 - Fehler: element "m:lMargin" undefined
line 5953 column 22 - Fehler: element "m:rMargin" undefined
line 5954 column 30 - Fehler: element "m:defJc" undefined
line 5955 column 28 - Fehler: element "m:wrapIndent" undefined
line 5956 column 26 - Fehler: element "m:intLim" undefined
line 5957 column 27 - Fehler: element "m:naryLim" undefined
line 5958 column 10 - Fehler: end tag for element "m:mathPr" which is not open
line 5958 column 27 - Fehler: end tag for element "w:WordDocument" which is not open
line 5959 column 5 - Fehler: end tag for element "xml" which is not open
line 5959 column 9 - Fehler: "endif" is not a reserved name
line 6232 column 62 - Fehler: "Bliss" is not a member of a group specified for any attribute
line 6232 column 62 - Fehler: "2" is not a member of a group specified for any attribute
line 6232 column 71 - Fehler: an attribute value literal can occur in an attribute specification list only after a VI delimiter
line 6443 column 22 - Fehler: invalid comment declaration: found delimiter """ outside comment but inside comment declaration
line 6412 column 18 - Info: comment declaration started here
line 6444 column 26 - Fehler: element "m:smallFrac" undefined
line 6445 column 12 - Fehler: element "m:dispDef" undefined
line 6446 column 22 - Fehler: element "m:lMargin" undefined
line 6447 column 22 - Fehler: element "m:rMargin" undefined
line 6448 column 30 - Fehler: element "m:defJc" undefined
line 6449 column 28 - Fehler: element "m:wrapIndent" undefined
line 6450 column 26 - Fehler: element "m:intLim" undefined
line 6451 column 27 - Fehler: element "m:naryLim" undefined
line 6452 column 10 - Fehler: end tag for element "m:mathPr" which is not open
line 6452 column 27 - Fehler: end tag for element "w:WordDocument" which is not open
line 6453 column 5 - Fehler: end tag for element "xml" which is not open
line 6453 column 9 - Fehler: "endif" is not a reserved name
line 6726 column 62 - Fehler: "Bliss" is not a member of a group specified for any attribute
line 6726 column 62 - Fehler: "2" is not a member of a group specified for any attribute
line 6726 column 71 - Fehler: an attribute value literal can occur in an attribute specification list only after a VI delimiter
line 6937 column 22 - Fehler: invalid comment declaration: found delimiter """ outside comment but inside comment declaration
line 6906 column 18 - Info: comment declaration started here
line 6938 column 26 - Fehler: element "m:smallFrac" undefined
line 6939 column 12 - Fehler: element "m:dispDef" undefined
line 6940 column 22 - Fehler: element "m:lMargin" undefined
line 6941 column 22 - Fehler: element "m:rMargin" undefined
line 6942 column 30 - Fehler: element "m:defJc" undefined
line 6943 column 28 - Fehler: element "m:wrapIndent" undefined
line 6944 column 26 - Fehler: element "m:intLim" undefined
line 6945 column 27 - Fehler: element "m:naryLim" undefined
line 6946 column 10 - Fehler: end tag for element "m:mathPr" which is not open
line 6946 column 27 - Fehler: end tag for element "w:WordDocument" which is not open
line 6947 column 5 - Fehler: end tag for element "xml" which is not open
line 6947 column 9 - Fehler: "endif" is not a reserved name
line 7220 column 62 - Fehler: "Bliss" is not a member of a group specified for any attribute
line 7220 column 62 - Fehler: "2" is not a member of a group specified for any attribute
line 7220 column 71 - Fehler: an attribute value literal can occur in an attribute specification list only after a VI delimiter
line 7431 column 22 - Fehler: invalid comment declaration: found delimiter """ outside comment but inside comment declaration
line 7400 column 18 - Info: comment declaration started here
line 7432 column 26 - Fehler: element "m:smallFrac" undefined
line 7433 column 12 - Fehler: element "m:dispDef" undefined
line 7434 column 22 - Fehler: element "m:lMargin" undefined
line 7435 column 22 - Fehler: element "m:rMargin" undefined
line 7436 column 30 - Fehler: element "m:defJc" undefined
line 7437 column 28 - Fehler: element "m:wrapIndent" undefined
line 7438 column 26 - Fehler: element "m:intLim" undefined
line 7439 column 27 - Fehler: element "m:naryLim" undefined
line 7440 column 10 - Fehler: end tag for element "m:mathPr" which is not open
line 7440 column 27 - Fehler: end tag for element "w:WordDocument" which is not open
line 7441 column 5 - Fehler: end tag for element "xml" which is not open
line 7441 column 9 - Fehler: "endif" is not a reserved name
line 7714 column 62 - Fehler: "Bliss" is not a member of a group specified for any attribute
line 7714 column 62 - Fehler: "2" is not a member of a group specified for any attribute
line 7714 column 71 - Fehler: an attribute value literal can occur in an attribute specification list only after a VI delimiter
line 7925 column 22 - Fehler: invalid comment declaration: found delimiter """ outside comment but inside comment declaration
line 7894 column 18 - Info: comment declaration started here
line 7926 column 26 - Fehler: element "m:smallFrac" undefined
line 7927 column 12 - Fehler: element "m:dispDef" undefined
line 7928 column 22 - Fehler: element "m:lMargin" undefined
line 7929 column 22 - Fehler: element "m:rMargin" undefined
line 7930 column 30 - Fehler: element "m:defJc" undefined
line 7931 column 28 - Fehler: element "m:wrapIndent" undefined
line 7932 column 26 - Fehler: element "m:intLim" undefined
line 7933 column 27 - Fehler: element "m:naryLim" undefined
line 7934 column 10 - Fehler: end tag for element "m:mathPr" which is not open
line 7934 column 27 - Fehler: end tag for element "w:WordDocument" which is not open
line 7935 column 5 - Fehler: end tag for element "xml" which is not open
line 7935 column 9 - Fehler: "endif" is not a reserved name
line 8208 column 62 - Fehler: "Bliss" is not a member of a group specified for any attribute
line 8208 column 62 - Fehler: "2" is not a member of a group specified for any attribute
line 8208 column 71 - Fehler: an attribute value literal can occur in an attribute specification list only after a VI delimiter
line 8419 column 22 - Fehler: invalid comment declaration: found delimiter """ outside comment but inside comment declaration
line 8388 column 18 - Info: comment declaration started here
line 8420 column 26 - Fehler: element "m:smallFrac" undefined
line 8421 column 12 - Fehler: element "m:dispDef" undefined
line 8422 column 22 - Fehler: element "m:lMargin" undefined
line 8423 column 22 - Fehler: element "m:rMargin" undefined
line 8424 column 30 - Fehler: element "m:defJc" undefined
line 8425 column 28 - Fehler: element "m:wrapIndent" undefined
line 8426 column 26 - Fehler: element "m:intLim" undefined
line 8427 column 27 - Fehler: element "m:naryLim" undefined
line 8428 column 10 - Fehler: end tag for element "m:mathPr" which is not open
line 8428 column 27 - Fehler: end tag for element "w:WordDocument" which is not open
line 8429 column 5 - Fehler: end tag for element "xml" which is not open
line 8429 column 9 - Fehler: "endif" is not a reserved name
line 8702 column 62 - Fehler: "Bliss" is not a member of a group specified for any attribute
line 8702 column 62 - Fehler: "2" is not a member of a group specified for any attribute
line 8702 column 71 - Fehler: an attribute value literal can occur in an attribute specification list only after a VI delimiter
line 8913 column 22 - Fehler: invalid comment declaration: found delimiter """ outside comment but inside comment declaration
line 8882 column 18 - Info: comment declaration started here
line 8914 column 26 - Fehler: element "m:smallFrac" undefined
line 8915 column 12 - Fehler: element "m:dispDef" undefined
line 8916 column 22 - Fehler: element "m:lMargin" undefined
line 8917 column 22 - Fehler: element "m:rMargin" undefined
line 8918 column 30 - Fehler: element "m:defJc" undefined
line 8919 column 28 - Fehler: element "m:wrapIndent" undefined
line 8920 column 26 - Fehler: element "m:intLim" undefined
line 8921 column 27 - Fehler: element "m:naryLim" undefined
line 8922 column 10 - Fehler: end tag for element "m:mathPr" which is not open
line 8922 column 27 - Fehler: end tag for element "w:WordDocument" which is not open
line 8923 column 5 - Fehler: end tag for element "xml" which is not open
line 8923 column 9 - Fehler: "endif" is not a reserved name
line 9196 column 62 - Fehler: "Bliss" is not a member of a group specified for any attribute
line 9196 column 62 - Fehler: "2" is not a member of a group specified for any attribute
line 9196 column 71 - Fehler: an attribute value literal can occur in an attribute specification list only after a VI delimiter
line 9407 column 22 - Fehler: invalid comment declaration: found delimiter """ outside comment but inside comment declaration
line 9376 column 18 - Info: comment declaration started here
line 9408 column 26 - Fehler: element "m:smallFrac" undefined
line 9409 column 12 - Fehler: element "m:dispDef" undefined
line 9410 column 22 - Fehler: element "m:lMargin" undefined
line 9411 column 22 - Fehler: element "m:rMargin" undefined
line 9412 column 30 - Fehler: element "m:defJc" undefined
line 9413 column 28 - Fehler: element "m:wrapIndent" undefined
line 9414 column 26 - Fehler: element "m:intLim" undefined
line 9415 column 27 - Fehler: element "m:naryLim" undefined
line 9416 column 10 - Fehler: end tag for element "m:mathPr" which is not open
line 9416 column 27 - Fehler: end tag for element "w:WordDocument" which is not open
line 9417 column 5 - Fehler: end tag for element "xml" which is not open
line 9417 column 9 - Fehler: "endif" is not a reserved name
line 9690 column 62 - Fehler: "Bliss" is not a member of a group specified for any attribute
line 9690 column 62 - Fehler: "2" is not a member of a group specified for any attribute
line 9690 column 71 - Fehler: an attribute value literal can occur in an attribute specification list only after a VI delimiter
line 9901 column 22 - Fehler: invalid comment declaration: found delimiter """ outside comment but inside comment declaration
line 9870 column 18 - Info: comment declaration started here
line 9902 column 26 - Fehler: element "m:smallFrac" undefined
line 9903 column 12 - Fehler: element "m:dispDef" undefined
line 9904 column 22 - Fehler: element "m:lMargin" undefined
line 9905 column 22 - Fehler: element "m:rMargin" undefined
line 9906 column 30 - Fehler: element "m:defJc" undefined
line 9907 column 28 - Fehler: element "m:wrapIndent" undefined
line 9908 column 26 - Fehler: element "m:intLim" undefined
line 9909 column 27 - Fehler: element "m:naryLim" undefined
line 9910 column 10 - Fehler: end tag for element "m:mathPr" which is not open
line 9910 column 27 - Fehler: end tag for element "w:WordDocument" which is not open
line 9911 column 5 - Fehler: end tag for element "xml" which is not open
line 9911 column 9 - Fehler: "endif" is not a reserved name
line 10395 column 22 - Fehler: invalid comment declaration: found delimiter """ outside comment but inside comment declaration
line 10364 column 18 - Info: comment declaration started here
line 10396 column 26 - Fehler: element "m:smallFrac" undefined
line 10397 column 12 - Fehler: element "m:dispDef" undefined
line 10398 column 22 - Fehler: element "m:lMargin" undefined
line 10399 column 22 - Fehler: element "m:rMargin" undefined
line 10400 column 30 - Fehler: element "m:defJc" undefined
line 10401 column 28 - Fehler: element "m:wrapIndent" undefined
line 10402 column 26 - Fehler: element "m:intLim" undefined
line 10403 column 27 - Fehler: element "m:naryLim" undefined
line 10404 column 10 - Fehler: end tag for element "m:mathPr" which is not open
line 10404 column 27 - Fehler: end tag for element "w:WordDocument" which is not open
line 10405 column 5 - Fehler: end tag for element "xml" which is not open
line 10405 column 9 - Fehler: "endif" is not a reserved name
line 10678 column 62 - Fehler: "Bliss" is not a member of a group specified for any attribute
line 10678 column 62 - Fehler: "2" is not a member of a group specified for any attribute
line 10678 column 71 - Fehler: an attribute value literal can occur in an attribute specification list only after a VI delimiter
line 10889 column 22 - Fehler: invalid comment declaration: found delimiter """ outside comment but inside comment declaration
line 10858 column 18 - Info: comment declaration started here
line 10890 column 26 - Fehler: element "m:smallFrac" undefined
line 10891 column 12 - Fehler: element "m:dispDef" undefined
line 10892 column 22 - Fehler: element "m:lMargin" undefined
line 10893 column 22 - Fehler: element "m:rMargin" undefined
line 10894 column 30 - Fehler: element "m:defJc" undefined
line 10895 column 28 - Fehler: element "m:wrapIndent" undefined
line 10896 column 26 - Fehler: element "m:intLim" undefined
line 10897 column 27 - Fehler: element "m:naryLim" undefined
line 10898 column 10 - Fehler: end tag for element "m:mathPr" which is not open
line 10898 column 27 - Fehler: end tag for element "w:WordDocument" which is not open
line 10899 column 5 - Fehler: end tag for element "xml" which is not open
line 10899 column 9 - Fehler: "endif" is not a reserved name
line 11384 column 76 - Fehler: required attribute "alt" not specified
line 11384 column 82 - Fehler: end tag for "img" omitted, but OMITTAG NO was specified
line 11384 - Info: start tag was here
 
The topic has been locked.

Lime-years ahead

Online-surveys for every purse and purpose