I have a html form in a Smarty template. A select
in the form is populated via AJAX. I would like to specify in the Smarty template, the format to be returned by the AJAX-call. This way I can use the same request-url for different purposes. For example if the select
contains users, sometimes I might be interested in knowing the user's email address (format: "{$Option->GetName()} ({$Option->Email})"
), and other times the user's organisation (format: "{$Option->GetName()} ({$Option->Organisation})"
).
I have a few ideas of how to achieve this:
$Option
object, and do the formatting using JavaScript. Drawback: Cannot use the PHP object's methods, such as $Option->GetName()
.Do anyone have any other/better ideas, or any experience with doing something like this?
I ended up using option 4, and I'm very happy with the result.
If anyone come across this and need information on how I implemented it, just post a comment, and I'll try to explain.