Deon
Posts: 0
Joined: Sun Jun 30, 2013 6:00 am

File Upload for Master/Detail Page

Hi

I need to use a master/detail page to upload images.

I cannot open an image file from disk if the upload page is opened as a detail page in a master/detail page situation. I can select the image from disk but it does not display when clicking the Open button.

Uploading works perfectly if you open the Upload page as a single page.

Thank you

maxkatz
Posts: 0
Joined: Fri Aug 13, 2010 3:24 pm

File Upload for Master/Detail Page

When you say Master/Detail -- are you using the iPad page template?

Deon
Posts: 0
Joined: Sun Jun 30, 2013 6:00 am

File Upload for Master/Detail Page

Yes

Kateryna Grynko
Posts: 0
Joined: Thu Nov 15, 2012 9:13 am

File Upload for Master/Detail Page

Hi Deon,

Could you please show us screen shots and description of what you want to achieve?

Deon
Posts: 0
Joined: Sun Jun 30, 2013 6:00 am

File Upload for Master/Detail Page

All I want to do is Use the Master/Detail Page to upload images.

I can use your Upload Files Tutorial Perfectly with a single page scenario but not in a Master/Detail Page scenario.

See Image displayed

Image

If you have a Master IPAD Page (Master) and your content Page (Content) contains the content of your "Upload Files Tutorial", the images do not display in the content page when you select them.

See No Image after clicking Select Image and choosing image from disk.

Image

Maryna Brodina
Posts: 0
Joined: Thu Apr 05, 2012 7:27 am

File Upload for Master/Detail Page

Hello! The problem is that no listener has been created for change for fileselect event. To get it working:
1) delete from html panel code<script type="text&#47;javascript">
&#47;&#47; set event listener for call preview after select file
var fileselect = $('#fileselect');
fileselect&#46;bind("change", fileSelectHandler);
<&#47;script>/code
2) on page Show event (Detail page) run the following code:
codevar fileselect = $('#fileselect');
fileselect&#46;off()&#46;on("change", fileSelectHandler);/code

Deon
Posts: 0
Joined: Sun Jun 30, 2013 6:00 am

File Upload for Master/Detail Page

Just to clarify. Do I remove the whole html panel?

Igor
Posts: 0
Joined: Tue Apr 02, 2013 12:05 pm

File Upload for Master/Detail Page

Hello,

Not whole panel, only part of code.

Deon
Posts: 0
Joined: Sun Jun 30, 2013 6:00 am

File Upload for Master/Detail Page

Ok great, thank you

Return to “Issues”