Skip to content
Snippets Groups Projects
Commit 23c501bf authored by madhu sr's avatar madhu sr
Browse files

#Fixes::158349044::madhusr::When we add the column in the RTE field it is not...

#Fixes::158349044::madhusr::When we add the column in the RTE field it is not displaying properly in detail view
parent 07e2a5a7
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,16 @@ class Documents_Field_Model extends Vtiger_Field_Model {
}
return false;
}
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