highslide

Highslide sometimes is not able to return its DIV, causing the view to be empty

孤者浪人 提交于 2020-01-06 18:11:19
问题 I have noticed that at random, when I click to open a view (I open highcharts inside HS), I get a blank view. Checking the data, and everything is fine, but for some reason, the view is empty. I did a bit of debugging and I found that the issue is where I pass the renderTo to the chart: chartOptions.chart.renderTo= $('.highslide-body')[IDchart]; while debugging, sometimes the renderTo is undefined; so I am trying to troubleshoot this and figure out what is actually wrong. the IDChart is

highslide and highchart

 ̄綄美尐妖づ 提交于 2019-12-19 11:52:33
问题 am building highcharts and highstock and i will put them in to a page as small charts then to click on it so it will expand (highslide) but the code is not working this is one of the charts http://www.nourhammoury.com/silvercot.php am adding the code like in this example here http://www.highcharts.com/studies/with-highslide.htm but its not working at all can anyone help thanks 回答1: Its not possible to show complete slide show in high slide ... But its can possible I achieved solution that is

Picture when clicked has background I don't want

寵の児 提交于 2019-12-13 06:13:13
问题 When I click a picture on my page, I get a background frame that I don't want. Probably a css issue,but I have no clue where to look. What do I have to change and where? This is the page. 回答1: You have padding added to all table cells in this part of your styles.css file: table th, table td { text-align: left; vertical-align: top; padding: 4px 7px !important; padding: 6px 10px; } This affects the table around the Highslide image. You can fix it by adding this to your highslide.css file:

How do I make Highslide thumbstrip scrollable?

冷暖自知 提交于 2019-12-12 01:54:56
问题 I wonder how to make a highslide thumbstrip scrollable for cases when there are too many thumbnails to fit into it. I've got a highslide gallery here: http://civicsector.org.ua/multimeda/foto/208-akcya-geroyi-nezalezhnost.html However, the thumbnails in it get oblated so that all of them fit into the thumbstrip. Instead, I want them to keep the aspect ratio and to make the thumbstrip scrollable, just like here: http://www.roadrash.no/hs-support/gallery-in-page+caption-above-thumbstrip.html It

Highslide: Issues re-shrinking image

心已入冬 提交于 2019-12-12 01:29:53
问题 First off, just want to thank the author for making this great bit of code available for free, and the community for helping java-illiterate folks such as myself. Anywho, here is my issue: When I click a thumbnail to enlarge it, it enlarges just fine. However, when it's enlarged, the only way I can shrink it is by placing the cursor on the very thin ~1px border. I do not get the magnifying glass shrink cursor when over the image itself. If you wish to view the problem, the code is live at

How do I set Highslide expander size?

蓝咒 提交于 2019-12-11 20:02:35
问题 I'm trying to set up an in-page highslide gallery on my site. However, I'm experiencing problems with setting the size of the epxander. The page with the gallery is http://civicsector.org.ua/multimeda/foto/208-akcya-geroyi-nezalezhnost.html (wait a moment until the page loads completely) I want the big image (the expander) to be no more than , say, 300x200 px . However, right now it is 960x720 . The annoying thing is that I can't find a place in the code where this 960x720 size is set. I'm

Highslide in-page gallery gets broken by bootstrap affix

纵然是瞬间 提交于 2019-12-11 16:16:32
问题 I've got a highslide gallery in my page http://civicsector.org.ua/multimeda/foto/208-akcya-geroyi-nezalezhnost.html However, the page also contains a bootstrap affix at its top, which appears when you scroll down the page a bit. If you open the page and wait (without performing scrolling) until the gallery fully loads, the gallery is placed just the way it should . However, if after that you scroll down so that the affix gets shown, and click to view the next image , the whole gallery moves

Highcharts Chart inside of a Highslide popout

余生长醉 提交于 2019-12-11 07:36:15
问题 I am currently trying to put a Highcharts chart inside of a Highslide pop-out (the Highslide pop-out itself comes out of an existing Highcharts line graph). Basically, I want someone to be able to click on a point in the line graph and have a Highslides popout that contains additional charts with further information on that data point. The code below works - once. After the user clicks on a point and then closes the Highslide popout, the Highcharts graphs no longer show up in the Highslide

Highslide - entire header draggable, with multiple expanders

半世苍凉 提交于 2019-12-08 12:17:32
问题 I asked a related question earlier about draggable headers in HighSlide, and I got an answer from RoadRash. (Many thanks!) However, the solution doesn't seem to allow use of contentId, which I think I will need for multiple expanders. The code below has two links. They both "work". The first one is roughly the solution to my original problem, but it presents a new one. The second is more like the approach I was originally using and they're roughly similar. What I need should have the

Highslide, Auto follow scroll

不羁的心 提交于 2019-12-08 06:08:46
问题 I was looking for a fix/solution for that and found this topic: http://highslide.com/forum/viewtopic.php?t=3030 function fixElement(el) { var stl = el.style; stl.position = 'fixed'; stl.top = (parseInt(stl.top) - hs.page.scrollTop) +'px'; stl.left = (parseInt(stl.left) - hs.page.scrollLeft) +'px'; } function unfixElement(el) { var stl = el.style; stl.position = 'absolute'; stl.top = (parseInt(stl.top) + hs.page.scrollTop) +'px'; stl.left = (parseInt(stl.left) + hs.page.scrollLeft) +'px'; } if