Changelog
Version 24.2.0.1
> Release Date: **2024-07-18**
### Developer
Andrej Grlica
### Description
- Bug-Fix with hierarchy levels.
- Bug-Fix display properly no data found message.
### Upgrade description
Upgrade package "UC_GANTT" and the plugin "United Codes Gantt Chart Pro".
### File Versions
* 24.2.0.2 PL/SQL
* 24.2.0.1 JavaScript
* 24.2.0.1 Plugin
Version 24.2.0.0
> Release Date: **2024-03-01**
### Developer
Andrej Grlica
### Description
- With this version of the plugin supported version of the Oracle APEX is from 22.1 onwards.
- Re-design of the plugin, "row-data" instead of the previously "task-data" parser
list of new features:
* Task dependency
* Task, Resource, and Dependency Templates
* Theme changes
* Downtime
* Overtime
* Color (Weekend, Current time)
* Time buckets
* Custom scales and date formats (Date converter included)
* Custom validations (click, move, resize)
* Option to load additional modules (ex. oj-avatar)
### Upgrade description
Upgrade package "UC_GANTT" and the plugin "United Codes Gantt Chart Pro".
If the "sort" functionality was used, please move the function into the new function "sortData" in "option.methods".
/**
* Example :
* Previously
*/
function (pOptions) {
//Invert resource sort
pOptions.sort =
function (data) {
return data.sort(function (a, b) {
return a.resource < b.resource ? 1 : -1;
})
};
return pOptions;
}
/**
* Example :
* New from 24.2
*/
function (pOptions) {
pOptions.methods = {
//Invert resource sort
sortData :
function (data) {
return data.sort(function (a, b) {
return a.resource < b.resource ? 1 : -1;
})
}
/*
sortData : function (data) {
//No sort
return data;
}
*/
};
return pOptions;
}
### File Versions
* 24.2.0.0 PL/SQL
* 24.2.0.0 JavaScript
* 24.2.0.0 Plugin
Version 24.1.0.0
> Release Date: **2024-02-01**
### Developer
Andrej Grlica
### Description
- Automatic TimeZone (Check Getting Started > Usage > Advanced Settings > Automatic Time Zone)
- Bug Fix on Update Drag and Drop, exclude ":APEX$GANTT_RESOURCE_ID" in update statement if needed
- Documentation improvement
### Upgrade description
Upgrade package "UC_GANTT" and the plugin "United Codes Gantt Chart Pro".
### File Versions
* 24.1.0.0 PL/SQL
* 24.1.0.0 JavaScript
* 24.1.0.0 Plugin
Version 23.2.0.0
> Release Date: **2023-11-23**
### Developers
- Andrej Grlica
- Uroš Adlešič
### Description
- Upgraded JavaScript libraries to support APEX 23.2
- Version of Plugin is also set to be "23.2"
- Bug Fix on Refresh Region
### Upgrade description
Upgrade package "UC_GANTT" and the plugin "United Codes Gantt Chart Pro".
### File Versions
* 23.2.1.1 PL/SQL
* 23.2.0.0 JavaScript
* 21.2 Plugin
Version 21.1.0.3
> Release Date: **2021-05-18**
### Developer
- Andrej Grlica
### Description
- JavaScript changes
Fixed refresh option in case Display selector
Changed attribute "JavaScript Initialization Code" definition
### Upgrade description
Gantt pages which used "JavaScript Initialization Code" will stop working.
To fix that please change previously used code :
{
"gantt": {
"gridlines.horizontal":"visible",
"gridlines.vertical":"visible",
"row-axis.rendered":"on",
"major-axis.scale":"months"
}
}
Change with:
function (pOptions) {
pOptions.gantt = {
"gridlines.horizontal":"visible",
"gridlines.vertical":"visible",
"row-axis.rendered":"on",
"major-axis.scale":"months",
};
return pOptions;
}
### File Versions
* 21.01.0.2 PL/SQL
* 21.01.0.3 JavaScript
* 21.01.0.3 Plugin
Version 21.1.0.2
> Release Date: **2021-04-15**
### Developer
Andrej Grlica
### Description
- shortDesc displayed inside custom options (when custom toolbar or HTML template)
- plug-in help update (toolbar HTML template)
### File Versions
* 21.01.0.2 PL/SQL
* 1.4.0 JavaScript
* 1..4.1 Plugin