Search found 2192 matches

Hello.
Can you reproduce this problem on our latest demo? URL and credentials are provided in our documentation: https://bryntum.com/products/gantt/docs/guide/Gantt/quick-start/salesforce#online-example

Hello geethananth m u, Could you please clarify what are those changes and why don't you want to persist them. For example, when you provide a record with only a start and end date, duration will be calculated and duration is persisted field by default. So project will calculate it and send in a new...
Hello, Your problem might be caused by the fact first child of the LWC is not a grid container. If you move button below, component should be working fine: <template> <div class="container" lwc:dom="manual"></div> <div> <lightning-button variant="brand" label="Acti...
Hello. I'd like to know this approach is correct ? (because I'm unsure of the scope of influence when I upgrade the api version so I want to validate this approach first) In general, we recommend sticking to latest version. I would expect same principle to apply to Salesforce API version too. Could ...

If you don't use the bundle and instead import classes from individual source file, only required classes will be included into the app bundle. However, that means you cannot use react component we provide and instead wrap it yourself (which is not complex at all).

Hello.
I'm afraid I can't help much on native printing behavior. I suppose you can try adding a special CSS class to some rows and enforce page break after those. Or maybe try adding !important to the style definition.

Hello.
Reproduced, ticket opened here: https://github.com/bryntum/support/issues/8558 Thank you for report.

To work around this problem, you can load dependency data using from/to fields:

// got
{ id: 1, fromEvent: 1, toEvent: 2 }
// needed
{ id: 1, from: 1, to: 2 }
Hello. This code used to work because we used to set tooltip html with innerHTML property. But recently we switched to DOMParser().parseHTML() which is patched by LWS and does not allow <style> tag. You can use a workaround to get old code working, you just need to return DomConfig object instead of...

Hello.
I cannot reproduce this problem with the data you provided. Probably you have special export options or gantt configuration which we don't have. Please try reproducing issue on your local copy of the gantt export demo.

First you need to look at the outgoing request. Please refer to this troubleshooting guide for tips: https://github.com/bryntum/pdf-export-server/blob/main/docs/troubleshooting.md If request says landscape and Letter then problem must be on the server side which ignores page orientation. Check serve...