Tagged Questions
3
votes
0answers
218 views
Javascript: Modal Dialog Window - Inactive Tab Page
I have a modal dialog popup being called from a parent window after 30 seconds of launch.
The modal window then closes automatically after 10 seconds of its launch.
The problem is when the parent ...
2
votes
0answers
103 views
How to add content to a containerNode that already has its content from href using dijit.Dialog
I’m new with this javascript and dijit.
My problem: In my js-function I’m building up a dijit.Dialog, using parameters that has been sent to the function.
One of the parameters is a href to en ...
2
votes
0answers
272 views
save dialog javascript firefox
Following code finds all links with in ul li and get their href image path and add event so when user click on link it opens save dialog. This only works in Internet Explorer. How can I do this for ...
2
votes
0answers
843 views
Facebook Feed Dialog returns a unhandled JavaScript including post_id that crashes iOS app
I try to use Facebook's Feed Dialog.
According to the examples on the Facebook Developer's web pages I coded two classes MyAppModelClass and MyViewCntrl, see below.
Compilation runs without errors or ...
1
vote
0answers
12 views
User to user request dialog not appearing in my application
My url works fine when I put it directly in the address bar, but when executing the code below, it gets to the error.
$.ajax({
type: 'GET',
url: ...
1
vote
0answers
41 views
How to safely fire two open handlers jQuery
Some of my pages work, some of them don't. The ones that don't work are the ones with a custom event handler. All pages have the following jQuery code.
var speed = 750;
...
1
vote
0answers
93 views
Trouble on multiple autocomplete fields on the same page
I am using jQuery v1.8.3 and jQuery UI v1.9.2. I implemented Autocomplete and Dialog widgets this way:
$("#A_autocomplete").autocomplete({
select : function(event, ui) {
...
1
vote
0answers
68 views
How do I put a selectable dynamic list on a jquery dialog
How do I put a selectable dynamic list on a jquery dialog. What I am wanting to do is when the user clicks a button a dialog appears and the list is populated by results from the sqlite database. ...
1
vote
0answers
217 views
Writing in file and saving it from Save as dialog through javascript
Below code is working fine to write XML data into a file.
function btnSave_onclick() {
var aFSO = new ActiveXObject("Scripting.FileSystemObject");
aTS = aFSO.OpenTextFile(FilePath,2,true);
aTS.Write ...
1
vote
0answers
233 views
Dialog pop up doesn't close
I'm trying to create a dialog box to add an item to a dropdownlist
here is the code
$(function () {
$('#applicantDialog').dialog({
autoOpen: false,
width: 600,
height: ...
1
vote
0answers
192 views
send dialog failing on certain URLs
Using the Javascript SDK, the "send" dialog fails on certain URLs - take for example the following two links:
this one sends...
https://fbapps.15letters.com/YMCA/idea.php?id=1
this one gives me ...
0
votes
0answers
18 views
How to detect FileSystem dialog cancel with js?
I've got an ajax upload triggered by a click or mousedown event. Problem is, when users 1)cancel the upload and then 2) click upload again 3) when the file completes, we get two thumbnails etc.
I ...
0
votes
0answers
74 views
Is there a way to always load a page as a dialog?
I'm using ASP.NET MVC 3. Every time I present the View Novo to users, I need open this View as a dialog.
Controller
public ActionResult Index()
{
IndexViewModel viewModel = new ...
0
votes
0answers
102 views
FancyBox/Boxy/JQuery UI Dialog Keep Dialog in center
I am using Handlebar templates to render my HTML and Lazy Loading plugin to load Images in my HTML.
The problem is when I open dialog having images of different sizes (Not known dimensions of images) ...
0
votes
0answers
130 views
CKEditor dialog select items won't change on load
I've got a problem with my CKEditor plugin and any help would be greatly appreciated.
The background is that I have created a plugin for adding images and video into my CKEDitor instance. What I have ...