My lookup file Kind of looks like this.
APP_FAMILY,APPLICATION
app_fam1,app_name1
app_fam1,app_name2
app_fam2,app_name3
app_fam2,app_name4
I have two select fields, like this:
this is where I want to show "distinct" APP_FAMILY column values
Select Application Family: <select id="app_family"></select>
this is where I want to show the APPLICATION column values corresponding to the APP_FAMILY selected
Select Application: <select id="app"></select>
Now I want both of these select tags to be populated by jquery or javacript from the lookup file. This is the constraint. Can anybody suggest how to proceed?