Search found 2752 matches
- Fri Jan 15, 2021 9:16 am
- Forum: Bryntum Scheduler
- Topic: [INFO REQ] Multiple Scheduler instance in Salesforce LWC
- Replies: 3
- Views: 15
- Thu Jan 14, 2021 4:17 pm
- Forum: Bryntum Gantt
- Topic: [INFO REQ] Integration with asp.net
- Replies: 14
- Views: 84
Re: [INFO REQ] Integration with asp.net
You're showing exactly the troubled config that I've been explaining to you. You need to add leading /
to the url.
- Thu Jan 14, 2021 3:55 pm
- Forum: Bryntum Gantt
- Topic: [INFO REQ] Integration with asp.net
- Replies: 14
- Views: 84
Re: [INFO REQ] Integration with asp.net
Those URLs are different, you're talking about redirection rules. Your ASP.NET backend is looking for ganttcrud
method on the Main controller, according to the URL /Main/ganttcrud/load
. Just open this URL in browser and you'll see. And then open same URL without leading Main/
.
- Thu Jan 14, 2021 2:52 pm
- Forum: Bryntum Gantt
- Topic: [INFO REQ] Integration with asp.net
- Replies: 14
- Views: 84
Re: [INFO REQ] Integration with asp.net
- Thu Jan 14, 2021 2:31 pm
- Forum: Bryntum Gantt
- Topic: [INFO REQ] Integration with asp.net
- Replies: 14
- Views: 84
Re: [INFO REQ] Integration with asp.net
It looks like you have wrong configuration for project load url, it should be smth like:
Code: Select all
project : {
transport : {
load : { url : '/ganttcrud/load' } // it should start with a slash specifying global URL
}
}
- Thu Jan 14, 2021 10:53 am
- Forum: Bryntum Gantt
- Topic: Error Resetting Queue
- Replies: 1
- Views: 18
Re: Error Resetting Queue
Hello Daniel.
This is a known problem, please see this issue for a workaround: https://github.com/bryntum/support/issues/2215
- Thu Jan 14, 2021 10:48 am
- Forum: Bryntum Gantt
- Topic: [INFO REQ] Integration Bryntum 4.0.7 on ASP.NET MVC
- Replies: 1
- Views: 12
Re: [INFO REQ] Integration Bryntum 4.0.7 on ASP.NET MVC
Hello.
This looks like a duplicated thread, please see my response here: viewtopic.php?p=81530#p81530 and lets move discussion there too.
- Thu Jan 14, 2021 10:45 am
- Forum: Bryntum Gantt
- Topic: [INFO REQ] Integration with asp.net
- Replies: 14
- Views: 84
Re: [INFO REQ] Integration with asp.net
- Thu Jan 14, 2021 10:18 am
- Forum: Bryntum Scheduler
- Topic: [INFO REQ] Multiple Scheduler instance in Salesforce LWC
- Replies: 3
- Views: 15
Re: [INFO REQ] Multiple Scheduler instance in Salesforce LWC
- Wed Jan 13, 2021 12:50 pm
- Forum: Bryntum Gantt
- Topic: [INFO REQ] ERROR: 'Conversion unit not provided'
- Replies: 1
- Views: 24
Re: [INFO REQ] ERROR: 'Conversion unit not provided'
Hello.
Reproduced, ticket opened here: https://github.com/bryntum/support/issues/2234 Thank you for report.
To work around this issue please update model definition:
Code: Select all
// app/lib/models/Task.js
...
{ name: 'effortUnit', dataSource: 'EffortUnit', convert(value) { return value || 'hour' } },
...