I have created a pop up using Dialog servce.
I am planning to show some message to user like this
txt = '<ul>
<li data-ng-repeat = "eachValue in dummnyList" >
{{eachValue | applyFilter}}
</li></ul>' ;
It is processing successfully but it considering {{eachValue | applyFilter}} as text.
- {{eachValue | applyFilter}}
Am I missing any thing.
The complete code for pop up is
var txt = '<ul>
<li data-ng-repeat = "eachValue in dummnyList" >
{{eachValue | applyFilter}}
</li></ul>' ;
var proceedButton = {label:'Ok', result: 'ok', cssClass: 'btn blue-button', returnFunction: proceedFunction};
var cancelButton = {label:'Cancel', result: 'not ok', cssClass: 'btn red-button', returnFunction:cancelFunction};
var buttons = [];
buttons.push(proceedButton);
buttons.push(cancelButton);
DialogUtils.openMessageBox({
title: 'Note',
message: txt,
buttons: buttons
});