Behavior TWebTableControl

I have placed an TWebTableControl inside a FORM html element.
If I add a button to the TWebTableControl with AddButton and push the button, then the
OnButtonClick event is fired, but also a form-data submit is done.
I don't want the button to trigger the form-data submit, so could you change the code

in WEBLib.Grids, TCustomTableControl.AddButton:

s := '<BUTTON style="vertical-align:middle"';

to:

s := '<BUTTON type="button" style="vertical-align:middle"';

We will apply this improvement for the next update.