Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

MspExport feature : Export default start/end times #8733

Open
arcady-zherdev opened this issue Mar 4, 2024 · 0 comments
Open

MspExport feature : Export default start/end times #8733

arcady-zherdev opened this issue Mar 4, 2024 · 0 comments
Labels

Comments

@arcady-zherdev
Copy link

MS Project has default task start/end times. We could ad a way of providing those values:

  • based on the project calendar
  • or actually we could literally add such configs to the project model first

So far a workaround is

// set listener on Gantt construction step
const gantt = new Gantt({
    ---
    features : {
        mspExport : {
            listeners : {
                dataCollected : ({ data }) => {
                    data.DefaultStartTime = '08:00:00';
                    data.DefaultFinishTime = '17:00:00';
                }
            }
        }
    }
});

Requested here: https://forum.bryntum.com/viewtopic.php?f=51&t=28195&p=141666#p141666

@arcady-zherdev arcady-zherdev changed the title MSPExport: Export default start/end times MspExport feature : Export default start/end times Mar 4, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant