GithubHelp home page GithubHelp logo

Comments (10)

inzerceubytovani avatar inzerceubytovani commented on August 16, 2024 11

I made this easy solution:

`<div class="dropzone" ng2FileDrop [uploader]="uploader" (click)=fileInput.click()>
Drop or Click to select files

`

<input type="file" #fileInput ng2FileSelect [uploader]="uploader" multiple style="display: none;"/>

from ng2-file-upload.

bioform avatar bioform commented on August 16, 2024 7

To implement it right way you just need to replace "div" with "lable" and wrap file input field with it.
Something like:

<label ng2FileDrop [uploader]="uploader" class="my-drop-zone">
    Drag and Drop File Here
    <input type="file" ng2FileSelect [uploader]="uploader" style="display: none" />
</label>

No need to use "click" at all

from ng2-file-upload.

vangorra avatar vangorra commented on August 16, 2024

+1

from ng2-file-upload.

sylvaindumont avatar sylvaindumont commented on August 16, 2024

+1

from ng2-file-upload.

valorkin avatar valorkin commented on August 16, 2024

oh, nice one

from ng2-file-upload.

JulianH avatar JulianH commented on August 16, 2024

I solved this wrapping the file-select into the file-drop like this:

<div class="dropzone" ng2FileDrop [uploader]="uploader">
    <div>Drop image here...</div>
    <input type="file" ng2FileSelect [uploader]="uploader">
</div>

from ng2-file-upload.

fojt avatar fojt commented on August 16, 2024

try this https://github.com/valor-software/ng2-file-upload/tree/development/demo/components/file-upload/zs-file-demo
I think code is more clear then use drop & select at the same time.

from ng2-file-upload.

t246246 avatar t246246 commented on August 16, 2024

@fojt How to use this demo?
As your template include only <input> tag with style="display: none;", so I guess it is intended to use with other tag or component. I tried to use your DemoFileUploadComponent using <demo-file-upload></demo-file-upload> or <div DemoFileUploadComponent ...></div>, but I got error TypeError: Cannot read property 'isSkipSelf' of null.

from ng2-file-upload.

t246246 avatar t246246 commented on August 16, 2024

I understand the error above occurs because, in short, FileUploader is not @Injectable(). So I remove providers: [FileUploader], line and add @Input() public uploader:FileUploader; so as to get existing FIleUploader instance, and check using <demo-file-upload [uploader]="uploader"></demo-file-upload> from other sample-demo.html. Now I see how your component works.

Also it needs little fix for Firefox.

public onChange($event:any):void {
    this.fileUploadService.addToQueue(($event.target || $event.srcElement).files);
}

from ng2-file-upload.

hetzbr avatar hetzbr commented on August 16, 2024

Added the following styles to div to make it cleaner:
.point{
cursor: pointer;
}
.my-drop-zone:hover {
border: dashed 3px green;
}

from ng2-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.