Search found 2325 matches

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...

Ok, waiting for your feedback.

Same thing with alternating between "reschedule" and "rescheduleForward" - initial "rescheduleForward" allocates some extra memory (same as initial "reschedule"), further "rescheduleForward" stays at the same memory usage. See the video in the github...
Right, this is the order of capturing the onBarcodeScanned method. The only proper way would be to load your application code first (w/o launching it), install the override in the class'es prototype, then launch the app (so that the app captures the override). But may be you can test some other side...