HOR-826
This commit is contained in:
Paula V. Quispe
2016-04-21 14:51:00 -04:00
parent a967986172
commit 5a96935aa7
2 changed files with 12 additions and 8 deletions

View File

@@ -64,9 +64,7 @@ Ext.onReady(function () {
sortable: false,
dataIndex: 'previousValue',
renderer: function (value, p, record) {
return ' <button disabled="disabled" class="typeButton">'
+ record.data.previousValueType
+ '</button> ' + value;
return value;
}
},
{
@@ -75,9 +73,7 @@ Ext.onReady(function () {
sortable: false,
dataIndex: 'currentValue',
renderer: function (value, p, record) {
return ' <button disabled="disabled" class="typeButton">'
+ record.data.currentValueType
+ '</button> ' + value;
return value;
}
},
{