Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
180
Highlighting text fails in ultracombo
posted

 

Hi

We have a drop down combo control that highlights text as you type by setting the column style to

ColumnStyle.FormattedText

and putting this around the text that we want highlited

 

 

 

SPAN_START = @"<span style=""color:lightgreen;font-weight:bold;"">";

 

 

 

 

SPAN_END = "</span>";

 

 

The stand alone control works fine,

 putting inside another controls works fine in our application works fine

but using in a control, on a control, on a control.... (about 5 levels deep) seems to stop it from working.

and the control just shows the actual (unformatted) span text as shown above.

Even at runtime when we set the column style, checking in the debugger shows it is set correclty.

In fact we've tested it at different levels deep and it breaks just at the level we want it.

A sample project would be impossible; you'd need our whole applciation.

So I'm asking for a clue as to what to look for or what could be overriding it.

On thing I can think of is that we are applying a style to the control, but again this works another level up,

in any case the style should only change appearance.

Parents Reply Children
No Data