X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/6746dc89c47ed01b165cc1152533605f97eb8e8d..refs/heads/master:/docs/source/Column3.html
diff --git a/docs/source/Column3.html b/docs/source/Column3.html
index cd8fef7f..072238b2 100644
--- a/docs/source/Column3.html
+++ b/docs/source/Column3.html
@@ -3,8 +3,8 @@
The source code
-
-
+
+
@@ -62,7 +62,7 @@ Ext.define('Ext.tree.Column', {
record.get('checked') ? 'aria-checked="true"' : ''
));
if (record.get('checked')) {
- metaData.tdCls += (' ' + Ext.baseCSSPrefix + 'tree-checked');
+ metaData.tdCls += (' ' + treePrefix + 'checked');
}
}
if (record.isLast()) {
@@ -90,12 +90,14 @@ Ext.define('Ext.tree.Column', {
record = record.parentNode;
}
if (href) {
- formattedValue = format('<a href="{0}" target="{1}">{2}</a>', href, target, formattedValue);
+ buf.push('<a href="', href, '" target="', target, '">', formattedValue, '</a>');
+ } else {
+ buf.push(formattedValue);
}
if (cls) {
metaData.tdCls += ' ' + cls;
}
- return buf.join("") + formattedValue;
+ return buf.join('');
};
this.callParent(arguments);
},