Hi, I tried this property in a sample and the save button still shows? How do I get the button to hide?
	
							
						
					Code:
	
	
isc.ListGrid.create({
    ID: "itemList",
    width:500, height:300, 
    alternateRecordStyles:true,
    expansionFieldImageShowSelected:true,
    // use the supplyItemWithOps dataSource and use it's "outputsLimitedFetch" operation.
    // this demonstrates using "outputs" on an operationBinding to forcibly limit the data 
    // retrieved for each row
    dataSource: supplyItemWithOps,
    fetchOperation: "outputsLimitedFetch",
    autoFetchData: true,
    fields: [
        {name: "itemName"},
        {name: "SKU"},
        {name: "category"}
    ],
    // allow multiple records to be expanded, but limit it to 3
    canExpandRecords: true,
    canExpandMultipleRecords: true,
    maxExpandedRecords: 3,
            showExpansionEditorSaveButton:false,
expansionMode:"editor"});

Comment