Hi All,

 

I have a page that uses WFileUpload and a connected WPushButton to upload
images to the server. It works like a charm with the usual suspects of
Desktop browsers.

       WPushButton *upload = new WPushButton(tr("import"));

       upload->clicked().connect(m_imageUpload, &Wt::WFileUpload::upload);

       upload->clicked().connect(upload, &Wt::WPushButton::disable);

       m_imageUpload->uploaded().connect(this, &ImageImport::imageUploaded);

       m_imageUpload->fileTooLarge().connect(this,
&ImageImport::imageTooLarge);

Unfortunately this does not work with iOS 6 devices.  I do not hit any
breakpoints in my application, so I guess it is a client problem. Does
anyone have a clue how to fix this?

 

Cheers,

Richard

------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_feb
_______________________________________________
witty-interest mailing list
witty-interest@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/witty-interest

Reply via email to