jQuery File Upload Using Siebel OUI in IE11 Does Not Work - jquery-file-upload

When I attempt to drag and drop a file onto a Siebel attachment list applet, IE11 is opening the file instead of uploading/creating new record in the applet. I can see the drop zone tag "Copy" when I hover over the applet but when I drop the file it gets opened in the same browser window. Expected result should be that the file is uploaded and added to the applet in Siebel without any prompts.

Figured it out, the browser was running in elevated mode for the dedicated client. The drag and drop does not work for local dedicated client unless you are running IE in non-elevated mode. Also, the new button on our applet was invoking "NewRecord" method instead of "NewFileAttachment" as it does in OOB Siebel account attachment applet. So I changed MethodInvoked for the New button to "NewFileAttachment" and ran the dedicated client in regular mode and drag and drop works beautifully :)

Related

Selecting a file from a windows dialog box in Telerik Web Test

Hi guys,
Is it possible to select a file from a dialog box when we are running a web test in Telerik Test Studio? The scenario of this execution is when we click a field in a web browser, a windows dialog box pops out and we would need to input a path to a local folder and select a file(SelectFile.PNG).
But I'm unable to detect any element from this dialog box presuming this is because the test script is a web test and hence this limitation(do correct me if i'm wrong).
Is there any workaround or suggestion to this limitation?
Many many thanks!
Best Regards,
Pravin
praja#dongenergy.dk
Kind of a late response but if your recording is enabled, it should automatically record the step for a File Upload dialog box (and handle it appropriately when using play back).
Alternatively, you can manually add the "Dialogs->FileUpload" step, and fill in the properties appropriately.

Is there a way to programmatically open a server-side file in a new tab?

I'm running Jupyter notebook on a server and executing it from a client computer. In Rstudio server, one can programmably open a server-side file in a new tab via file.show. This is sometimes very convenient. For example, I have a script that processes a rather large image. Because of its size I don't want it to show directly in the output panel, rather I want to view it in a new tab. In Rstudio server I would normally do:
... image processing code ....
ggsave('temp.png')
file.show('temp.png')
This will automatically pop up the new image in a new tab once the script is finished.
Is it possible to do something similar in Jupyter?
I noticed that I could achieve this by clicking the image file in the built-in file browser, but I wonder if this could be programmed.
Similarly, is it possible to programmably open a webpage in a new tab like browseURL in Rstudio server? Note that webbrowser.open(url) doesn't quite do it because it tries to open a local browser, which in the server-client scenario will not open the new tab on the client side.
You can make a link. Relative URLs will open in a new browser tab. Files are served relative to the directory containing the notebook you are currently working on.
In Python:
from IPython.display import display, HTML
display(HTML('see image'))
Opening new tabs programmatically often triggers pop-up blockers, but publishing a link that the user clicks should be reliable.

In Linux: Importing of Existing PDF Forms and Adding Submit Buttons

I'm trying to save post data from a PDF file to my web server. I don't have commonly available Windows tools, because I'm on Linux.
When using Linux software like Scribus, I am not able to successfully import the existing PDFs correctly... these are often critically accurate legal documents, which must appear exactly the way they've been designed.
I've used a web application (PDFecape.com) to add form fields to the PDF... I've autopopulated these fields on the server before showing the user. This application does not allow for a submit button.
I then used "Wine" to run Windows software called Soda PDF to add a submit button and a URL for submission.
It uses Javascript to submit the form, which from what I've read, seems to be the right approach. However, the server is not being pinged by PDFs when the button is pressed.
The URL for submission is a simple PHP script that saves post content as a PDF and sends me an email.
I've tried it in Ubuntu's built in PDF document viewer, Chrome's built in PDF reader, and have download Adobe's Acrobat Reader to try submitting with that as well.
In each case, the server is not being pinged.
Is there another way to add a submit button to this form? Any other ideas?
Thanks,
Jason Silver

Download attachments without browser

Does anybody know if it's possible to attach a big file to an e-mail and open it without opening a browser window? I mean, if I attach a small file, the file goes with the e-mail and I can open it without nothing more than the e-mail application. But when it's a big file (let's say 200Mb) normally I upload the file to an FTP, Dropbox, or other internet services. My client receives an e-mail with a link, and when he opens it, it starts a browser and he needs to click a link there to finally download the file. I would want to do that automatically, so my client only needs to click the link (or maybe drag'n drop) and it automatically downloads the attachment with no browser windows.
Do you think it's possible somehow? No problem if I need any programming language. Thanks in advance
It's not possible.
It would imply the use of Javascript that's not allowed in mail clients.

Pop-up window that can be controlled remotely?

I was requested to put a pop-up window on each 3rd usage of an app but I have to control this pop-up so I can take it off whenever I want or change it remotely.
I don't want an alert view, just a background that I will insert myself, that can be controlled from a server.
What's the easy way to do that? Do I need my own server that the app connects to and get a "boolean number" whether to remove it or play it?
The way I handled this was with a configuration file on an amazon s3 bucket. The application downloads the configuration file, and checks the appropriate values for how to behave. It's worked fairly well so far.
http://www.bucketexplorer.com/documentation/amazon-s3--how-to-use-Amazon-s3-for-web-hosting.html
As for the window, you should just use a modal.
http://www.informit.com/articles/article.aspx?p=1771684&seqNum=5