BUG 000 PM tables view edit table Fix

- the primary key wasn't viewing correctly, but it is fixed now
This commit is contained in:
Erik Amaru Ortiz
2011-07-27 15:51:15 -04:00
parent 5d99ab68a6
commit ba3a74bb2b

View File

@@ -905,11 +905,10 @@ function loadTableRowsFromArray(records)
field_label: records[i].FLD_DESCRIPTION,
field_type : records[i].FLD_TYPE,
field_size : records[i].FLD_SIZE,
field_key : records[i].FLD_KEY,
field_null : records[i].FLD_NULL,
field_key : records[i].FLD_KEY == '1' ? true : false,
field_null : records[i].FLD_NULL == '1' ? true : false,
field_filter: records[i].FLD_FILTER == '1' ? true : false
});
store.add(row);
}
}