EdgeToEdgeList.js 691 B

12345678910111213141516171819202122232425262728
  1. define("dojox/mobile/EdgeToEdgeList", [
  2. "dojo/_base/declare",
  3. "./RoundRectList"
  4. ], function(declare, RoundRectList){
  5. /*=====
  6. var RoundRectList = dojox.mobile.RoundRectList;
  7. =====*/
  8. // module:
  9. // dojox/mobile/EdgeToEdgeCategory
  10. // summary:
  11. // An edge-to-edge layout list.
  12. return declare("dojox.mobile.EdgeToEdgeList", RoundRectList, {
  13. // summary:
  14. // An edge-to-edge layout list.
  15. // description:
  16. // EdgeToEdgeList is an edge-to-edge layout list, which displays
  17. // all items in equally sized rows. Each item must be
  18. // dojox.mobile.ListItem.
  19. buildRendering: function(){
  20. this.inherited(arguments);
  21. this.domNode.className = "mblEdgeToEdgeList";
  22. }
  23. });
  24. });