Example of Generating Markup with an Additional className
In this example, we use the following code make the call to the Template Manager to generate markup for with an additional className:
var markup = tmplMgr.GenerateMarkup({
type : consts.get( "SWE_CTRL_TEXT" ),
class: "siebui-align-left"
});
In the this example, this is the expected HTML string begin held by the markup variable:
<input type="text" class="siebui-input siebui-align-left" />