Fix advanced search customizing
-------------------------------

                 Key: NXS-560
                 URL: https://jira.nuxeo.com/browse/NXS-560
             Project: Nuxeo Studio
          Issue Type: Bug
          Components: Schemas
    Affects Versions: 2.0.9
            Reporter: Thierry Martins
            Priority: Major


When customizing the advanced search, a contribution to the extension point 
"contentViews" is generated to overwrite the default one. The problem is that 
it's not using the proper document type: "advanced_search" instead of 
"AdvancedSearch"

{code:xml}
  <extension target="org.nuxeo.ecm.platform.ui.web.ContentViewService" 
point="contentViews">
    <contentView name="advanced_search">
      <coreQueryPageProvider>
        <property name="coreSession">#{documentManager}</property>
        <whereClause docType="advanced_search">
{code}

Should be:
{code:xml}
  <extension target="org.nuxeo.ecm.platform.ui.web.ContentViewService" 
point="contentViews">
    <contentView name="advanced_search">
      <coreQueryPageProvider>
        <property name="coreSession">#{documentManager}</property>
        <whereClause docType="AdvancedSearch">
{code}

--
This message is automatically generated by JIRA.
For more information on JIRA, see: http://www.atlassian.com/software/jira

        
_______________________________________________
ECM-tickets mailing list
[email protected]
http://lists.nuxeo.com/mailman/listinfo/ecm-tickets

Reply via email to