Hi I want to know the equivalent code in struts.
<-select->
<-option value="a"-> a <-/option->
<-option value="b"-> b <-/option->
<-option value="c"-> c <-/option->
<-option value="d"-> d <-/option->
<-/select->
we can represent the above in struts as
<-sj:select-><-/sj:select->
Like that how to represent the following code that allows to select “multiple” values.
<-select multiple="multiple"->
<-option value="a"-> a <-/option->
<-option value="b"-> b <-/option->
<-option value="c"-> c <-/option->
<-option value="d"-> d <-/option->
<-/select->
I tried this. But no use.
<-sj:select multiple="multiple"-><-/sj:select->
TIA.
The tags are documented: