Line Separator in Reference selector

0
Hello, We are using a reference selector which selects drop down. In that I want a line separator after the first four values. Or the first four values can be highlighted. ( In this case I want a line separator after HNGV)  How can I make it possible in Mendix?    
asked
1 answers
0

Hi Traividya ,

You can try to do it using CSS to highlight the first n children, Give your reference selector a class in the appearance tab , example test.

Then add this style in your custom CSS.


.test option:nth-child(-n+5)
{
background-color: #c3ebd9;
}

Result

 

 

for the elements selected here You can refer to this link 

Styling options is something that has restriction from the OS itself , it might not be what you wanted exactly but i hope it would be helpful.

 

Thanks,

Sufian.

answered