-
Notifications
You must be signed in to change notification settings - Fork 235
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding files to WebFileDrop not working #86
Comments
Thanks for informing about these issues! |
#86 - WebFileDrop settings and selected files fix #85 - WebRootPaneUI maximize is now disabled on title double-click when maximize button is hidden Major improvements in StyleManager and skin installation behavior Default style painters are now also custom and moved into separate skin package Redundant PainterMethods interface and its implementations removed From now on all specific style settings will be contained inside painters only PanelPainter support added, WebPanel and WebPanelUI classes upgraded NinePatchIcon painting within custom bounds fixed WebScrollBarUI preferred size fix
It doesn´t work, I have the same problem in the v1.27 version. |
I will be fixing all issues related to WebFileDrop in v1.28 update. |
I have committed a few fixes and improvements for WebFileDrop. Here is the full list of new methods available: public List<File> getSelectedFiles ()
public void setSelectedFiles ( final List<File> files )
public void addSelectedFiles ( final List<File> files )
public void addSelectedFiles ( final File... files )
public void addSelectedFile ( final File file )
public void removeAllSelectedFiles ()
public void removeSelectedFiles ( final List<File> files )
public void removeSelectedFiles ( final File... files )
public void removeSelectedFile ( final File file ) This fix will be included into v1.28 update that will come out soon. |
Changes and fixes are now available in v1.28 update: |
Two possibilities:
or
I tried to use setSelectedFiles() to add files to it but that didn't work - i tried that because getSelectedFiles gives me all the files currently inside, to it seems plausible. But i don't know if i got it right because i can't see a reason to name the methods get/setSELECTEDfiles...
What i tried:
Another thing:
doesn't work.
The text was updated successfully, but these errors were encountered: