Hi,
I would like to disable the inline edit for a specific field.
Can I do this through behaviours?
I tried the following:
FormField formComponent = getFieldById(getFieldChanged())
formComponent=formComponent.setAllowInlineEdit(false)
formComponent.setAllowInlineEditChanged(true)
But none of these work.
Thanks,
Cynthia
Community moderators have prevented the ability to post new answers.
Hi Luca,
Thanks for the answer. It didn't work for me but helped me get on a track that did work.
I used this in the announcement banner:
<script type="text/javascript">
AJS.$(document).ready(function() {
setInterval(function() {
AJS.$('#fixfor-val').removeAttr('class');
AJS.$('#fixfor-val').children('.icon').remove();
AJS.$('#fixfor-val').removeAttr( "title" )
}, 200);
});
</script>
Thanks,
Cynthia
hello can you please tell me where you put this code ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can do that using javascript to remove the following css class.
For instance:
AJS.$("#customfield_10010-val").removeClass( "editable-field" );
Regards
Luca
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
hello can you please tell me where you put this code ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.