<openmrs-header> is a part of which module

Hello There I wanted make some changes in openmrs header I did my changes in header.gsp from appui module but in configure meta data>concenpt dictionary the openmrs header in not reflecting my changes. I have gone through the code but I am unable to find openmrs-header anywhere. Help Me. Thanks

@atiq you can look into the reff app module which provides the basic web features

1 Like

@gcliff Thanks for the reply. I will look around ref app module.

1 Like

Hey @gcliff I wanted to make some changes in openmrs header and I did it but when i jumped to concept dictionary my changes is not getting reflected on conacept dictionary screen so i looked for code and i found in the code but unable to find openmrs-header component in concept dictionary owa. Please help me , Thanks

which code are you looking into exactly?

is it the owa module ?

Not actually, its a part of this repository GitHub - rkorytkowski/openmrs-owa-conceptdictionary: Concept Dictionary Open Web App.

oh i see

have you looked at the index.html

specifically

> <head>
>     <title>Concept Dictionary Management</title>
>     <!-- openmrs favicon -->
>     <link rel="shortcut icon" type="image/ico" href="../../images/openmrs-favicon.ico"/>
>     <link rel="icon" type="image/png" href="../../images/openmrs-favicon.png"/>
>     <link rel="stylesheet" href="../uicommons/css/openmrs-refapp.css" type="text/css"/>
>     <style>
>         [ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
>             display: none !important;
>         }
>     </style>
> </head>
> <header>
>   	<div ng-controller="IndexController as vm">
> 		<openmrs-header></openmrs-header>
> 	</div>
> </header>
1 Like

Yah but Its using ui component openmrs-header but I am unable to find it in app directory.

u can look into the reff app.css styling for the header

You can inspect the code in the UI by right-clicking on the header and then click inspect . From what i see when inspect the <openmrs-header> is a tag with code inside that handles the openmrs header

1 Like

Ohh Yes. I got it actually I thought it is a ui component written in angular.

1 Like

Hey @gcliff openmrs-header is a part of GitHub - openmrs/openmrs-contrib-uicommons If i need to make changes in this contribution I can make it easily but I need to publish in on npm to use it in concept dictionary owa. :smile: You can see it here @openmrs/openmrs-contrib-uicommons - npm

1 Like