:: Documentation >>

AW.Formats.HTML

String (html) converter class. Passes the string 'as is' without encoding the html control characters (", &, <, >) allowing html markup in the grid cells.

Constructor

 var obj = new AW.Formats.HTML; 

Hierarchy

Methods

cloneCreates an object clone.
comparatorReturns comparator function.
dataToTextTransforms the external data to the readable text.
dataToValueTransforms the external data to the native value type.
initInitializes the object.
setErrorTextSets the error text.
setErrorValueSets the error value.
setTimeoutCalls the function after the specified delay.
textToDataTransforms the text to the external data format.
textToValueTransforms the text to the native value type.
toStringConverts object to string.
valueToDataTransforms the value to the external data format.
valueToTextTransforms the value to the readable text.

Examples

var myData = [
    ["<i>this is text</i>", "<i>this is html</i>"],
];

var text = new AW.Formats.String;
var html = new AW.Formats.HTML;

// grid control
var obj = new AW.UI.Grid;
obj.setCellData(myData);
obj.setCellFormat(text, 0); // text in the first column
obj.setCellFormat(html, 1); // html in the second column
obj.setColumnCount(2);
obj.setRowCount(1);
document.write(obj);

See also

Formats/conversions overview, AW.System.Format (base class), AW.Formats.String, setCellFormat method

Comments

Sort HTML format!! MaEsTrOYodA (0)

Documentation:

Recent changes:

2.6.4
2.6.3
2.6.2
2.6.1
2.6.1
2.6.0
2.5.0 - 2.5.6
2.5.6
2.5.0 - 2.5.5
2.5.5