Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Storing catalogs requires some client folder customization.

Catalogs are stored as .json files in the "lists" folder, which is created on the server in the "client" folder. In a default installation, the path is "C:\Program Files (x86)\OPTIMAL SYSTEMS\enaioyuuvis\service-manager\data\webresource\resources\client".

...

Code Block
languagejs
titleExample for dynamic list
linenumberstrue
scope.api.http.get('/client/lists/accountingmethod.json', '/enaioapp').then(function(res){
	var entries = res.data.list;

	scope.model.strdynaccountno.setList({
		entries: entries
	});
}).catch(function(err){console.warn(err)});   // error handling for custom client development with use of proxy-tool (file is not available on the development system)


...