Create or customize UI components

Axelor provides a specific number of UI components and I’m not sure it provides customization in that or not. I need to customize/create Axelor UI components.

Some help/guidence will be highly appreciated in this case.

1 « J'aime »

what you have tried,??

Hey there, I’ve prepared one simple HTML page and I’m showing it using below code snippet:

@CallMethod
  public void showCustomComponent(ActionRequest request, ActionResponse response) {
    try {
      response.setView(
          ActionView.define("CustomView")
              .add(
                  "html",
                  "custom-component.html");
    } catch (Exception e) {
      logger.error("Something went wrong while getting the custom component.", e);
      TraceBackService.trace(e);
    }
  }
1 « J'aime »