Lines Matching full:date

13 	 * specifies the content of start date or end date columns in grid
14 * @param date the date which needs formatting
18 date_grid(date: Date, task: any, column: string): string;
39 * сonverts a date object to a date string. Used to send data back to the server
40 * @param date the date which needs formatting
42 format_date(date: Date): string;
52 * @param date the date which needs formatting
55 grid_date_format(date: Date, column: string): string;
90 * @param start the date when a task is scheduled to begin
91 * @param end the date when a task is scheduled to be completed
94 grid_row_class(start: Date, end: Date, task: any): string;
98 * @param start_date start date of the scale cell
99 * @param end_date end date of the scale cell
103 histogram_cell_allocated(start_date: Date, end_date: Date, resource: any, tasks: any[]): void;
107 * @param start_date start date of the scale cell
108 * @param end_date end date of the scale cell
112 histogram_cell_capacity(start_date: Date, end_date: Date, resource: any, tasks: any[]): void;
116 * @param start_date start date of the scale cell
117 * @param end_date end date of the scale cell
121 histogram_cell_class(start_date: Date, end_date: Date, resource: any, tasks: any[]): void;
125 * @param start_date start date of the scale cell
126 * @param end_date end date of the scale cell
130 histogram_cell_label(start_date: Date, end_date: Date, resource: any, tasks: any[]): void;
145 * converts date string into a Date object
146 * @param date the string which need to be parsed
148 parse_date(date: string): Date;
152 * @param start the date when a task is scheduled to begin
153 * @param end the date when a task is scheduled to be completed
156 progress_text(start: Date, end: Date, task: any): string;
160 * @param start the date when a task is scheduled to begin
161 * @param end the date when a task is scheduled to be completed
164 quick_info_class(start: Date, end: Date, task: any): void;
168 * @param start the date when a task is scheduled to begin
169 * @param end the date when a task is scheduled to be completed
172 quick_info_content(start: Date, end: Date, task: any): string;
175 * specifies the date of the pop-up edit form
176 * @param start the date when a task is scheduled to begin
177 * @param end the date when a task is scheduled to be completed
180 quick_info_date(start: Date, end: Date, task: any): string;
184 * @param start the date when a task is scheduled to begin
185 * @param end the date when a task is scheduled to be completed
188 quick_info_title(start: Date, end: Date, task: any): string;
192 * @param start_date start date of the scale cell
193 * @param end_date end date of the scale cell
197 resource_cell_class(start_date: Date, end_date: Date, resource: any, tasks: any[]): string;
201 * @param start_date start date of the scale cell
202 * @param end_date end date of the scale cell
206 resource_cell_value(start_date: Date, end_date: Date, resource: any, tasks: any[]): string;
210 * @param date the date of a cell
212 scale_cell_class(date: Date): string;
222 * @param start the date when a task is scheduled to begin
223 * @param end the date when a task is scheduled to be completed
226 task_class(start: Date, end: Date, task: any): string;
229 * specifies the date format of the label in the 'Time period' section of the lightbox
230 * @param date the date which needs formatting
232 task_date(date: Date): string;
236 * @param date the date which needs formatting
238 task_end_date(date: Date): string;
242 * @param start the date when a task is scheduled to begin
243 * @param end the date when a task is scheduled to be completed
246 task_row_class(start: Date, end: Date, task: any): string;
250 * @param start the date when a task is scheduled to begin
251 * @param end the date when a task is scheduled to be completed
254 task_text(start: Date, end: Date, task: any): string;
257 * specifies the date period in the header of the lightbox
258 * @param start the date when a task is scheduled to begin
259 * @param end the date when a task is scheduled to be completed
262 task_time(start: Date, end: Date, task: any): string;
272 * @param date the date which needs formatting
274 time_picker(date: Date): string;
279 * @param date the date of a cell
281 timeline_cell_class(item: any, date: Date): string;
285 * @param date the date which needs formatting
287 tooltip_date_format(date: Date): string;
291 * @param start the date when a task is scheduled to begin
292 * @param end the date when a task is scheduled to be completed
295 tooltip_text(start: Date, end: Date, task: any): string;
298 * a string from an XML file is converted into a date object in conformity with this template
299 * @param date the date which needs formatting
301 xml_date(date: Date): string;
304 …* a date object is converted into a string in conformity with this template. Used to send data bac…
305 * @param date the date which needs formatting
307 xml_format(date: Date): string;
311 * @param start the date when a task is scheduled to begin
312 * @param end the date when a task is scheduled to be completed
315 rightside_text(start: Date, end: Date, task: any): string;
319 * @param start the date when a task is scheduled to begin
320 * @param end the date when a task is scheduled to be completed
323 leftside_text(start: Date, end: Date, task: any): string;
327 * @param start_date the date when a task is scheduled to begin
328 * @param end_date the date when a task is scheduled to be completed
331 lightbox_header(start_date: Date, end_date: Date, task: any): string;
362 …s the auto scheduling mode, in which tasks will always be rescheduled to the earliest possible date
447 …* sets the date format that is used to parse data from a data set and to send dates back to the se…
539 end_date: Date;
717 * specifies the end date of a project
719 project_end: Date;
722 * specifies the start date of a project
724 project_start: Date;
877 * enables showing tasks that are outside the specified date range in the Gantt chart
909 start_date: Date;
942 * sets the format of the date label in the 'Time period' section of the lightbox
1047 * defines date formats that are used to parse data from a data set and to send data to a server
1053 add(origin: Date, count: number, unit: string): Date;
1054 copy(origin: Date): Date;
1055 date_part(origin: Date): Date;
1056 time_part(origin: Date): Date;
1057 day_start(origin: Date): Date;
1058 month_start(origin: Date): Date;
1059 week_start(origin: Date): Date;
1060 year_start(origin: Date): Date;
1061 getISOWeek(origin: Date): number;
1062 getUTCISOWeek(origin: Date): number;
1065 convert_to_utc(origin: Date): Date;
1106 date: GanttLocaleDate; property
1142 * a set of date formatting methods
1144 date: GanttDateHelpers; property
1308 * calculates the end date of a task
1311 calculateEndDate(config: any): Date;
1379 * returns the index of the column by the date
1380 * @param date a date object
1382 columnIndexByDate(date: Date): void;
1435 * gets the date of the specified horizontal position in the chart area
1436 * @param pos the relative horizontal position you want to know the date of
1438 dateFromPos(pos: number): Date;
1598 getClosestWorkTime(config: any): Date;
1833 * @param from optional, the start date of the period
1834 * @param to optional, the end date of the period
1836 getTaskByTime(from?: Date, to?: Date): any[];
1875 * @param from the start date of the item
1876 * @param to the end date of the item
1878 getTaskPosition(task: any, from: Date, to: Date): any;
1921 * returns the working hours of the specified date
1922 * @param date a date to check
1924 getWorkHours(date: Date): any[];
1972 init(container: string|HTMLElement, from?: Date, to?: Date): void;
2054 * checks whether the specified date is working or not
2115 * gets the relative horizontal position of the specified date in the chart area
2116 * @param date a date you want to know the position of
2118 posFromDate(date: Date): number;
2194 * rounds the specified date to the nearest date in the time scale
2195 * @param date the Date object to round
2197 roundDate(date: Date): Date;
2256 * scrolls the chart area to makes the specified date visible
2257 * @param date the date to show in the chart
2259 showDate(date: Date): void;