Search found 47 matches

I see, Have implemented an OPTIONS method handler in the API and working OK now. Thanks. public HttpResponseMessage Options() { var resp = new HttpResponseMessage(HttpStatusCode.OK); resp.Headers.Add("Access-Control-Allow-Methods", "GET,POST"); return resp; } public JObject Post(...
Not sure what you mean by (fixed in 2.1.2). It was working up until 2.1.2. What about the HTTP Method. I specified POST in the config but since 2.1.2 it ignores this config and uses OPTIONS ?? Are you saying I cannot have a backend API that uses POST? sync : { method : 'POST', url: "https://loc...
Just been tracing the traffic (using Telerik Fiddler) and shown below is the different sync() traffic between v2.1.4(not working) and v2.1.1( working). As you can see it is not sending a POST in v2.1.4. It is sending OPTIONS ??? https://developer.mozilla.org/en-US/docs/Web/HTTP/Methods/OPTIONS This...
Config for transport is as below.. It is just a customized version of the advanced vue demo... export const ganttConfig = { startDate : '2019-01-06 00:00', project : new ProjectModel({ // Let the Project know we want to use our own Task model with custom fields / methods taskModelClass : Task, trans...
Hi Just upgraded from Gantt 2.1.1 to Gantt 2.1.4 and started getting Cors Errors which I do not get when using v2.1.1? Access to fetch at 'https://localhost:60832/api/Sync/?id=15323&gantt_ticket_number=5' from origin 'https://localhost:8081' has been blocked by CORS policy: Response to preflight...
Hi
Is there any option to have sync() return a full snapshot of the current gantt instead of the transactions (ie. changes to gantt) since last save?
Hi

Am calling gantt.project.sync() and want to know if there is any changes to be synced before I call this.
Is there a property I can check like gantt.project.hasChanges() or such.
Thanks
Jim
Thats OK. The https://dev.bryntum.com/examples/gantt/examples/advanced/#en is not even using a Toolbar they are just div buttons in the header. the GanttToolbar in examples/advanced/lib is same as used in \bryntum-gantt-2.0.4\gantt-2.0.4\examples\vue\javascript\advanced. no problem. Just an enquiry
which of the example folders has this updated layout for the toolbar. Am working from vue example myself \bryntum-gantt-2.0.4\gantt-2.0.4\examples\vue\javascript\advanced but can pull it out of another example if that is where it is. the 2.04 advanced vue example source code is unchanged from previo...