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.
是否可以从 DOJO Grid 中删除标题?
在您的 CSS 中,执行以下操作:
.dojoxGridMasterHeader { display: none; }
希望这可以帮助。
最好指定要在哪个网格中删除标题,例如使用父 div 的 id:
#myDiv .dojoxGridHeader { display: none; }