Search found 2331 matches

Hi,

You can provide a startDate : new Date() config for the scheduler during instantiation. This will disable the calculation of earliest date and match the old behavior for the case when no startDate config was provided.

@vladip Hi, the 2nd issue you reported has been resolved, the fix will be available in the next release and in the tomorrow nightly.

I'll be checking the 1st issue now.

The multiSelect config of the AssignmentField (which is inherited from the combo box) is not applicable in this case. AssignmentField does not render a list items, like combo box. Instead, it completely replaces the combo's picker with the custom widget - AssignmentPicker which is a grid. So using m...
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.