web flow
JSPCode:<view-state id="enterSimulation" view="view-simulation" model="simulationView" > <binder> <binding property="simulationMode.simulationDate" converter="customStringToDate"/> <binding property="simulationMode.simulationMode" converter="customStringToMode"/> </binder> ....
how can i implement the converter with the same expression?Code:<form:input path="simulationMode.simulationMode" readonly="true"/> <!-- it calls the converter --> ${simulationView.simulationMode.simulationMode} <!-- it doesn't call the converter -->



Reply With Quote