-1
カテゴリーを使用する以外に、マスターページが自動的に生成されたw20ビジネステーマベースのWebアプリケーションのサイドバーの項目を並べ替える方法はありますか?サイドバー項目の順序
ありがとうございました!
カテゴリーを使用する以外に、マスターページが自動的に生成されたw20ビジネステーマベースのWebアプリケーションのサイドバーの項目を並べ替える方法はありますか?サイドバー項目の順序
ありがとうございました!
サイドバーの項目を並べ替えるには、sortKeyプロパティを使用する必要があります。
小さな例:
"routes": {
"home": {
"template": "<h1>Hello World!</h1>",
"hidden": true
},
"components1": {
"templateUrl": "{demo}/views/components.html",
"sortKey": 10
},
"components2": {
"templateUrl": "{demo}/views/components.html",
"sortKey": 30
},
"components3": {
"templateUrl": "{demo}/views/components.html",
"sortKey": 20
},
"components4": {
"templateUrl": "{demo}/views/components.html",
"sortKey": 50
}
}