Search found 782 matches

Hi, We can unfortunately not give you an estimation date. Tickets that are flagged with high-priority are picked over those that are not when a dev grabs a new ticket to work on. Which of those tickets that gets picked first is determined based on the devs expertise, how many requests / reports we h...

Hi,

there is no zoom functionality for the year view. But you should be able to scale it by just setting a larger font-size using CSS.

Try something like this:

.b-panel[data-ref=year] {
	font-size : 20px;
}

Hi,

Please take a look at the header-summary demo, it refreshes the header on event store changes:

https://bryntum.com/products/scheduler/examples/header-summary/

It does so by calling scheduler.timeAxisColumn.refreshHeader()

Hi,

If you are using the timeRanges feature for the lines, the CSS for it has pointer-events : none on the containing div (from the .b-sch-canvas rule). Which prevents mouse interactions. Override that in your apps CSS:

.cLine {
  pointer-events : all;
}
Hi, The logic for percentDone is handled by the scheduling engine, the column just shows the result. So while you can reconfigure the column to use another field, it wont give you the aggregation up to the parents. What you probably should try instead is to use an AggregateColumn, and configure it t...

Happy to hear you figured it out!

You could also try using the Editor widget (https://bryntum.com/products/scheduler/docs/api/Core/widget/Editor). The docs on it are very brief, but you can check the sources for SimpleEventEdit to get the hang of it. Something like this could work: eventRenderer({ eventRecord }) { return [ { tag : '...

While not exactly what you are asking for, the SimpleEventEdit feature would give you a lighter editing experience. Perhaps worth trying https://bryntum.com/products/scheduler/examples/simpleeditor

Hello, First I most say that while TaskBoard can handle large datasets, a kanban board is not the ideal UI for it. It is better suited for a dataset of limited size. Secondly sorry but no, TaskBoard has not been designed to handle pagination and it wont send individual queries per column. Currently ...
Hi, for performance reasons, we reuse rows and cells as you scroll the grid. And by default cells are not cleared before being reused, since DOM might have been directly manipulated in the renderer without us knowing about it. You can change this behavior by configuring your column with alwaysClearC...