Group: Forum Members
Last Active: 6 Years Ago
Posts: 2,
Visits: 14
|
Hi all , I ' m using NGallery Item with the NLabelElement . These controls are great , but I ' m stick with the showing html in the Text attribute of the NLabelElement . This control shows the html text like "& lt ; b & gt ; Name & lt ;/ b & gt ;& lt ; br /& gt ; Id " very well , but if I try to set the value of the attribute to "& lt ; p id ={ 1 } path =\"{ 2 }\"& gt ;& lt ; b & gt ; Name : { 0 }& lt ;/ b & gt ;& lt ; br /& gt ; Polarity : { 3 }& lt ;/ p & gt ;" the control shows this plain text on the form rather than rendered html . I ' m using the control like this : var item = new NGalleryItem(); item.Label.Text = string.Format("<p id={1} path=\"{2}\"><b>Name: {0}</b><br />Polarity: {3}</p>", Name, // name Id, // dictionary item id FilePath, // rda-file path Polarity); could anyone help me ? what am I doing wrong ?
|
Group: Forum Members
Last Active: Last Month
Posts: 3,055,
Visits: 4,055
|
Hi Den , You need to put the value of Id attribute in quotes like in path attribute . However , there is no sense to put such attributes in paragraph tag because the parser that is used does not recognize them . Please , note that this is not fully functional html parser .
Best Regards, Nevron Support Team
|
Group: Forum Members
Last Active: 6 Years Ago
Posts: 2,
Visits: 14
|
The quotes do solve the problem! Thank you for the quick and useful reply! Also instead of p-tag I've used the span-tag, thank you!
|