Mackski Posted September 12, 2015 Share Posted September 12, 2015 I need to hook to a locked textarea field to modify it's layout at run time, however the field doesn't seem available to hook to? My code is as follows: $this->addHookBefore('InputfieldTextarea::render', $this, 'render'); public function render(HookEvent $event) { $field = $event->object; if($field->name == "currency_data") { echo "<pre>".$field->value."</pre>"; } } If I modify the field to any other value than "locked" the field becomes available. Not exactly sure why it's not available when locked. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now