Announcement

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

    alwaysShowEditors and selectionAppearance checkbox

    Hello, I just noticed that alwaysShowEditors:true (which I use with just a column editable), seems to exclude the possibility to use selectionAppearance: "checkbox", is it expected?

    test case:

    Code:
    isc.ListGrid.create({
        ID: "countryList",
        width:500, height:224,
        data: countryData,
        selectionAppearance:"checkbox",
        alwaysShowEditors:true,
        fields:[
            {name:"countryCode", title:"Flag", width:60, type:"image", imageURLPrefix:"flags/24/", imageURLSuffix:".png"},
            {name:"countryName", title:"Country"},
            {name:"capital", title:"Capital"},
            {name:"continent", title:"Continent", canEdit:true}
        ]
    })

    #2
    Hi Claudio
    Yes these features are currently incompatible. If using these features in conjunction is a requirement for you, please let us know and we'll analyze what would be involved in adding this support.

    Thanks
    Isomorphic Software

    Comment

    Working...
    X