File export options and data is not getting displayed
File export options and data is not getting displayed
j_kathiresan
Posts: 14Questions: 4Answers: 0
Hi,
Below is the constructed html with sample data. File export options as well as data is not getting displayed.
Please kindly let me know how to fix it.
Thanks.
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
It seems the problem is with the self closing tags you have. For example:
<script src="https://code.jquery.com/jquery-1.12.4.js"/>
Should be:
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
Processing of your scripts is stopping here. You can see that if you watch the network tab of your developer tools. You can also run your HTML through the WC3 Validator to check for errors in your page.
Kevin
Thanks a lot, Kevin once again...Why that self closing tag is an issue? Usually it works pretty well in html. I am asking out of curiosity.
According to these docs, omitting the end tag is not allowed:
https://developer.mozilla.org/en-US/docs/Web/HTML/Element/script
https://html.spec.whatwg.org/multipage/scripting.html#the-script-element
Kevin