I tested with SmartClient_v83p_2013-08-18 and with SmartClient_v91p_2014-03-23_PowerEdition.
In 8.3, the following example wraps the header titles. In 9.1, t only wraps one of the header titles.
In 8.3, the following example wraps the header titles. In 9.1, t only wraps one of the header titles.
Code:
var testDs = [{
cwDynamic0:"1",
cwDynamic1:"2"
}];
isc.ListGrid.create({
ID: "testWrap",autoDraw:true,
confirmDiscardEdits: false,
modalEditing: true,width:700,
data: testDs,
autoSaveEdits: true,
showPrompt: false,
validateByCell:true,
headerHeight: 25,
headerButtonProperties: {wrap: true},
selectionProperty: "$isCwSelected",
$cwIsDynTable: true,
fields: [{name:"cwPK__",primaryKey:"true",showIf:" return false"},
{name:"cwDynamic0",title:"Generic Product Indicator",type:"text"},
{name:"cwDynamic1",title:"Equipment Feature SED Type",type:"text"},
{name:"cwDynamic2",title:"Call Forwarding Don't Answer",type:"boolean"},
{name:"cwDynamic3",title:"OS Long Product Description",type:"text"},
{name:"cwDynamic4",title:"Value (Custom Range Privileges)",type:"text"}],
height: "100%"
});
Comment