Hi team,
In my own scenario, I would like to use CustomAdaptor in SfInPlaceEditor to update changes to the server just like using CustomAdaptor in SfGrid. But I failed to make a SfDataManager with "Adaptors.CustomAdaptor" mode work in SfInPlaceEditor. My code is like this:
<SfInPlaceEditor Mode="RenderMode.Inline" Type="InputType.Text" Value="SomeValue">
<SfDataManager Adaptor="Adaptors.CustomAdaptor">
<MyCustomAdaptor></MyCustomAdaptor>
</SfDataManager>
</SfInPlaceEditor>
When the data changed, nothing happened in MyCustomAdaptor class, even though I overrode all CURD methods of DataAdaptor and toke breakpoints to test, all that I can detect was the OnInitialized and its async version method being called. Is the CustomAdaptor mode not supported in SfInPlaceEditor yet? Or could you supply a proper sample to implement this kind of requirement?
Thanks.