AEM 6.4 Touch UI In place Edit
Hi All,
I am trying to create a text component similar to a core component available in AEM 6.4 at "/apps/core/wcm/components/text/v2/text" I am creating the same named as "mytext" at "/apps/myapp/components/mytext".
I see that in the node at "/apps/core/wcm/components/text/v2/text/cq:editConfig/cq:inplaceEditing" I need to use property 'editorType' as 'text' only. However since my component name is './mytext' the node created saves the authored text with property name 'mytext'. But if I try to save a text using in place editor in authoring mode the authored text is now saved with property name 'text'. Ideally I would wish it to be 'mytext' so that if I author the component using configure button or edit button, in both cases, I should see same text on the page.

On my page I see "authored using configure button" on my component
Below is htl code
<sly data-sly-test="${properties.mytext}">
${properties.mytext @context="html"}
</sly>
Is this case generally handled by changes in HTL side? Or can I do something in my component node structure
