0
panelbar.Add()
        .Text(string.Format(Common_Formats.CopyRight, DateTime.Now.ToString("yyyy"), Version.ToString())).

Common_Formats.CopyRight is a string read from the .resx file:

© {0}  ABC Systems Inc. <br> All rights reserved. V: {1}

I put "<br>" and \n in the text, still its not splitting.

sony
  • 1,453
  • 3
  • 35
  • 79
  • Try putting | where the
    is and do: `LCL.Common_Formats.Shared_Footer_CopyRight.Replace("|", "
    ")` The panel bar may encode the
    to use < instead of `<`, not 100% sure if that is what you are running into...
    – Brian Mains Apr 18 '16 at 17:09
  • @Brian © 2016 ABC Systems Inc.
    All rights reserved. V: 1.4.0.24 is the result
    – sony Apr 18 '16 at 17:13
  • Meaning you can see `
    ` literally, or it's producing the correct result?
    – Brian Mains Apr 18 '16 at 18:28
  • its not producing the correct result :( , i can see the
    – sony Apr 18 '16 at 18:32

1 Answers1

0

See this to turn off encoding, which essentially calls

.Encoded(false);

Kendo UI - Turning Text() enclosed text into <span> encoded HTML

Community
  • 1
  • 1
Brian Mains
  • 50,520
  • 35
  • 148
  • 257