Skip to content

Commit

Permalink
fix(Addressbook): contaccting grid props to small
Browse files Browse the repository at this point in the history
  • Loading branch information
corneliusweiss authored and pschuele committed Mar 20, 2024
1 parent b3cb6c0 commit 85b56d8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tine20/library/ExtJS/src/widgets/grid/PropertyGrid.js
Original file line number Diff line number Diff line change
Expand Up @@ -141,14 +141,15 @@ Ext.grid.PropertyColumnModel = Ext.extend(Ext.grid.ColumnModel, {
dateFormat : 'm/j/Y',
trueText: 'true',
falseText: 'false',
nameWidth: 120,

constructor : function(grid, store){
var g = Ext.grid,
f = Ext.form;

this.grid = grid;
g.PropertyColumnModel.superclass.constructor.call(this, [
{header: this.nameText, width:50, sortable: true, dataIndex:'name', id: 'name', menuDisabled:true},
{header: this.nameText, width: this.nameWidth, sortable: true, dataIndex:'name', id: 'name', menuDisabled:true},
{header: this.valueText, width:50, resizable:false, dataIndex: 'value', id: 'value', menuDisabled:true}
]);
this.store = store;
Expand Down

0 comments on commit 85b56d8

Please sign in to comment.