Kiryl Valkovich
Kiryl Valkovich
Any progress on it?
@stanley-cheung yes, I tried. The problem isn't that I can't send a header. There is some inconsistent behavior. - If you'll take a look at the first case, `t1` and...
Hi, @c3wenjiaowang. This feature is not implemented.
@c3wenjiaowang I don't know. I'm not a maintainer of this repo. :)
Hi, @aleGuardiola. As I know, the search functionality isn't implemented yet on the client-side. PRs are always welcome. 🙂
To create a button with a simple search input at the client-side, you need to implement a new capability in your project. Example here: https://github.com/OpusCapita/filemanager/blob/f0afdf1e8038c469ae1176908d8f23b73949a00b/packages/connector-node-v1/src/capabilities/rename.js#L75 The `handler` function called on...
If I understand you right, now you can receive a list of found files from the server? You can display them as a list of clickable paths or something like...
Can you please share your capability's code?
I don't see any requests to the server's API in your code. You should use this endpoint: https://demo.core.dev.opuscapita.com/filemanager/master/api/docs/#files__id__search_get
You are right. `` is a good candidate to display this kind of data. Pagination, streaming, and push mechanism sounds like quite a big part of work. Unfortunately, I don't'...