
|
If you were logged in you would be able to see more operations.
|
|
|
|
File Attachments:
|
|
|
Environment:
|
Tomcat 5.5
|
|
| Resolution Date: |
14/Mar/06 09:36 PM
|
|
I've been trying to use the "converter" property on the contrib:FormTable component without success. I dug into the source code and discovered that the "converter" property on the contained "tableRows" components is not marked as <inherited-binding.../>, it's just marked as a <binding.../> which, of course, will prevent the "converter" property of the owning table from being passed in properly. This all happens on line 237 of FormTable.jwc:
<component id="tableRows" type="TableFormRows">
<inherited-binding name="row" parameter-name="row"/>
<inherited-binding name="class" parameter-name="rowsClass"/>
<!-HERE'S THE PROBLEM!!!-->
<binding name="convertor" expression="convertor"/>
</component>
It seems like that line should read:
<inherited-binding name="converter" expression="converter"/>
|
|
Description
|
I've been trying to use the "converter" property on the contrib:FormTable component without success. I dug into the source code and discovered that the "converter" property on the contained "tableRows" components is not marked as <inherited-binding.../>, it's just marked as a <binding.../> which, of course, will prevent the "converter" property of the owning table from being passed in properly. This all happens on line 237 of FormTable.jwc:
<component id="tableRows" type="TableFormRows">
<inherited-binding name="row" parameter-name="row"/>
<inherited-binding name="class" parameter-name="rowsClass"/>
<!-HERE'S THE PROBLEM!!!-->
<binding name="convertor" expression="convertor"/>
</component>
It seems like that line should read:
<inherited-binding name="converter" expression="converter"/> |
Show » |
|