From 0edcd79335d5727efe024ca64a626950bc05aceb Mon Sep 17 00:00:00 2001 From: Fabian Lupa Date: Sat, 26 Sep 2020 08:27:42 +0200 Subject: [PATCH] Fix link in docs (#3950) --- docs/collections/_development/developing-ui.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/collections/_development/developing-ui.md b/docs/collections/_development/developing-ui.md index 4ceef453b..8c44c76ba 100644 --- a/docs/collections/_development/developing-ui.md +++ b/docs/collections/_development/developing-ui.md @@ -58,7 +58,7 @@ ENDMETHOD. `ro_html` which is the instance of `ZCL_ABAPGIT_HTML` is helper tool for html rendering. It accumulates html content and then can output it with `render` method. It has a couple of important methods: - **ADD** - adds a chunk to accumulated HTML. You can pass a string or another `ZCL_ABAPGIT_HTML` instance. In the example above `render_some_stuff` may either return a string or have the same pattern as `render_content` (retuning `ZCL_ABAPGIT_HTML` instance) -- **ADD_ICON and ICON** - renders an icon. abapGit uses web-fonts to render icons (see [adding icons](./development/adding-icons.html)). The method accepts the icon name and a css-class name which represents a color separated by '/'. E.g. in the example above it will render 'star' icon and assign 'error' css class to it which has red color in abapGit styes. The method has it's static brother `ZCL_ABAPGIT_HTML=>ICON` which is more convenient in some cases and just returns a rendered html string. +- **ADD_ICON and ICON** - renders an icon. abapGit uses web-fonts to render icons (see [adding icons](./adding-icons.html)). The method accepts the icon name and a css-class name which represents a color separated by '/'. E.g. in the example above it will render 'star' icon and assign 'error' css class to it which has red color in abapGit styes. The method has it's static brother `ZCL_ABAPGIT_HTML=>ICON` which is more convenient in some cases and just returns a rendered html string. - **ADD_A and A** - renders a link (anchor) (`A` - static method). It is strongly suggested that you use this method instead of rendering `` tags directly. Params: - `IV_TXT` - text to be rendered inside anchor - `IV_TYP` - type of action done on click. 3 options: