Skip to content
Snippets Groups Projects
Commit ab54a0b2 authored by Prasad's avatar Prasad
Browse files

Merge branch '158349044' into 'master'

Fixes: The Ajax edit/quick edit is not allowed for the RTE fields

See merge request !1047
parents 40e30e8c b9671b9d
No related branches found
No related tags found
1 merge request!1047Fixes: The Ajax edit/quick edit is not allowed for the RTE fields
......@@ -44,5 +44,17 @@ class Documents_Field_Model extends Vtiger_Field_Model {
}
return false;
}
//The AjaxEditable for the RTE field is not allowed
public function isAjaxEditable() {
$result = parent::isAjaxEditable();
if($result && $this->get('uitype') == 19) {
return false;
} else if(!$result) {
return false;
} else {
return true;
}
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment