when using width="*" or height="*", an error is tracked in the canvas of the component
This can be seen in the example https://smartclient.com/smartclient-.../?id=editByRow
If you replace
	on the code
	Version SNAPSHOT_v13.1d_2024-04-02/Pro Deployment (2024-04-02)
							
						
					This can be seen in the example https://smartclient.com/smartclient-.../?id=editByRow
If you replace
Code:
	
	isc.ListGrid.create({
    ID: "countryList",
    width:550, height:224, alternateRecordStyles:true,
Code:
	
	isc.ListGrid.create({
    ID: "countryList",
    width:"*", height:"*", alternateRecordStyles:true,
Comment