Show cool things you have done with our products


Post by mats »

This is done automatically for you, no need to do any manual row refreshing.

Post by Chandrashekhar27 »

In My requirement i have two columns ..."status" and %done

after updating "status" column into "completed" ..."% done" column need to show 100% ....

but in current gantt it is not happening....need to refresh updated row....

please suggest

Post by Alex Avdeev »

You can use few ways to do it. Handle status change and change the value of percent done manually.
This is just a data, handle some event and do any changes with data. Simple.

Post by Chandrashekhar27 »

Hi Alex,

for ex---
Before changing the status....columns like

%done Status
50 progress

i am updating "%done" data in back end after changing status to completed ....
now columns

%done Status
50 Completed

But my requirement need to show columns like ...

%done Status
100 Completed

after updating status column .....without reloading the page


please suggest me how to do??

Post by mats »

Your renderer code should handle this, not our code. Do you have a renderer set for your column?

Post by Chandrashekhar27 »

Thank u

How to change "View Preset"[weekAndDayLetter] default 10 weeks into 20 weeks??

and is it possible display gantt chart timescale in "Quarterly " using your code

Post by jakub »

You can define your own preset similar to workAndDayLetter and define both defaultSpan to show 20 weeks, and set unit in headerConfig to 'QUARTER'.
JavaScript/Angular/ExtJS consulting - kuba@virtualdesign.pl

Post by Chandrashekhar27 »

Hi
I am using your licensed version component[3.4.0]...i have facing issues...

After adding dependencey[by dragg and drop]...when i click on arrow mark to edit "dependencey direction"
dependencey plugin not dispalying...but it work after reloading the page

after adding dependencey and click on arrow mark to edit direction following exception is coming in following location
"extjs.cachefly.net/ext-3.4.0/ext-all-debug.js"
Uncaught TypeError: Cannot read property 'data' of undefined
 
    loadRecord : function(record){
        this.setValues(record.data);
Uncaught TypeError: Cannot read property 'data' of undefined
        return this;
how to refresh or reload the gantt chart after adding dependencey??
how to fix this issue please suggest us....

Post by jakub »

You can try calling .refresh() method or calling save() on your store.
JavaScript/Angular/ExtJS consulting - kuba@virtualdesign.pl

Post by Chandrashekhar27 »

Thank u
 var taskStore = new App.TaskStore(),
            dependencyStore = new App.DependencyStore();
 var g = new App.MyGanttPanel({
            // region: 'center',
            startDate: start,
            endDate: end,
            viewPreset: 'weekAndDayLetter',
           
            taskStore: taskStore,
            dependencyStore: dependencyStore

        });
where to apply refresh() or save()

can u represent with code

Locked