I think I found the issue ..
Sorry I did not pick this up in the beginning;
Here is my declaration:
DogDataGrid: TWebResponsiveGrid;
Looking in the WEBLib.Grids, I do not see the the overloaded method :
{$IFNDEF LCLTMSWEB}
[ComponentPlatforms(TMSWebPlatform)]
{$ENDIF}
TWebResponsiveGrid = class(TWebCustomControl)
private
....
public
constructor Create(AOwner: TComponent); override;
destructor Destroy; override;
procedure LoadFromJSON(const AURL: string; ADataNode: string = '');
procedure LoadFromCSV(const AURL: string; Delimiter: char = ';');
....
Is there a way to get the overloaded method into this type of Grid?
Regards
ViV