Dan Hansen
Dan Hansen
@NGUYET25483-pki @MinhMit I've implemented it like this, with support for objects as the base only so far. ```csharp public class CustomODataResourceSerializer : ODataResourceSerializer { public CustomODataResourceSerializer(IODataSerializerProvider serializerProvider) : base(serializerProvider) {...
@solbirn I can't get that to work with a model like this: ```csharp public class Foo { public JsonObject Bar { get; set; } } ```
I got mine working again by changing `hx-swap="morph"` to `hx-swap="morph:innerHTML"`. Setting `id`s didn't change anything for me. Perhaps the `alpine-morph` extension documentation should mention setting the above value when using...