How can I turn off Toad auto correct of "FORM"? - toad

Toad automatically corrects FORM to FROM as I type. How can I avoid this?

The version of Toad you are using will determine the location of the option, but it's an auto replace string. In the most recent versions of Toad this is on the Editor|Auto Replace page in Options. In older versions of Toad it was on the Editor|Behavior page in Options, click the Auto Replace button. Remove any entries in there you do not like.

Related

Popup LOV item settings

Is it possible to disable Popup LOV item search bar and load by default all rows from SQL Query? Item has an JavaScript Initialization Code block, but I can find documentation how use it (for example like Rich Text Editor or Charts). For now I disabled Popup LOV search bar using CSS, but maybe there is another way?
There is no way to disable the search bar declaratively.
The CSS way is indeed your best bet.
Concerning the JavaScript Initialization Code attribute, the first thing I always do before putting anything in there is the following:
function(options){
console.log(options);
return options;
}
then checking the console. Usually you will see all of the declarative values and defaults for any other fancy things.
Your second option would be to check the actual source code, which usually includes some JSDoc. In the case of the Popup LOV, you want to look at this file. Of course the easiest way to get to these things is to put your app in debug mode, and navigate through the files in the Sources Panel.

Alternative module to Select (or Other) in Drupal 8

Select (or other) has a demerit that when you add something other than the given options, the new option which you have written in text box, gets added in the list. So when next time when you see the drop down, the option which you added previously is now showing in the drop down list.
Here is detailed description:
When i add "Stack Overflow" in the text box of other option.
Now you will see this option in the list:
I have gone through the issues related to the "Select (or other) module and found out that this is the issue of this module"
What can be solution to this failure of this module?
CCK Selct Other can be a better option to avoid this problem, but in my case i have one additional requirement.
I wanted "Other" field should be hidden until the user selects "Other" option. But in CCK it is always open. So instaed i used Conditional Fields Module.

Remove Item Version

Reference to Sitecore's documentations and this related question, the 'Versions' tab in the Ribbon tag supposed to have the option 'Remove' to remove specific language version of the selected item, I have this option for most of the items, but in below scenario, after adding new language version to item, I can't find 'Remove' option:
Create Template 'Sample'-> Create Section 'Data' -> Add Field inside (which is item at the end) -> Add new language version of this field -> Here 'Remove' option will not be exist in 'Versions' tab.
Note: I've just added this version by mistake and just want to Undo it (remove this version).
You cannot remove version of templates, template sections and template fields using Content Editor.
You can use DB Browser application instead. You can open it using /sitecore/admin/dbbrowser.aspx url.
You will see Delete version button there.
I have implemented a tool which is already available from Sitecore Marketplace. The tool allows you to remove the different version on items. For example, if you select an item, it will show all the version the item contains and also possible language version.
Here is the link to the module on marketplace: Sitecore Version Remover
Check if you have the correct rights. It should show remove button like follows:

Adding buttons for HTML elements to the Sitecore rich text editor

I would like to add a button to the Sitecore rich text editor toolbar, specifically one that inserts the H2 element.
I know the H2 element can be inserted using the paragraph styles pulldown menu, but all my editors are now using the bold button for their headings because they don't "see" the paragraph styles pulldown. So, I want to make the H2 easily available using a toolbar button. (And maybe even removing the bold buttons, since it's not semantic at all.)
But no matter how I go through the documentation, I cannot find a good explanation on how to do this.
In addition to the guide Yan posted, here's another guide.
I found a couple of walkthroughs for this...
Sitecore v6.3 and previous: link
Sitecore v6.4: link
Make sure that you select the core database (bottom right of Sitecore desktop) so that you can see the /sitecore/system/Settings/Html Editor Profiles area.
In my article here the first step of wiring up an event to a button is in javascript. From there you can insert text or tags. You can also get the selected text and wrap it in tags. You don't need to compile anything I was just showing how you would if you needed to, but you can entirely cut that piece out and just use the editor to send whatever text you want back to the wysiwyg editor.

TOAD sql editor - prompt when file changed?

In TOAD, if I'm editing a sql file in the sql editor window and that file is changed (ie: by making an edit to it in Textpad), TOAD doesn't prompt you to get the changes. Is there a way to get TOAD to give you a prompt?
Conversely, in Textpad if you have a file open and it is changed, Textpad will prompt you and ask if you want to reload the file with the changes.
Edit: We're using TOAD v. 8.6.1
I understand you are using 8.6.1 so it maybe in a slightly different place but TOAD 10 has an option in the settings called "Prompt for reload on activation if timestamp has changed".
It is located under Editor->Open/Save.