Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
y_grynechko
Creator III
Creator III

Issue with custom table load

Hello, 

I have an issue with one object I open in a mashup. 

It is a custom table, I tried getting it in two different ways: 

app.visualization.get('QlikID');

app.getObject('QlikID');

but in both cases the column names stack on the left side: 

Capture.JPG

And i should be like this: 

Capture1.JPG

Any ideas why it get formatted like that?

Thanks! 

1 Solution

Accepted Solutions
y_grynechko
Creator III
Creator III
Author

Issue was in the library I was using for some functions. After removing the line table issue is solved.
Library:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>

View solution in original post

3 Replies
ErikWetterberg

Hi,

Check the css - are there any css classes that clash? Also verify that the css is loaded (check the browser console for errors). This looks like an extension, so you should probably talk to the extension developer.

y_grynechko
Creator III
Creator III
Author

Issue is definitely on my side. I tried loading same element to fresh mashup with only one element end it looks fine. I just can't find the bug.
All the css formatting used:

<body style="overflow: auto">

main{
background-color: #fff;
width: 100%;
overflow: auto;
display:flex;
}
.content{
width:83%;
background-color:f3f3f3;
margin-top:20px;
margin-right:3%;
}
.content .visualizations{
margin-top:2%;
display: flex;
flex-wrap: wrap;
margin-bottom:1%;
}
.content .visualizations .qvplaceholderPOTABLE{
height: 600px;
width:100%;
}

Any idea which may format it like this?
y_grynechko
Creator III
Creator III
Author

Issue was in the library I was using for some functions. After removing the line table issue is solved.
Library:
&lt;script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js">&lt;/script&gt;