Use JS To Open A 'save Dialog' Box
Aug 21, 2006anyway in Javascript to program a link so that it opens a 'save dialog' box - in the same way as you can use JS to open a print dialogue box?
View 2 Repliesanyway in Javascript to program a link so that it opens a 'save dialog' box - in the same way as you can use JS to open a print dialogue box?
View 2 RepliesI am trying to get a dialog box to open another dialog box. Clicking on "more search options" the first time results in opening a dialog box. Clicking "search" within the dialog box results in opening up a second dialog box. But this only works the first time I click on "more search options". In other words, the second dialog box only opens up only once. To get the second dialog to open again, I have to reload the page in the browser.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
[code]....
I have a confirmation page, we would like to have a SAVE button option for our customer to save the page, is it possible to SAVE only the message or page, not for the entire site?
if you have done it before, can you please help...thanks so much in advance. Or please give some suggestions how can we save the confirmaiton message page
making a save as dialog appear in firefox?
IE was easy, just using this code:
java script:document.execCommand('SaveAs','1','test.txt')
What I'm trying to do is have a 'Save As' dialog box pop up when I click an anchor tag.What's hidden in the anchor tag is base64 information, so my anchors look like this:
<a href=# src='data:application/octet-stream;base64, (base64 string)'>file name</a>
So when I click on this, it gives me the option of downloading my base64 info just fine, but the problem is, the name of it looks to be just the entire base64 string. I was wondering if there was a way I could set this name? I can get the file name, so I'd love to just put 'blah.jpg' as the name that the user downloads.The reason I'm asking is because when I download the file, it comes out as (random characters).bin.part, and if I know the download is a pdf, I try opening it with a pdf viewer, but get yelled at by the MIME type... however, if I simply change '.bin.part' to '.pdf', I can open the file just fine, so I'd love for an automatic naming system, but not sure how to implement that.I've tried the document.execCommand('saveAs', '1', '<filename here>'), but I think this is for an actual file that you serve from the server... I don't have the actual file, just the base64.
i would like to disable the "save as dialog box" on some certain areas of our corporate website.
Such that everytime a user trys to download certain files, it disables it.
Is this possible and how do i go about it?
The below code is working for the text file but not for the zip. I want to create a Save dialog option to save zip file.
<html>
The below code is working for text file but not for the zip file. I want create a Save Dialog to store a zip. code...
View 1 Replies View RelatedI want to be able to do is to have a button that when the user clicks on it, it will open a "save as" dialog box so they can save a file (a separate file, not the html one that they are looking at) from my server. Is this really not possible using javascript, or am I just completely confused again?
View 3 Replies View RelatedI am distributing some files on CD. Among other files i have
download.htm and
DataFile.txt
When download.htm file executes, it shoud set the path to the download file as the path for my data file and then opens the save as dialog box when user can then select storage location.
i can use some thing like
window.document.execCommand("SaveAs",true,"YourDataFile.txt");
window.close();
Here Save as dialog appears but how i can tie the box with the file on the CD?
Also execCommand is native to IE, How can i use this same in Netscape?
I am using ASP.net and javascript. Presently I have a link on the web page, which opens an image....if the user wants to save it , he has to right click the image and then save it. But,I don't want the user to right-click and choose the option "Save Picture As" or "Save Image" of the browser. Instead I want the user to click a link or button that is displayed just under the image. After clicking the link/button, the user should be able to save the image in his/her local hard disk/machine in a particular folder or just under C: or bringing up the file directory dialog box where the user can save in his/her own folder.
View 1 Replies View RelatedWhat I'm trying to do is have a 'Save As' dialog box pop up when I click an anchor tag. What's hidden in the anchor tag is base64 information, so my anchors look like this:
<a href=# src='data:image;base64, (base64 string here)' ></a>
So when I click on this, it gives me the option of downloading my base64 info just fine, but the problem is, the name of it looks to be just the entire base64 string. I was wondering if there was a way I could set this name? I can get the file name, so I'd love to just put '....jpg' as the name that the user downloads.
The reason I'm asking is because when I download the file, it comes out as (random characters).bin.part, and if I know the download is a pdf, I try opening it with a pdf viewer, but get yelled at by the MIME type... however, if I simply change '.bin.part' to '.pdf', I can open the file just fine, so I'd love for an automatic naming system, but not sure how to implement that. I've tried the document.execCommand('saveAs', '1', '<filename here>'), but I think this is for an actual file that you serve from the server... I don't have the actual file, just the base64.
First of all, let me tell you that this is not a homework question, since i am no longer in college, i don't get homework. Ok now to the question => Can you please give me a little example java script to open and save text files
View 6 Replies View RelatedI am looking to open file.exc, save and close file.exc with a java script. I want to keep it in the same location and keep it the same name.
View 3 Replies View RelatedI am working with a activeX widget that has a method that produces an image which is saved to a users local machine. All the method requires is the path on the local machine. I need to obtain this path (hopefully utilizing a "save as" file dialog) and store its value to a variable so I can pass it to the method. It does work with an input type="file" but they are branded for file uploads an dit is a little misleading and confusing for the user.
example:
var path = $("#saveAsDialog").val();
activeXObj.saveScreenshot(path);
I would like to open a "Chose File " dialog box using javascript.
I am using C# as the server side programming language.
I have tried <Input type="file" tag, and then "showModalDialog".
I am trying to get a dialog box to open another dialog box. Clicking on "more search options" the first time results in opening a dialog box. Clicking "search" within the dialog box results in opening up a second dialog box. But this only works the first time I click on "more search options". In other words, the second dialog box only opens up only once. To get the second dialog to open again, I have to reload the page in the browser. CSS and jquery code can be downloaded from [URL].
View 1 Replies View RelatedI am using the following HTML in the hopes of allowing the user to use a Open File Dialog to select a file and putting the file name in the text box:
Code:
<Input type="text" size="100" maxlength="150" name="Player" value="Default">
<input type="file" name="FileDialog" size="100" onchange="this.form.elements.Player.value = this.value">
[code]....
I have a button that opens up a dialog box. When "search" in the dialog box is clicked, another dialog box is supposed to open. Everything works great ONE TIME. If I try clicking on the button again, the first dialog box opens, but when I click on "search" again, nothing happens.
[Code]..
I have some code to open 1 dialog box. Could someone please help me manipulate this code to open multiple boxes with different contents. I would like to do this with out duplicating the existing code, maybe setting a variable. The least amount of code the better.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<meta charset="utf-8">[code]...........
Ok I'm returning a csv from a servlet, and I want to initiate a wait cursor that is to close when the open dialog is displayed in the window. I have searched but haven't found anything related to the opening of a dialog.
View 2 Replies View RelatedI am having a problem with the dialog plugin.
I am calling it when I click a button, it opens the url, but as an inline and not as a popup window.[code]...
i know it sounds like a simple thing to do, but for the life of me
View 12 Replies View RelatedI have the following code, however, I need to click twice on Change password for the dialog to open. I want the dialog to open when on a single click. I can`t understand why the dialog doesn`t open on a single click.
<td><a href="#" id="password_link" onclick="$(ChangeAttribute('<%= item.Name %>', '<%=item.ID %>'));">Change Password</a> </td>
function ChangeAttribute(name, Id) {
$(
[Code]....
at the moment I have intialised the modal-dialog box..
Code:
$(function(){
$("#dialog-modal").dialog({
height: 140,
[code]....
and I would like that box to open with an image (loading image) when the ajax is doing its thing.. and close the box after it finishes.. as you can see I have tried to do it but it doesnt seem to work.. (i tried it without $FUNCTION(){ } thing in the else statement so I tried adding function call..)
in a my page i have create che code for a modal dialog box in jquery code...
but this code doesn't work..why? i should open the box only with a click event for example?