How to remove private visibility in ActiveCollab 3.3.18 - activecollab

I do not need the private visibility option anywhere.
I already installed a module to have another visibility option "Confidential" and now I don't want private visibility anymore.
Thanks in Advance!

Normal and Private Visibility is added by activeCollab core. So, if you want to remove Private Visibility from dropdown, you need to make changes into core files. But, I don't recommend you to make changes in core files.
Hope that helps.
Thanks!
:Malay

Related

PhpStorm fluent setters by default

Every time I use "code generate" functionality for setters I need to check "Fluent setters" checkbox. Is it possible to make that checkbox enabled by default?
Not possible yet: https://youtrack.jetbrains.com/issue/WI-38880 - feel free to vote/comment for it in order to increase its priority and get notified about updates.
If in fact you always prefer this behaviour, you can replace the code for a normal setter with the code for a fluent setter.
If you want to sometimes have a non fluent setter you could also switch the codes. And then check the fluent setter box to insert normal setters.
Admitted, a hacky solution, but this solved the issue for me.
I'm using PHPStorm 2019.1.3 (Mac) and pressing option+return opens a popup menu allowing me to create fluent setter.

how to disable bootstrap-dateTimepicker's pick function?

now, I am trying to disable the pick function for some reason, I just want to display the date/time, but it can't be done, it seems that there is no such option or function to reach this? Anyone has an idea why this is the case?
I find that in the latest version of datetimepicker, there is a option "ignoreReadonly", it's default value is false and we don't change it. Just to make add the readonly attribute to the input. Then we can disable the widget.
In my old version, there is no such option. so, thanks for your answers and thanks Eonasdan. by the way, the version contains this option, is 4.14+.
And you can view the demo by [disabled datetimepicker demo](https://jsfiddle.net/xjkms/hzwpsnjw/2/).

How to enable/disable the finish button on the IDEA's wizard?

I noticed that the method getFinishButton() in the class com.intellij.ide.wizard.AbstractWizard, from the Intellij IDEA Open API, is deprecated. But there is no comment on the method and I couldn't find any documentation. What I need to do is just enable/disable the button. So, any method for doing this (even of not accessing the object directly) is fine. How can I do this?
Finish button is available only on the last step of the wizard, so you should use getNextButton() on the final step to get this button.
There was a refactoring to remove the separate Finish button and now Next button becomes Finish button on the last step.
getFinishButton() must not be used as it's just a stub:
protected JButton getFinishButton() {
return new JButton();
}
To disable the Finish button override the canGoNext() method and return false when needed (or override canFinish() instead).

p:collector display only one record

I test the example of p:collector on the primefaces site but it didn't work for me,
the add button only added one record, when I add a second, the datatable display only the lastest one.
NB: I have added ajax="false" for the add button, if not, the button doesn't work.
This solved my problem, sorry for my english But I have not learned at all.
I just changed THE SCOPE OF MY BEAN it was #RequestScoped And I CHANGE IT to:
#ManagedBean
#ViewScoped
Hope this helps
The entity class has the #override methods, which were generated while creating new entity through create new entity wizard. remove all the overridden methods from the entity and save it. Thats all. Now it will work.

java swing, simulate JTable terminateEditOnFocusLost behaviour

putClientProperty("terminateEditOnFocusLost", Boolean);
to make jtable end editing and clear current selected rows when it lose focus or when simply click over an other GUI component.
This is very useful, but with "terminateEditOnFocusLost" there are some strange behaviours if it is used with editCellAt and changeSelection.
There are also some undesiderable TableModelEvents fired for some fake table updates.
So, im looking for an hack to simulate "terminateEditOnFocusLost without using it, is this possibile?
Thanks all.
Overload the function to make it suit your needs.
No hack at this moment.
putClientProperty("terminateEditOnFocusLost", Boolean) seem to be the only correct way.