Lines Matching refs:map_to

6540                 { name: "description", height: 70, map_to: "text", type: "textarea", focus: true },  property
6541 { name: "time", type: "duration", map_to: "auto" } property
6544 { name: "description", height: 70, map_to: "text", type: "textarea", focus: true }, property
6545 { name: "type", type: "typeselect", map_to: "type" }, property
6546 { name: "time", type: "duration", readonly: true, map_to: "auto" } property
6549 { name: "description", height: 70, map_to: "text", type: "textarea", focus: true }, property
6550 { name: "type", type: "typeselect", map_to: "type" }, property
6551 { name: "time", type: "duration", single_date: true, map_to: "auto" } property
12937 config.map_to = config.map_to || "parent";
13350 if (sections[i].map_to == property) {
13646 var mapping = section.map_to;
13649 if (section.map_to == "auto") {
13651 } else if (typeof (section.map_to) === "string") {
13652 mapping = { start_date: section.map_to };
13655 if (!section.map_to || typeof (section.map_to) === "string") {
13677 var map_to = gantt._resolve_default_mapping(sns[i]);
13678 if (typeof map_to == "string" && map_to != "auto") {
13679 task[map_to] = res;
13680 } else if (typeof map_to == "object") {
13681 for (var property in map_to) {
13682 if (map_to[property])
13683 task[map_to[property]] = res[property];
13744 var map_to = gantt._resolve_default_mapping(sns[i]);
13745 var value = this.defined(task[map_to]) ? task[map_to] : section.default_value;
17618 var value = item[editorConfig.map_to];
17619 if(editorConfig.map_to == "auto"){
17643 var value = item[editorConfig.map_to];
17644 if(editorConfig.map_to == "auto"){
17711 var mapTo = editorConfig.map_to;