List : edge to edge or round rectangle

This feature i suggest is not present in demo too.
We have a dhtmlx list offering group list which have an edge to edge presentation.
the suggestion is about to add round rectangle too.

Demo : http://demos.dojotoolkit.org/demos/mobileGallery/demo-iphone.html

Here is not such a ready list. However, the workaround is possible. You can use space layout that render all rows/cols with margin. The border-radius can be set by custom css class:

<style> .rounded_borders{ border-radius: 10px; -moz-border-radius: 10px; -webkit-border-radius: 10px; -o-border-radius: 10px; -ms-border-radius: 10px; } </style>

... type: "space", cols:[ { css: "rounded_borders", view:"list", ... }, ... ]

Thanks Alexandra, i will try this.