cancel
Showing results for 
Search instead for 
Did you mean: 

Limit Value in search help in dropdown list box

0 Kudos

Hi Gurus,

My question is about , how i can limit values of search help ()Simple Value Selector of mi field, this field load the values of domain associated, Can I restrict this values ????

Regards in Advance.

maopacheco.

Accepted Solutions (0)

Answers (1)

Answers (1)

0 Kudos

I add this in the wdInit of my custom controller

IModifiableSimpleValueSet valueSetServicio =

wdContext.getContext().getModifiableTypeOf("InputServicio.Catego").getSVServices().getModifiableSimpleValueSet() ;

// Bien

valueSetServicio.removeKey( new String ( "01" )) ;

valueSetServicio.removeKey( new String ( "02" )) ;

Issue Resolved,

maopacheco.