ドロップダウンリストで国と地域の間に線をドラッグしたいと思います。MVCのControllerの項目リスト間をドラッグする方法
new SelectListItem {Value = "GB", Text = "Great Britain" }
の末尾にある行をドラッグするコードです。-----------------
です。私を案内してください。前もって感謝します。私の意見で
RacingRegionsOptions = new List<SelectListItem>
{
new SelectListItem {Value = "NZ", Text="New Zealand" },
new SelectListItem {Value = "AUS", Text = "Australia" },
new SelectListItem {Value = "FR", Text = "France" },
new SelectListItem {Value = "GB", Text = "Great Britain" },
new SelectListItem {Value = "1", Text = "Australia & New
Zealand" },
new SelectListItem {Value = "2", Text = "South East Asia" },
new SelectListItem {Value = "3", Text = "Principal Europe" },
new SelectListItem {Value = "4", Text = "All Europe" },
new SelectListItem {Value = "5", Text = "Soutern Hemisphere" },
}
あなたは_ "**描画**ライン" _ではなく_ "**ドラッグ**ライン" _を意味しますか?もしそうでなければ、_「行をドラッグする」とはどういう意味ですか? – stuartd
@stuartd、はい、私は線を描くことを意味します。私は線を描くことによって区別したいからです。 – Raj
あなたはまた、項目をグループ化するのに 'optgroup'を使うかもしれません – Shyju