Joomla plugin in form

raimis

Member
Process Joomla plug-ins set Detail & form view, but when page on reloading, i see plugin works and when page reloading stop plugin not work any more.... and i see all code in {tags}asdasdasdsad{/tags}
 
When you say "on reloading", do you just mean hitting the reload button on your browser?

I don't seem to be able replicate this.

BTW, which tags plugin are you using?

-- hugh
 
Ah, that's because the calc loads via AJAX rom the browser, and just calls the calc element code, it doesn't get run through the form's rendering, which is what runs content plugins when you first load the form.

You'd probably have to do that by hand in the calc code. We have a "helper" function for running content plugins on text, so try this ...

Code:
// your code here, sets $myText
$myText = '{whatever}foo bar{/whatever}'
// now run your text through the helper and return it ...
FabrikHelperHTML::runContentPlugins($myText);
return $myText;

-- hugh
 
We are in need of some funding.
More details.

Thank you.

Members online

Back
Top