cancel
Showing results for 
Search instead for 
Did you mean: 

Edit Inline Check Box

lock999
Champ in-the-making
Champ in-the-making
Hi,

By default, Edit Inline check box is checked while creating content of type Content. We have a custom content model that inherits cm:content. In our custom content model, we need the Edit Inline to be unchecked by default. Is there a way to configure this? Also, is there a way to set the Edit Inline box to unchecked by default while creating content of type Content?

Thanks
2 REPLIES 2

gavinc
Champ in-the-making
Champ in-the-making
Hi,

Unfortunately you can't configure this but it is possible to change with customisation.

The CreateContentWizard in its init() method has the following line:

this.inlineEdit = true;

What you could do is override the createContent wizard definition to use a custom managed bean which simply sets the inlineEdit variable to false.

This would work for your custom type and the default Content type.

Have a look at http://wiki.alfresco.com/wiki/Customising_The_Create_Content_Wizard for an example of customising this exact wizard.

lock999
Champ in-the-making
Champ in-the-making
Thanks Gavin,

I will try this out.