Error using TTMSFNCDateTimePicker

TMS Web Server on Localhost and Firefox.

When I try to navigate the TTMSFNCDateTimePicker I get an error, "Internalerror: too much recursion".

Unchanged code, no problems prior to version 1.6.1.0.

What exactly is "try to navigate"?
I retested with a new web app with a TTMSFNCDateTimePicker and some other controls and I cannot see any issue.

"Navigate", pick a date and/or a time.

Using Edge I get error "Uncaught range error"

My code in OnDateTimeChanged is:

procedure TfrmHoved.txtSluttReiseDateTimeChanged(Sender: TObject;
ADateTime: TDateTime);
var
NumberOfRows: integer; // Number of rows in a grid
i : integer;
aDate : tDateTime;
begin

// txtstartreise is a TTMSFNCDateTime Picker

NumberOfRows:=0;
NumberOfRows:=daysbetween(txtstartreise.SelectedDateTime,adatetime)+1;

if NumberOfRows<=1 then
agrid.RowCount:=2
else
agrid.RowCount:=NumberOfRows+1;

adate:=txtstartreise.SelectedDateTime;

i:=1;
for i:=1 to NumberOfRows-1 do
begin
agrid.Cells[0,i]:=datetostr(adate);
adate:=adate+1;
end;

end;

Hello,

We were able to reproduce this issue and we applied a fix for it. It will be available with the next TMS FNC UI Pack update.