SmartClient Version: SNAPSHOT_v13.0d_2021-07-02/AllModules Development Only (built 2021-07-02)
12.1 is working
Chrome, FF on MacOS
Hello, please modify the expansionDetailField sample like this:
Then:
- expand the first row
- click add, no focus in first cell
- mouse click and type text in the first cell, press enter, nothing happens
- if I click outside, the typed text is cleared
note that if I let the grid height == 300, so that the grid is scrolled, entering a new row works even with the row expanded.
12.1 is working
Chrome, FF on MacOS
Hello, please modify the expansionDetailField sample like this:
Code:
isc.ListGrid.create({
ID: "countryList",
width:500, height:"100%",
alternateRecordStyles:true,
expansionFieldImageShowSelected:true,
data: countryData,
fields: [
{name: "countryName", title: "Country"},
{name: "capital", title: "Capital"},
{name: "continent", title: "Continent"}
],
canExpandRecords: true,
expansionMode: "detailField",
detailField: "background"
});
isc.IButton.create({
top:0,
left:550,
title:"add",
click:function(){
countryList.startEditingNew({gdp:5})
}
})
- expand the first row
- click add, no focus in first cell
- mouse click and type text in the first cell, press enter, nothing happens
- if I click outside, the typed text is cleared
note that if I let the grid height == 300, so that the grid is scrolled, entering a new row works even with the row expanded.
Comment