I have experienced trouble getting the TWebRadServerClientDataSet to populate all the fields returned. Is there a known bug, or fix?
Configuration is very basic... When I use equivalent components in VCL mode, all data is returned, just not with this TMS dataset :
Problem:
Full dataset is returned when isolated from the TMS component:
[image]
Delphi/TMS configuration:
[image]
Event for login btn:
procedure TForm6.WebButton1Click(Sender: TObject);
begin
// load vendors here
radServer.RadServerURL := 'http://localhost:8080';
radServer.TableName := 'data/sales/';
radServer.KeyFieldName := 'Sales_id';
radServer.FieldDefs.Clear;
radServer.FieldDefs.Add('Sales_id', ftinteger);
radServer.FieldDefs.Add('product_Code',ftString);
radServer.FieldDefs.Add('Product_Name',ftString);
radServer.FieldDefs.Add('Cust_no',ftString);
radserver.Login(edtUsername.Text, edtPassword.Text);
Azure SQL Config:
[image]
Any assistance is appreciated in advance.