-
Notifications
You must be signed in to change notification settings - Fork 251
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
RichFilemanager upload event #275
Comments
This feature is easy to implement if you are talking about the client-side method that will update (refresh) the currently open folder with a server request. RichFilemanager already has public methods mechanism, for example you can try this one at the demo page: $('.fm-container').data('richFilemanager').error('Test error'); I can add a method to reload the currently open folder. Let me know if this is what you want. |
Yes, that is exactly what I'm looking for |
Added 2 public plugin methods. Use this one to reload the currently viewed folder:
And this one is to load content of specified relative folder path:
The This feature affected some core methods, so let me know if you find that something is broken, please. |
Thank You Very much and If i get issue i will let you |
no any issue it is work as I expect |
Released in v2.7.1 |
In my case: I configured RichFilemanager with S3 bucket. I have another application which can upload file to S3 bucket. So I need a mechanism when I upload file to S3 bucket through other application the RichFilemanger would be known. I found few solution(pub/sub solution).
So I need rich file manager to refresh the listing of files, when I upload a file to S3 using my other application.
S3 bucket can subscribe Amazon Simple Notification Service. So If we could implement mechanism to subscribe ASN in RichFilemanger.
S3 can trigger lambda function. In this scenario we have own socket server. RichFilemanager subscribed to a socket server. When S3 trigger event to run a lambda function It notifies the socket server. Then socket server push message to RichFilemanager.
****I would like to know whether RichFilemanger has event mechanism to update
where when receive a update massage to refresh browser(read whole folder again because new file are received)
The text was updated successfully, but these errors were encountered: