Want to create chained textbox :
textbox1 textbox2 textbox3
_________ ____________ _____________
|___A____| |(1)disabled| |(a)disabled|
textbox1(value):A,B,C,D,E;
textbox2(value):1,2,3,4,5;
textbox3(value):a,b,c,d,e; like-> "A,1,a","B,2,b"=> this will be the combination
Where selecting the value of textbox1,corresponding value to textbox1 will appear in textbox2,so as in textbox3 w.r.t textbox3.And my predefined value will be stored in jQuery function,on calling it will fill the value.
Suggestion…. needed
DEMO 1
I think you want a
selectboxinstead ofcheckbox(not sure)DEMO 2
If you want to show the selected text of first select to next two text box then:
DEMO 3