angular - FormattedString in RadSideDrawer -


i working on app using nativescript , angular. have radsidedrawer in use, , trying use formattedstring highlight keywords in content, formattedstring content never displayed inside radsidedrawer.

i found issue radsidedrawer, , recommend using full syntax:

<label>     <label.formattedtext>         <formattedstring>             <formattedstring.spans>                 <span text="&#xf0d7;" fontfamily="fontawesome" />                 <span text="test 1234" fontstyle="italic"  />                 <span text="test 5678" />             </formattedstring.spans>         </formattedstring>     </label.formattedtext> </label> 

http://www.telerik.com/forums/text-of-formattedstring-within-page-not-visible-when-radsidedrawer-is-added-to-page

on other hand, documentation says full syntax not work if using angular:

https://docs.nativescript.org/cookbook/formatted-string-ng#how-to-use-the-formattedstring-class-in-text

<label>     <formattedstring>         <span text="some content" fontweight="bold"></span>     </formattedstring> </label> 

this syntax differs formattedstring’s full syntax used in nativescript core, shown below, which not work in angular apps:

i tried it, , yes not seem work in angular apps. so, how can convince nativescript display formattedstring in radsidedrawer while using angular?


Comments

Popular posts from this blog

Sort a complex associative array in PHP -

vb.net - How to ignore if a cell is empty nothing -

recursion - Can every recursive algorithm be improved with dynamic programming? -