Git Product home page Git Product logo

Comments (23)

RastoStric avatar RastoStric commented on June 18, 2024

For me no.

from angular-file-upload.

kurtfunai avatar kurtfunai commented on June 18, 2024

No

Comments:
I don't need it - but I do like the idea of it being optional.
It is included in the blueimp file upload that many people are used to (http://blueimp.github.io/jQuery-File-Upload/angularjs.html)

from angular-file-upload.

JonCognioDigital avatar JonCognioDigital commented on June 18, 2024

Yes, I didn't realise that it wasn't in the standard module because I downloaded the min.js version and couldn't understand why the example code wasn't producing thumbnails on my test. Very confusing to leave it in the examples and not include it in the package.

from angular-file-upload.

viveks-m avatar viveks-m commented on June 18, 2024

+1 Yes

from angular-file-upload.

veewee avatar veewee commented on June 18, 2024

+1 Yes

from angular-file-upload.

maku avatar maku commented on June 18, 2024

+1 Yes

from angular-file-upload.

davidwparker avatar davidwparker commented on June 18, 2024

No, I like creating my own directive for it.

from angular-file-upload.

martinsznapka avatar martinsznapka commented on June 18, 2024

Yes

from angular-file-upload.

theninthnode avatar theninthnode commented on June 18, 2024

Yes

from angular-file-upload.

stevesuh avatar stevesuh commented on June 18, 2024

Yes

from angular-file-upload.

alexandr2110pro avatar alexandr2110pro commented on June 18, 2024

yes

But just a very basic implementation with maximum flexibility.

"flexibility" is the first motivation to use your plugin.

If i will someday need a plugin that will do everything for me i'll take another one. But i will keep in mind, that such decision will force me to use strict flow and exact implementation scenario.

But can hardly imagine the real-life reason to do so.

from angular-file-upload.

rboughani avatar rboughani commented on June 18, 2024

for me no

from angular-file-upload.

devmark avatar devmark commented on June 18, 2024

+1 Yes

from angular-file-upload.

gregpalaci avatar gregpalaci commented on June 18, 2024

Yes

from angular-file-upload.

azharkhan avatar azharkhan commented on June 18, 2024

for image uploads, this is crucial. I was previously using v0.5 and I was able to generate thumbnails manually:

uploader.onAfterAddingFile = function(item) {
      var _URL = $window.URL || $window.webkitURL;
      var img = new Image();
      img.onload = function() {
        if (this.width !== 1200 || this.height !== 627) {
          uploader.removeFromQueue(item);
          toastr.error('Image size is not 1200x627!');
          scope.$apply();
        }
      };
      img.src = _URL.createObjectURL(item.file);
      item.imgSrc = img.src;
      updateSrcs();
    };

however now, since the item.file is a FileLikeObject, this doesn't work anymore.

from angular-file-upload.

ooqiaDev avatar ooqiaDev commented on June 18, 2024

@azharkhan..... Maybe item._file works.

from angular-file-upload.

azharkhan avatar azharkhan commented on June 18, 2024

@ooqiaDev thanks for the help, I noticed that in the directive code that was in the example, and it solved the problems I was having. I appreciate the help.

I'm wondering why the FileLike object was created, (out of curiosity), rather than just using the File object.

from angular-file-upload.

abhisheknjain avatar abhisheknjain commented on June 18, 2024

Yes please...
there are uploaded images on the server and when I load the page I want to them to be displayed. It will be a great help.
Thanks in advance.

from angular-file-upload.

yoghi avatar yoghi commented on June 18, 2024

+1

from angular-file-upload.

mort3za avatar mort3za commented on June 18, 2024

Yes

from angular-file-upload.

abhisheknjain avatar abhisheknjain commented on June 18, 2024

yes
On Jul 1, 2015 3:48 PM, "Morteza Ziaeemehr" [email protected]
wrote:

Yes


Reply to this email directly or view it on GitHub
#45 (comment)
.

from angular-file-upload.

ihr-it-projekt avatar ihr-it-projekt commented on June 18, 2024

+1

from angular-file-upload.

heyantonvolkov avatar heyantonvolkov commented on June 18, 2024

Hello! Can't see on the docs - is this feature available now?

from angular-file-upload.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.