Our state of the art Gantt chart


Post by jhughesoneplan »

If you have a resource such as O'Brian in the assignment picker it will show as O'Obrian. Is there a way to quickly fix that?


Post by mats »

I cannot reproduce that using the latest version, can you please provide a dataset to use?


Post by jhughesoneplan »

I did it on your advanced demo. All did was use JS to get a resource from the resource store and set one of the names to O'Brian.


Post by mats »

Right, that's already been fixed (try latest nightly build or wait for next patch release).


Post by jhughesoneplan »

I dont have the option to upgrade yet. Can I fix with an older version?


Post by mats »

Not without substantial effort I'm afraid. What blocks your upgrade?


Post by jhughesoneplan »

we have an enterprise application and that piece is not in our roadmap to be regression tested right now.


Post by mats »

Try something like this for a temp bandaid:

{
            type        : 'resourceassignment',
            width       : 250,
            showAvatars : true,
            editor      : {
                type   : AssignmentField.type,
                picker : {
                    height         : 350,
                    width          : 450,
                    resourceColumn : {
                        type     : 'assignmentResource',
                        renderer : ({ record }) => record.resource?.name || ''
                    },

Post Reply