RadiantQ Forum
Product => jQuery Gantt Package => Topic started by: Francois on May 02, 2017, 08:20:02 PM
-
I am looking for complete documentation for functions of the ganttControl object.
This user guide is a good start, but it seems incomplete.
Http://www.radiantq.com/Docs/jQueryGantt/UsersGuide/jQueryGanttUsersGuide.html
For example I found in the examples how to use ganttControl.AddSelectedItem but I found no reference about ganttControl.RemoveSelectedItem, I had to deduce its existence by browsing the ganttControl object with console.log (ganttControl) .
Currently I'm looking for a function to deselect all activities (eg ganttControl.RemoveAllSelectedItem) but I do not know where to look. If it does not exist I already know how to write one myself, but if it exists I do not wish to work for something that already exists :)
thank you
-
Francois,
You can get the all available properties, methods and events in the class reference file which is part of our install. You can find the class references in "<install folder>\Documentation\JSClassReference\index.html" file.
Currently, there is no in-build method to remove all selected items in Gantt. You can loop through all selected items and remove it by ganttControl.RemoveSelectedItem method.
Thanks
Raja
-
Thank you very much!