国の DropdownList と State/Province/Region の DropdownList がある Web アプリケーションがあります。
国を選択すると、関連する都道府県\地域が動的に入力されます。
人口は簡単なことです。
しかし、国際化に伴い、この膨大なデータをどこでどのように維持する必要がありますか?
国の DropdownList と State/Province/Region の DropdownList がある Web アプリケーションがあります。
国を選択すると、関連する都道府県\地域が動的に入力されます。
人口は簡単なことです。
しかし、国際化に伴い、この膨大なデータをどこでどのように維持する必要がありますか?
step 1 : create data base for country names and related state names
step 2 : make ajax call on select box for country on onchange event
step 3 : the ajax call hits the db and return with the state names
step 4 : set the value for state select box with the received response from ajax call