Missing [X] button in dojo dialog box to close the window - dojo

For some reason, I am not able to see the [X] button to close the dialog box.
I tested examples from dojo website. Everything works but [X] button does not show up.
What am I missing?

I've seen this before, and if I recall correctly, it has to do with the Dijit theme not being set up properly. Could it be that you're not including the appropriate CSS file for the theme you're using? Or perhaps you don't even have a theme specified in your test page?
This reference page may help: http://docs.dojocampus.org/dijit-themes

Related

Domino form not showing buttons or hotspots with javascript code

Domino web app (traditional, not XPages)
Simple form with a single subform. I add a button and a hotspot, each with action set to Web/Javascript
Javascript : alert('hello');
Neither the button nor the hotspot are visible in the browswer. No hide formulas on either.
DB Setting of "Use JavaScript when generating pages" is checked.
Can anyone point out something that I am missing? I have double-checked there's nothing like a div set to dislay:none; or hide formula in place.
Domino 11.01 on server
Browsers: Chrome and Firefox
Figured it out...I had accidentally included the button as set to pass-thru HTML....as soon as I took that checkmark off, the button now shows. It's not evident that is set without highlighting the button and looking at 'text' menu option.
Thanks for trying to help me.
Matt

how remove pdf-toolbar from edge

Help me please to show pdf-documents in edge without top pdf-panel this pdf-panel which I want to remove is at the picture. Pdf-documents are opened through hyperlinks. I searched settings and I tried to add "toolbar=0" to my hyperlinks, but without result yet.
You can add "#toolbar=0" to the URL and refresh the page.
I agree with KJ's comment. The PDF reader is built in in Edge. It's a part of Edge browser so you can't disable the PDF toolbar using code. And there's no setting to disable the toolbar.
You can only open PDF in other applications if you don't want to see the toolbar. Besides, you can also provide your suggestion as a feature request to suggest the Edge team to add a setting to disable the PDF toolbar. You can send the feedback through the Microsoft Edge Insider forum.
Press F8 and then Read mode under page view icon, or just Ctrl + H

In IE elements are get hide then after hover on them they get visible

I am working with IE11. After loading my website elements like checkbox, radio button, drop down arrow get automatically hidden then after hover on them they get visible then after click anywhere in page they again get hide. All this element are present and style are applied tested with developer tool but still they was giving problem. Then after check "use software rendering instead of gpu rendering" option from settings->Internet option->Advanced->"use software rendering instead of gpu rendering" everything got ok. Now my website element not getting hide all style applied perfectly. But I doesn't understand why this happen? How this setting fixed issues. Please any idea help!

Show Captions Settings via Javascript for Video.js

I want to make a button that will call a function, and in said function, it will execute the JS code to display the Captions Settings box. The settings box i am referring to is if you have tracks set up, the CC button shows, when you click that, you can then select the button "Captions Settings" and it shows the cc settings.
So what would the JS code be to show the settings box?
I found the answer. I looked at video.js and found how they were handling the click of the 'CaptionSettingsMenuItem'.
function ShowTheCaptionsSettingsWindow(){
ReplaceWithYourPlayerObjectName.getChild('textTrackSettings').show();
ReplaceWithYourPlayerObjectName.getChild('textTrackSettings').el_.focus();
}

Magnific-popup - Source (not showing up again) after closing Popup

I'm trying to implement the Magnific-popup on a website. Source is a jquery ( html articles with a header paragraphs...) object loaded as inline type. The shown source is on the same page as the popup. To this point it is working fine, popup is working, content is loaded.
Now I'm unsure whether this is standard behaviour or not: In the background the shown article is hidden, while the rest of the articles are still there. When closing the popup, the shown article stays hidden.
tl;dr: Magnific-popup hides the source of the opened information, not making it visible again after closing the popup.
Am I doing anything wrong or is it just the expected behaviour of Magnific-popup?
Any hints/solutions appreciated.
its general behavior.
when you close the popup once, it adds class "popup-hide" to hide the popup content, though which may not be applied by you in its html
i hope you are referring to something like this : http://www.hoopsvilla.com/2014/04/2014-nba-playoffs-bracket-tree-updated-scores-stats-schedule.html (when you click the trigger (the team logo), the inline-content gets hidden once the popup is closed.)
i'll try to get more (solution) on this later.. :)