Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
dojox データ グリッドの列にアイコンを設定したいと思います。Dojo ツリーのようにクラス アイコンを設定できますdijit/Tree getIconClassか?
dijit/Tree
getIconClass
ありがとう
多分あなたはフォーマッターを試してみるべきです
<script> function imgFormatter(s) { return '<img src="' + s + '"/>'; } </script> <table data-dojo-type="dojox.grid.DataGrid"> <thead> <tr> <th field="col" formatter="imgFormatter"></th> </tr> </thead> </table>