Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
wangxusq
Contributor III
Contributor III

Mashup Selection Tool Issue

Hi all,

I create a mashup and see belows:

1.jpg

1.We can see the blue region. Then what is it ? How can I remove it?

2. I also want to remove tha APP Dimension Region. How to achieve this goal?

Thanks.

1 Solution

Accepted Solutions
ErikWetterberg

Hi Scott,

The blue is probably something in your mashup CSS styling. You will need to inspect it in the browser.

Hiding 'App dimension' (and the checkbox) can be done with javascript. Using jQuery it would be something like:

$('.qv-gs-header').hide();

Since the element has inline styling you can't really hide it with a CSS rule.

Erik Wetterberg

View solution in original post

2 Replies
ErikWetterberg

Hi Scott,

The blue is probably something in your mashup CSS styling. You will need to inspect it in the browser.

Hiding 'App dimension' (and the checkbox) can be done with javascript. Using jQuery it would be something like:

$('.qv-gs-header').hide();

Since the element has inline styling you can't really hide it with a CSS rule.

Erik Wetterberg

wangxusq
Contributor III
Contributor III
Author

Thanks, I fixed the blue region. It is because of the P tag (CSS styling).

The other issue I need some time  to research.

Thanks a lot.