DHTMLX Docs & Samples Explorer

Change item type on the fly

Change Items Type

F-icon
F-titles
F-table
Source
<script src="../../codebase/dhtmlxdataview.js" type="text/javascript"></script>
<script src="../../codebase/types/ftypes.js" type="text/javascript"></script>
<link rel="STYLESHEET" type="text/css" href="../../codebase/dhtmlxdataview.css">    
<link rel="STYLESHEET" type="text/css" href="../../codebase/types/ftypes.css">  
<script>
var data;
function doOnLoad() {
    data = new dhtmlXDataView("data_container");
    changeType("ficon");
    data.load("../common/files_ext.xml");
}
function changeType(type) {
    data.types[type].icons_src_dir = "../common/images";
    data.define("type", type);
}
</script> <div style="position:relative;"> <img src="../common/images/samples_frame.gif" width="436" height="513" alt="" border="0"> <div id="data_container" style="width:396px;height:400px;overflow:hidden;position:absolute;top:65px;left:20px;border:0px solid red;"></div> </div> <h3>Change Items Type</h3> <input type="radio" name="switch" onclick="changeType(this.value)" value="ficon" checked> F-icon<br> <input type="radio" name="switch" onclick="changeType(this.value)" value="ftiles"> F-titles<br> <input type="radio" name="switch" onclick="changeType(this.value)" value="ftable"> F-table<br>