Search found 2540 matches

That is not supported out of the box. Supported filter types are "text"/"number"/"date" with corresponding widgets "textfield"/"numberfield"/"datefield". So you'll have to extend the feature and implement it by yourself. Or another option i...
Hello Renato, With your help I was able to reproduce this issue in our Basic demo. Thanks a lot! Ticket here: https://app.assembla.com/spaces/bryntum/tickets/8794-event-disappears-when-dragged-to-a-different-resource-if-nested-field-mapping/details About https://app.assembla.com/spaces/bryntum/ticke...
Please open Basic demo and run in console: gantt.dependencyStore.on('change', ({ action, records }) => { console.log(action, records && records[0]) }) Then drag create a new dependency 2019-06-26_1757.png and see the output 2019-06-26_1745.png You can see that fromEvent/toEvent are there. Ba...
Not supported out of the box. That custom element is never promised to be a fully functional thing. We included it for demo purposes only. From docs: This is more of a proof of concept than a ready to use class. Though if you had a license you would look at the code base and get some inspiration out...
I have no idea what .activity is in your application. You can receive target element using tip.activeTarget property. beforeShow: function({ source : tip }) { console.log(tip.activeTarget) } But without a full context I cannot tell more. Please explain better what you're trying to achieve and attach...
Please show how you add and use the tooltip. For example using CellTooltip feature you have record and column in the arguments. Please see Cell tooltip demo for reference. examples/celltooltip/app.js features : { // enable CellTooltip and configure a default renderer cellTooltip : ({ record, column ...
That's a known issue. Here is the ticket: https://app.assembla.com/spaces/bryntum/tickets/4918-percentdone-logic-with-milestones/details#

Thanks for your feedback!

Cheers,
Pavel
Hello, Zooming is not supported when workingTime is enabled. I've updated docs and added a comment in the demo. Also created a feature request. So when zooming feature is well-tested against workingTime feature, it will be officially supported. Ticket here: https://app.assembla.com/spaces/bryntum/ti...
Please see the docs here: https://www.bryntum.com/docs/scheduler/#Scheduler/feature/HeaderContextMenu#config-processItems For example: features : { headerContextMenu : { processItems({ items }) { // Add or remove items here as needed items.splice(1, 1); } } },