Lines Matching refs:setAttribute

22 		this.node.setAttribute('id', id);
26 this.node.setAttribute('id', Editor.guid());
72 this.node.setAttribute('name', value);
632 node.setAttribute('grid', (vs == null || vs.gridEnabled) ? '1' : '0');
633 node.setAttribute('gridSize', (vs != null) ? vs.gridSize : mxGraph.prototype.gridSize);
634 node.setAttribute('guides', (vs == null || vs.guidesEnabled) ? '1' : '0');
635 node.setAttribute('tooltips', (vs == null || vs.tooltips) ? '1' : '0');
636 node.setAttribute('connect', (vs == null || vs.connect) ? '1' : '0');
637 node.setAttribute('arrows', (vs == null || vs.arrows) ? '1' : '0');
638 node.setAttribute('page', ((vs == null && this.defaultPageVisible ) ||
642 node.setAttribute('fold', (vs == null || vs.foldingEnabled) ? '1' : '0');
645 node.setAttribute('pageScale', (vs != null && vs.pageScale != null) ?
654 node.setAttribute('pageWidth', pf.width);
655 node.setAttribute('pageHeight', pf.height);
662 node.setAttribute('background', vs.background);
669 node.setAttribute('backgroundImage', JSON.stringify(bgImg));
673 node.setAttribute('math', (vs != null && vs.mathEnabled) ? '1' : '0');
674 node.setAttribute('shadow', (vs != null && vs.shadowVisible) ? '1' : '0');
678 node.setAttribute('extFonts', vs.extFonts.map(function(ef)
863 style.setAttribute('id', fontId);
1294 tab.setAttribute('draggable', 'true');
1494 tab.setAttribute('title', mxResources.get('pages'));
1521 item.setAttribute('title', this.pages[index].getName() +
1600 tab.setAttribute('title', mxResources.get('insertPage'));
1625 tab.setAttribute('title', name + ((id != null) ? ' (' + id + ')' : '') + ' [' + pageNumber + ']');
1901 node.setAttribute('relatedPage', obj.relatedPage.getId())
1905 node.setAttribute('name', obj.relatedPage.getName());
1909 node.setAttribute('viewState', JSON.stringify(
1933 temp.setAttribute('id', node.getAttribute('relatedPage'));
1934 temp.setAttribute('name', node.getAttribute('name'));