> Yes please. I would like to have a good overview of the internal > Weblocks machinery :-)
The generic function we need to change is the mentioned RENDER-VIEW- FIELD-VALUE, defined in src/views/view/view.lisp. It is called by RENDER-VIEW-FIELD to render the actual value of a field. The implementation of RENDER-VIEW-FIELD itself is view-specific; the form view for example renders its fields as INPUT elements. What's above on the callstack (render-object-using-view, map over view fields, ...) is not really important for our purposes. We need to change these things: * the generic function signature of RENDER-VIEW-FIELD-VALUE * the method signature of all methods defined for RVFV (grep for them in the src/ directory) * all calls to RVFV (probably one per view; all views can be found in src/views) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "weblocks" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/weblocks?hl=en -~----------~----~----~----~------~----~------~--~---
