How To Populate A State List With Country Dropdown In Pega
- State List Of India
- State List Abbreviation
- How To Populate A State List With Country Dropdown In Pega C
- Thanks, that's the way I was thinking of doing it. I've done it in a text, value class, that creates a new razor select list item for each country.
- I have the code below that will change a state dropdown list when you change the country list. How can I make it change the state list ONLY when country ID number 234 and 224 are selected?
In the Country entity, use the default Name field to capture the country name. In the parent entity, create new lookup field (E.G: 'Country Name') to the custom 'Country' entity. Now you have the country list in 'Country' entity. You will have the country list in the Lookup field in the parent entity.
Author: | IshanDemon |
---|---|
Views Total: | 0 Views |
Official Page: | Go to Website |
Last Update: | April 25, 2019 at 3:44 am |
License: | MIT |
Preview:
Description:
This Javascript library helps you to create a country & state dropdown lists which contain the names of all country and state names. You can easily implement a country-state without storing in database.
It’s very simple to add the pre-defined class name and attribute into the dropdown select input box field to make it work.
When a user selects a country, The state dropdown will automatically populate according to the selection of the country name.
Create a Country State Dropdown by using JavaScript
It’s dead simple to add it on your website. You can add it on any kind of website. Whether you have a CMS based site or a static website.
The plugin comes with a single countries.js
Javascript file. It contains the country and state by using the variable. Moreover, It included some basic functionality to handle the functionality of populating the values.
Let’s load a Javascript file and add in the before closing the head
or before closing body
tag at end of the page.
Next, Create the list of for country and state. For this, Simply define the select element (without adding option) and add a unique ID for both country & state.
You can add a label if you want. We did add it for demo purpose.
Lastly, We need to initialize the Javascript function. All we need to define the first parameter is the ID of country drop-down and the second parameter is the ID of state drop-down.
Advantages:
By using this plugin, You have a few advantages:
- No need to save values in the database.
- No need to use Jquery to avoid conflict.
- You can manually add/delete and update countries and states.
Table Structures
There are three tables to store Country, State and City records.This script has one main page to display three dropdown list with a button to submit the form to another page. User can select a country first, then select a state and then select City. After selecting country the available state in the selected country will be displayed as options in the second dropdown list. Same way after selection of state the available cities of the state will be displayed as options for the user to select.
State List Of India
After selection of all three list boxes, the submit button will be enabled to submit the form.How the script works.
This script works by using PHP script at backend and using JQuery for various control at client side. Records are kept in database table.Populating Country listbox
We will first populate the country list while loading the page. This part is PHP script only and it populates the list by taking records from database table.Populating state list
Once one country is selected by user , it will trigger change function of drop down box. Inside the change function we will first remove the available options. We will ensure that submit button is disabled as we have not selected city option yet.Then we will pass the country_code value of the selection to backend script dropdown3ck.php using POST method. This backend script will use the country_code to get matching state name and state_id from 2nd table ( plus2_state). The list of state_id and state name will be returned through JSON string. Above code will add options to state list based on the selection of country by user. After this once the user select a state, the process starts again by triggering on change event of state dropdown list.