any update on this? I want to show the links as just the text (just like label or something like that, not input field)
Support Forum
Hi,
any update on this? I want to show the links as just the text (just like label or something like that, not input field)
Just letting you know, our response time is 3 working days, according to forums rules. When you update your thread with ping messages, it goes down in prio (automated) and 3 working days delay starts again
Now, My question is: Is it possible to show just the URL of the file name on the editor pop up? I would like to show the file name and download link. Basically, I just want to display extra text on the edit pop up, is there any related resources for that as well?
Please post runnable code with instruction how to build and run it. In this case we will be able to provide exact code.
#PS: By the way I am working on taskboard, is it same across all widgets like Gantt? Because most of the examples you are sharing from from Gantt though.
Sorry for posting wrong link, we have docs for all components, please see https://bryntum.com/products/taskboard/docs/guide/TaskBoard/customization/taskedit
https://bryntum.com/products/taskboard/docs/api/TaskBoard/feature/TaskEdit#event-beforeTaskEditShow
in taskFileUpload
you can call source.up()
to get parent component. Since I don't have runnable test case, I can't give you exact solution. so, try to find container (with up().up()
constructions and debugger), that has taskRecord property.
Another way, in beforeTaskEditShow
using widgetMap
as it shown in demo code I posted before in docs, find your field by name and set taskRecord
to it:
listeners : {
beforeTaskEditShow({ editor, taskRecord }) {
const yourFIleFIeld = editor.widgetMap.yourFIleFIeldName;
yourFIleFIeld.taskRecord = taskRecord;
}
}
In that case you will have it in your handlers scope in source
.
All the best,
Alex
Is it possible to create an example like one of these https://bryntum.com/products/taskboard/examples/, where I could upload files (multiple), and list them for download, edit, remove, using task editor pop up?
Hi,
Thanks for the question! I've opened a ticket for your request here https://github.com/bryntum/support/issues/9945
You can subscribe on ticket updates to be notified when it's done.
All the best,
Alex