Search found 1690 matches

Do you turn on background printing in your browser?
All you need to do is put server responses to static json files and target your stores to them instead of you server scripts.
That's how you get standalone sample working without server web-services. Not so difficult really. :)
It's hard to say without seeing your source code. Can you please give us a short test case so we could investigate the issue?
The renderer is a config of column. As far as I understand you are trying to customize columns look? ... { xtype : 'treecolumn', dataIndex : 'Name', renderer : function (value, meta, record) { // here we assign some class meta.tdCls = 'custom-style'; return value; } } ...
The renderer receives as its arguments value, metaData (which can be used for CSS styling) and record.
The eventRenderer method is used for rendering tasks in the right part of the gantt panel (so called scheduling view).
And if you want to customize your left side (so called locked grid) columns you can use normal ExtJS renderer config.
can this be done???
Yes of course. Please take a look at this config: https://www.bryntum.com/products/gantt-for-extjs/docs/ ... adeChanges
>>> g.getSchedulingView().getXYFromDate(new Date(2012,01,01),new Date(2012,01,01))[0]; First of all getXYFromDate is deprecated method please use getCoordinateFromDate instead. getCoordinateFromDate (or deprecated getXYFromDate ) accepts 2 arguments: 1st is date and 2nd is boolean flag (wheter abso...
Please take a look at this template method https://www.bryntum.com/products/gantt-for-extjs/docs/ ... alidatorFn
You can implement there any custom logic so it will do the trick for you. :)
I'm affraid we are not RESTEasy experts here try to ask at their community forums. :)