1. SmartClient Version: v12.0p_2018-09-15/Pro Deployment (built 2018-09-15)
2. Build identifier: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Firefox/31.0
3. N/A
4. N/A
5. N/A
6. Code follows
Starting from Showcase example Grids/Data Binding/ ListGrid fields.
The code snippet does not display the error icon in "China" cell.
The screenshot below shows no error icon was rendered.
The same code when executed on SmartClient Version: v11.0p_2016-08-13/Pro Development Only (built 2016-08-13)
correctly renders the error icon with the message.
This bug is a major issue.
Is there a work around for that or will it be fixed in a subsequent release?
2. Build identifier: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Firefox/31.0
3. N/A
4. N/A
5. N/A
6. Code follows
Starting from Showcase example Grids/Data Binding/ ListGrid fields.
Code:
isc.ListGrid.create({ ID: "countryList", width:500, height:224, alternateRecordStyles: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, [B]canEdit: true[/B] }) [B]countryList.setFieldError(1, 1, "Error icon appears with message");[/B]
The screenshot below shows no error icon was rendered.
The same code when executed on SmartClient Version: v11.0p_2016-08-13/Pro Development Only (built 2016-08-13)
correctly renders the error icon with the message.
This bug is a major issue.
Is there a work around for that or will it be fixed in a subsequent release?
Comment