Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    showExpansionEditorSaveButton question

    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"});

    #2
    The logic to handle that flag being set to false was missing - we've fixed it for builds dated September 15 and later.

    Comment

    Working...
    X