0

ListItemdojox mobileをラベルでアルファベット順にソートしたいと考えています。私の DOM のラベルは次のようになります。

<div class="subject">Sort alphabetically against me only</div>
<span class="bomtype"> don't sort against me. </span>

class="subject"ラベルのテキストを昇順で並べ替えたい。Dojo 1.9.1 を使用しています。

4

1 に答える 1

1

たとえば、dojox/mobile/EdgeToEdgeStoreList または dojox/mobile/RoundRectStoreList を使用できます。

<ul data-dojo-type="dojox/mobile/EdgeToEdgeStoreList"
    data-dojo-props='store: store, query:{}, queryOptions: {sort: [{attribute: "label", descending: true}]}'></ul>

文書化されているように、EdgeToEdgeDataList と RoundRectData リストは Dojo 1.9 で非推奨になっていることに注意してください。

于 2013-10-21T10:16:24.060 に答える