Hi,
I think that removeFields shouldn't be included in SummaryBuilder.
Best regards,
Janusz
I think that removeFields shouldn't be included in SummaryBuilder.
Code:
isc.ListGrid.create({
ID: "countryList",
width:500, height:224, alternateRecordStyles:true,
canRemoveRecords: true,
canAddSummaryFields: true,
fields:[
{name:"countryCode", title:"Code"},
{name:"countryName", title:"Country"},
{name:"independence", title:"Nationhood", type:"date", width:100},
{name:"population", title:"Population", type:"integer"},
{name:"gdp", title:"GDP", type:"float"}
],
data: countryData
})
Janusz
Comment