Search found 2328 matches

Hi, In the first place, the parent->child dependencies are not valid, because they usually create a cycle in the computations. This is because parent start/end dates are defined as min/max of its children's start/end dates and to scheduling a child with such dependency requires parent to be already ...
Hi, Unfortunately there's no straightforward way to do that. Your approach with manual start/stop transaction is the closest whats possible here without deep hacking. The first issue is the API call to update column B could take some time, so any other unrelated change I make in my grid before the A...
This might be that your test page is redirected to some other domain sometimes. Then, when test script tries to access test page, the error appears, since its a cross-origin access to the iframe. Or it might be an error from your application. Try may be somehow logging all redirects of your test pag...

Glad it works, yw!

Hi, If I'm correct, you need to set the correct "loader paths" for both namespaces, something like: loaderPath: { 'Ext.chart.commonFiles': '../../../ext/packages/charts/src/chart' , 'Ext.chart.Chart1': '../../../ext/packages/charts/classic/src/chart' }, How does the loaderPath config looks...
@shashank.yadav Hi, the actions grid remains empty in your scenario because the stm ( StateTrackingManager , which performs the undo/redo tracking) instance is not enabled. It is enabled automatically by the UndoRedo widget , if the project has autoLoad option enabled, otherwise one need to do it ma...

Hi,

When code is is running with code coverage instrumentation, the window.__coverage__ global is created. You should be able to check for its presence.

This type represents a class constructor function. It uses the "newable function" or "construct signature" and a generic argument for the actual class type. You can find more here: https://www.typescriptlang.org/docs/handbook/2/functions.html#construct-signatures So, AnyConstruct...

@ryan-ressio Hi, please check the ticket for the updates.

Start/end date fields use "calendar" time and not just increment/decrement of the dates. This is because of the following use case. Imagine a 24/5 project calendar and a task starting on Monday. We then decrement the start date of that task. To which date it should be set? Setting it on Su...