Nuxeo Forum
cancel
Showing results for 
Search instead for 
Did you mean: 

Forum Posts

Nuxeo LTS 2025 Layouts Global CSS

Hi,I have a Nuxeo LTS 2025 WebUI studio project that I deploy to a Docker container, I have been able to style document layouts as well as layout blocks individually but I am unable to find where I can create/add a global css of classes that I can th...

Create Automation Chain without "Context.FetchDocument"

Hi, I'm trying to create an Automation Chain via Nuxeo Studio. I've noticed that the chain must begin with Context.FetchDocument (or another operation that it's input is document/s). How can I create a chain that doesn't begin with such operation? My...

Customize nuxeo platform

Hi, I was working with nuxeo studio and unfortunately my trial version is expired.Now i wanted to do some changes in my project without studio for example i want to change the labels of search criteria and add my own labels.I have my project jar file...

Postgresql setup for 9.x: if the CAST setup still required?

The nuxeo documentation on postgresql says something about adding CAST functions to template0 before creating the database. As far as I can tell, with PG version 9.1.8 and later, these functions have a null effect -- the builtin casts already do this...

Resolved! How to define your own custom facets?

How to define your own custom facets? I could not find anything in the Studio for that, nor in the documentation (https://doc.nuxeo.com/nxdoc/available-facets/). I want to define a custom facet 'InvoiceFacet' that I can assign to existing documents, ...

Resolved! Change Document type

Hi, Is it possible to change the type of a document after the creation ? Best Regards, David

David79_ by Champ on-the-rise
  • 731 Views
  • 2 replies
  • 2 kudos

File upload to Nuxeo server from Android mobile

// Get The Root Document root = (Document) session.newRequest("Document.Fetch").set( "value", "/").execute(); // Create a File Document session.newRequest("Document.Create").setInput(root).set("type", "File").set( "name", "myfile").set("properties", ...

Bob_James by Champ on-the-rise
  • 652 Views
  • 2 replies
  • 1 kudos

How To use Nuxeo via JAVA API?

I am trying to use JAVA API of Nuxeo in serve-side: My scenario is: Application Server Wildfly Nuxeo deployed as static war together my application that is another war. I have added Nuxeo API in my WAR (Interfaces) and I tried the following code: Cor...

Resolved! [Feature] Require a specific repository in CoreFeature

Hello, Someone might need to run a test on a specific repository, for example when queries are executed using MongoClient. Otherwise the test should be ignored. Proposal : add a "require" attribute to @RepositoryConfig. @RepositoryConfig(require = St...

Florent_M by Champ in-the-making
  • 703 Views
  • 3 replies
  • 0 kudos

multi tenant LDAP user isolation

Hi there, I'm using nuxeo 5.8HF10 in combination with LDAP. I'm experiencing the following situation: usera - tenantA userb - tenantB usera is a tenantA administrator. When searching in the admin center (users&groups) userb appears in the list. How ...

Bauke_Roo by Star Contributor
  • 1159 Views
  • 5 replies
  • 3 kudos

Resolved! Alternative to alfresco?

We are evaluating open source content management systems. We've looked a bit at Alfresco, how does Nuxeo compare in terms of performances and customization? Any hints or resources to learn about that?

JoshPink_ by Champ in-the-making
  • 508 Views
  • 2 replies
  • 2 kudos

setPassword method in java client ?

Hey everyone, I tried opening an issue on git (https://github.com/nuxeo/nuxeo-java-client/issues/10) without success so i thought i would try here. How do you set users password using the java client (using 2.4 SNAPSHOT atm). As said on my git issue,...

How to set permanent permission with Java API?

I am trying to assign a permanent permission to a group but I got null pointer exception when begin or end dates are not defined. ACE ace = new ACE(); ace.setUsername(username); ace.setPermission("Everything"); ace.setCreator(nuxeologin); ace.setBloc...