Lines Matching refs:text

6405 				gantt.message({type: "error", text: message, expire: -1});
7570 return task.text;
7637 return "<b>" + from.text + "</b> &ndash; <b>" + to.text + "</b>";
7644 …var text = "<b>" + from.text + "</b> " + (from_start ? labels.link_start : labels.link_end) + "<br…
7647text += "<b> " + to.text + "</b> " + (to_start ? labels.link_start : labels.link_end) + "<br/>";
7649 return text;
7665 …return "<b>Task:</b> " + event.text + "<br/><b>Start date:</b> " + gantt.templates.tooltip_date_fo…
7796 if (item.text === undefined) {
7797 item.text = gantt.locale.labels.new_task;
12918 tasks.unshift({id: gantt.config.root_id, text: config.root_label || ""});
12925 var text = config.template || gantt.templates.task_text;
12927 var label = text.apply(gantt, [tasks[i].start_date, tasks[i].end_date, tasks[i]]);
13953 var opts = { text: message }; property in gantt._dhtmlx_confirm.opts
14495 if (!t.text) t.text = node.firstChild ? node.firstChild.nodeValue : "";
14522 _getXML: function (text, loader, toptag) { argument
14530 xmlParseError(text);
14539 parse: function (text, loader) { argument
14540 loader = this._getXML(text, loader);
14556 …ogress='" + obj.progress + "' end_date='" + obj.end_date + "'><![CDATA[" + obj.text + "]]></task>";
14575 parse: function (text, loader) { argument
14576 loader = gantt.xml._getXML(text, loader, "projects");
14603 ev.text = ev.name;
14708 function button(text, className, result) { argument
14709 var buttonAriaAttrs = gantt._waiAria.messageButtonAttrString(text);
14712 …tton_css + "' data-result='" + result + "' result='" + result + "' ><div>" + text + "</div></div>";
14715 function info(text) { argument
14723 messageBox.hide(text.id);
14725 message.innerHTML = "<div>" + text.text + "</div>";
14726 message.className = "gantt-info dhtmlx-info gantt-" + text.type + " dhtmlx-" + text.type;
14728 messageBox.hide(text.id);
14729 text = null;
14739 if (text.expire > 0)
14740 messageBox.timers[text.id] = window.setTimeout(function () {
14741 messageBox.hide(text.id);
14742 }, text.expire);
14744 messageBox.pull[text.id] = message;
14747 return text.id;
14779 …opup_text" id="' + contentId + '"><span>' + (config.content ? '' : config.text) + '</span></div><d…
14866 function box_params(text, type, callback) { argument
14867 if (typeof text != "object") {
14872 text = {text: text, type: type, callback: callback}; property in module.exports.box_params.text
14874 return text;
14877 function params(text, type, expire, id) { argument
14878 if (typeof text != "object")
14879 text = {text: text, type: type, expire: expire, id: id};
14880 text.id = text.id || utils.uid();
14881 text.expire = text.expire || messageBox.expire;
14882 return text;
14886 var text = box_params.apply(this, arguments);
14887 text.type = text.type || "confirm";
14888 return alertPopup(text);
14891 var text = box_params.apply(this, arguments);
14892 text.type = text.type || "alert";
14893 return confirmPopup(text);
14896 var text = box_params.apply(this, arguments);
14897 text.type = text.type || "alert";
14898 return boxPopup(text);
14920 var messageBox = function (text, type, expire, id) { argument
14921 text = params.apply(this, arguments);
14922 text.type = text.type || "info";
14924 var subtype = text.type.split("-")[0];
14927 return alertPopup(text);
14929 return confirmPopup(text);
14931 return boxPopup(text);
14933 return info(text);
15709 text: gantt.locale.labels.new_task property in module.exports.insertPlaceholder.placeholder
17394 var textEditorFactory = __webpack_require__(/*! ./editors/text */ "./sources/core/ui/grid/editors/e…
17407 text: new (textEditorFactory(gantt))(), property in gantt.config.editor_types
23746 var text = template(task.start_date, task.end_date, task);
23747 if (!text) return null;
23750 content.innerHTML = text;
27097 function escapeQuotes(text){ argument
27098 return (text + "").replace(singleQuotes, "&#39;");
27105 var text = escapeQuotes(stripHTMLLite(attr[i]));
27106 attributes.push(i + "='" + text + "'");