benjyt
Explorer
Member since ‎07-21-2023

User Statistics

  • 7 Posts
  • 1 Solutions
  • 15 Kudos given
  • 0 Kudos received

User Activity

I have a OpenUI5 project where I want to add a custom theme.The theme is coming from a npm package, so I included it in package.json like this:"dependencies": { "webui-theme-my_eservice": "^1.12.1" }Then I configured the build command from ui5-cl...
I have an application with a RootComponent that contains two nested Components. One of these two Components, called UserComponent, displays a FlexibleColumnLayout and has a route with two URL parameters defined: <code>{ "pattern": "detail/{obj...
I have a project that should use a custom JavaScript library that my company provides. This library lies on a Jenkins server and can successfully be installed via NPM on my local machine. However, even when adding the library to the package.json and ...
I am trying to build a Tree from the following JSON structure: books: [ { bookTitle: "Book #1", bookChapters: [ { chapterNumber: 1, chapterTitle: "Chapter #1.1" ...
I have several elements within a VBox that I want to seperate using simple vertical lines, as shown in the Mockup below. I already tried using a Toolbar together with ToolbarSeparators, however those separators do not adjust to the height of the...