David Moorhouse

Results 87 comments of David Moorhouse

Still incorrect on the samples page http://www.jquery-bootgrid.com/Documentation#converters

Yes, unfortunately this method is called for each item (n) in the json array (from procedure TMVCJsonDataObjectsSerializer.JsonArrayToDataSet) And the method you referenced calls those RTTI methods for each field (n)...

I wrote a simple VCL app to create and populate a 3 column dataset with 20k records, serialise them out to a JSON string and then read them back. The...

To improve performance you'd need to providing an overload to `procedure TMVCJsonDataObjectsSerializer.JsonObjectToDataSet(const AJsonObject: TJDOJsonObject; const ADataSet: TDataSet; const AIgnoredFields: TMVCIgnoredList; const ANameCase: TMVCNameCase);` so that it looks more like `procedure...

I've made a small change to use the TMVCDataSetFields list, which is populated by calling GetDataSetFields in the TMVCJsonDataObjectsSerializer.JsonArrayToDataSet method , before enumerating the json array. Time has now fallen...

I'd also suggest renaming the record property - for clarity - from "I" to "Index" if that does not break too many things

@danieleteti > Yes the AContext param will be removed in 4.0.0-oxygen. It will break all the action filter methods, but a bit of cleaning is OK for a major version...

Why do you need that ugly path for ISAPI? My URLs look like `https://service.health.co.nz/v1/resource/2` I posted a guide here back in 2019 which explains how to host isapi files on...

No probs, I understand that sometimes legacy deployment can rule out cleaner solutions 😀