Editable Items
dhtmlxDataView provides the possibility to edit items inline. By default dhtmlxDataView object edit mode is off. You need to turn it on with data.define("edit",true); method.
Change Items Type
F-iconF-titles
F-table
dhtmlxDataView provides the possibility to edit items inline. By default dhtmlxDataView object edit mode is off. You need to turn it on with data.define("edit",true); method.
<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></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>var data; function doOnLoad() { data = new dhtmlXDataView("data_container"); changeType("ficon"); data.define("edit", true); data.load("../common/files_ext.xml"); } function changeType(type) { data.types[type].icons_src_dir = "../common/images"; data.define("type", type); }