Premium support for our pure JavaScript UI components


Post by mohits »

Hi ,
Currently we have implemented licensed version of Bryntum scheduler.
I need to integrate this with server side using Java ,so need Java domain objects for scheduler similar as available for Gantt.
As we have also implemented gantt in our product ,for which we got help of domain object provided for server side implementation.
Please help.


Post by arcady »

We don't ship Java backend demos w/ Bryntum Scheduler yet I'm afraid.

But as a start point you can use such demos from Scheduler for Ext JS.
The code should work fine except you'll need to handle old field names. We use capitalized field names in Ext Scheduler (StartDate, EndDate etc) while in new Bryntum Scheduler we use camel cased ones (startDate, endDate etc).

This can be handled either on the client side (you can map to old names in models configuration) or on the server side (just provide proper names to @JsonProperty annotations):

    @JsonProperty("StartDate")
    public Date getStartDate() {
        return startDate;
    }

Please let us know how that worked.
Good luck! :)


Post Reply