flask pandas to tabulator tables are all messed up
I'm a new Dev , trying to pass Pandas DataFram to Tabulator , it works but the table is so messed up
original file :
original file in excel
without tabulator :
to_html() render result
it renders fine as html but once i attach Tabulator to it everything is messed up .
after tabulator:
after attaching tabulator to it using ID
the way i install it was copying and pasting all files in Dist to my app folder JS files in the JS folder and all CSS files in CSS folder
in HTML head :
<link href="{{ url_for ('static', filename='css/tabulator.min.css') }}" rel="stylesheet"></link>
<script type="text/javascript" src="{{ url_for ('static', filename='tabulator.min.js') }}"></script>
HTML Body :
var table = new Tabulator("#tableId", {});
PYTHON :
df = pd.read_excel(destination)
return render_template('fileviewer.html',x=df.to_html(table_id='tableId'))
javascript python pandas flask tabulator
|
show 16 more comments
I'm a new Dev , trying to pass Pandas DataFram to Tabulator , it works but the table is so messed up
original file :
original file in excel
without tabulator :
to_html() render result
it renders fine as html but once i attach Tabulator to it everything is messed up .
after tabulator:
after attaching tabulator to it using ID
the way i install it was copying and pasting all files in Dist to my app folder JS files in the JS folder and all CSS files in CSS folder
in HTML head :
<link href="{{ url_for ('static', filename='css/tabulator.min.css') }}" rel="stylesheet"></link>
<script type="text/javascript" src="{{ url_for ('static', filename='tabulator.min.js') }}"></script>
HTML Body :
var table = new Tabulator("#tableId", {});
PYTHON :
df = pd.read_excel(destination)
return render_template('fileviewer.html',x=df.to_html(table_id='tableId'))
javascript python pandas flask tabulator
can you post a sample of you html code (including table headers) and i can point you in the right direction
– Oli Folkerd
Nov 25 '18 at 18:43
that's how it's rendered from the back end >> pastebin.com/BkUVMJAr
– za001a
Nov 25 '18 at 18:50
the issue is that it is using th elements for the table cells instead of td elements. th elements should only be used in the thead not the tbody
– Oli Folkerd
Nov 25 '18 at 18:51
this how Panda render's it , i can render it in json as well , could it work with json ?
– za001a
Nov 25 '18 at 18:54
i would check with panda as that isnt valid HTML unfortunately. Yes Tabulator certainly can work with JSON, no problem there! have a look at tabulator.info/docs/4.1/data#array the function will take either an array of data or JSON encoded array
– Oli Folkerd
Nov 25 '18 at 18:55
|
show 16 more comments
I'm a new Dev , trying to pass Pandas DataFram to Tabulator , it works but the table is so messed up
original file :
original file in excel
without tabulator :
to_html() render result
it renders fine as html but once i attach Tabulator to it everything is messed up .
after tabulator:
after attaching tabulator to it using ID
the way i install it was copying and pasting all files in Dist to my app folder JS files in the JS folder and all CSS files in CSS folder
in HTML head :
<link href="{{ url_for ('static', filename='css/tabulator.min.css') }}" rel="stylesheet"></link>
<script type="text/javascript" src="{{ url_for ('static', filename='tabulator.min.js') }}"></script>
HTML Body :
var table = new Tabulator("#tableId", {});
PYTHON :
df = pd.read_excel(destination)
return render_template('fileviewer.html',x=df.to_html(table_id='tableId'))
javascript python pandas flask tabulator
I'm a new Dev , trying to pass Pandas DataFram to Tabulator , it works but the table is so messed up
original file :
original file in excel
without tabulator :
to_html() render result
it renders fine as html but once i attach Tabulator to it everything is messed up .
after tabulator:
after attaching tabulator to it using ID
the way i install it was copying and pasting all files in Dist to my app folder JS files in the JS folder and all CSS files in CSS folder
in HTML head :
<link href="{{ url_for ('static', filename='css/tabulator.min.css') }}" rel="stylesheet"></link>
<script type="text/javascript" src="{{ url_for ('static', filename='tabulator.min.js') }}"></script>
HTML Body :
var table = new Tabulator("#tableId", {});
PYTHON :
df = pd.read_excel(destination)
return render_template('fileviewer.html',x=df.to_html(table_id='tableId'))
javascript python pandas flask tabulator
javascript python pandas flask tabulator
edited Nov 25 '18 at 18:10
za001a
asked Nov 25 '18 at 17:54
za001aza001a
9710
9710
can you post a sample of you html code (including table headers) and i can point you in the right direction
– Oli Folkerd
Nov 25 '18 at 18:43
that's how it's rendered from the back end >> pastebin.com/BkUVMJAr
– za001a
Nov 25 '18 at 18:50
the issue is that it is using th elements for the table cells instead of td elements. th elements should only be used in the thead not the tbody
– Oli Folkerd
Nov 25 '18 at 18:51
this how Panda render's it , i can render it in json as well , could it work with json ?
– za001a
Nov 25 '18 at 18:54
i would check with panda as that isnt valid HTML unfortunately. Yes Tabulator certainly can work with JSON, no problem there! have a look at tabulator.info/docs/4.1/data#array the function will take either an array of data or JSON encoded array
– Oli Folkerd
Nov 25 '18 at 18:55
|
show 16 more comments
can you post a sample of you html code (including table headers) and i can point you in the right direction
– Oli Folkerd
Nov 25 '18 at 18:43
that's how it's rendered from the back end >> pastebin.com/BkUVMJAr
– za001a
Nov 25 '18 at 18:50
the issue is that it is using th elements for the table cells instead of td elements. th elements should only be used in the thead not the tbody
– Oli Folkerd
Nov 25 '18 at 18:51
this how Panda render's it , i can render it in json as well , could it work with json ?
– za001a
Nov 25 '18 at 18:54
i would check with panda as that isnt valid HTML unfortunately. Yes Tabulator certainly can work with JSON, no problem there! have a look at tabulator.info/docs/4.1/data#array the function will take either an array of data or JSON encoded array
– Oli Folkerd
Nov 25 '18 at 18:55
can you post a sample of you html code (including table headers) and i can point you in the right direction
– Oli Folkerd
Nov 25 '18 at 18:43
can you post a sample of you html code (including table headers) and i can point you in the right direction
– Oli Folkerd
Nov 25 '18 at 18:43
that's how it's rendered from the back end >> pastebin.com/BkUVMJAr
– za001a
Nov 25 '18 at 18:50
that's how it's rendered from the back end >> pastebin.com/BkUVMJAr
– za001a
Nov 25 '18 at 18:50
the issue is that it is using th elements for the table cells instead of td elements. th elements should only be used in the thead not the tbody
– Oli Folkerd
Nov 25 '18 at 18:51
the issue is that it is using th elements for the table cells instead of td elements. th elements should only be used in the thead not the tbody
– Oli Folkerd
Nov 25 '18 at 18:51
this how Panda render's it , i can render it in json as well , could it work with json ?
– za001a
Nov 25 '18 at 18:54
this how Panda render's it , i can render it in json as well , could it work with json ?
– za001a
Nov 25 '18 at 18:54
i would check with panda as that isnt valid HTML unfortunately. Yes Tabulator certainly can work with JSON, no problem there! have a look at tabulator.info/docs/4.1/data#array the function will take either an array of data or JSON encoded array
– Oli Folkerd
Nov 25 '18 at 18:55
i would check with panda as that isnt valid HTML unfortunately. Yes Tabulator certainly can work with JSON, no problem there! have a look at tabulator.info/docs/4.1/data#array the function will take either an array of data or JSON encoded array
– Oli Folkerd
Nov 25 '18 at 18:55
|
show 16 more comments
1 Answer
1
active
oldest
votes
Looking at the code you posted, the issue is that it is using th tags for the first cell of each row in the table instead of td tags. th tags should only be used in the thead not the tbody
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53470273%2fflask-pandas-to-tabulator-tables-are-all-messed-up%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Looking at the code you posted, the issue is that it is using th tags for the first cell of each row in the table instead of td tags. th tags should only be used in the thead not the tbody
add a comment |
Looking at the code you posted, the issue is that it is using th tags for the first cell of each row in the table instead of td tags. th tags should only be used in the thead not the tbody
add a comment |
Looking at the code you posted, the issue is that it is using th tags for the first cell of each row in the table instead of td tags. th tags should only be used in the thead not the tbody
Looking at the code you posted, the issue is that it is using th tags for the first cell of each row in the table instead of td tags. th tags should only be used in the thead not the tbody
answered Nov 25 '18 at 18:53
Oli FolkerdOli Folkerd
1,72011116
1,72011116
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53470273%2fflask-pandas-to-tabulator-tables-are-all-messed-up%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
can you post a sample of you html code (including table headers) and i can point you in the right direction
– Oli Folkerd
Nov 25 '18 at 18:43
that's how it's rendered from the back end >> pastebin.com/BkUVMJAr
– za001a
Nov 25 '18 at 18:50
the issue is that it is using th elements for the table cells instead of td elements. th elements should only be used in the thead not the tbody
– Oli Folkerd
Nov 25 '18 at 18:51
this how Panda render's it , i can render it in json as well , could it work with json ?
– za001a
Nov 25 '18 at 18:54
i would check with panda as that isnt valid HTML unfortunately. Yes Tabulator certainly can work with JSON, no problem there! have a look at tabulator.info/docs/4.1/data#array the function will take either an array of data or JSON encoded array
– Oli Folkerd
Nov 25 '18 at 18:55