Restore default Toad layout - toad

I'm using Toad 6.1
Something happened to my client and now I don't see that nice layout I had before. All forms are Tabbed and etc.
Could someone tell me how to restore settings to defaults?
Thanks
P.S. I tried to use Configuration Wizard and option Default but it did not fix the issue

I have never found an easy way to "go back" to what I've had after restoring Toad. Here's a guide that gives some help:
http://www.brainsurface.com/articles/ToadTipsTricksExpertInsight.pdf

I somehow changed my default view and couldn't see any data.
What solved my issue was:
- Click the "Browser Style" icon. It looks like a little menu icon with three check boxes.
- Click "Toggle RHS Visibility."

Related

How to fix not working keybind in WebStorm IDE

I generally have a bunch of custom keybinds for WebStorm, but this one particularly does not work - Select opened file. I've bound it with different key combinations (see screenshots below), and also I've verified that it does not conflict with any MacOS keybinds (although even the ones that conflict actually do work).
Also when I hover the actual UI button, it shows different keybind for it (which also does not work).
So, essentially, I have to always click the UI button with the mouse. I'd like to be able to do so with the keybind. I'm not even sure how to troubleshoot this...
Does anyone else using WebStorm have this keybind working properly?
It's a known usability issue, IDEA-271054. The actual action you need assigning a shortcut to is Other | Select File in Project View:

Tab and Enter key do not work anymore in the webstorm editor while typing

Ever since I upgraded my webstorm IDE to v8.0.4 the enter/return and tab key has no effect in the code editor.
Could there maybe any settings I have somehow changed that these keys does not work?
I have just found out that this odd behavior is only in the main index.html file not in my partial html files ???!!!
I had the same problem in one particular project, and other keystrokes also didn't work, including "(".
Selecting File > Invalidate Caches / Restart fixed it.
For me it wasn't invalidating caches or removing plugins. There is actually an "editor action" in the keymap settings called "Enter". Apparently I removed the key (enter) mapped to that by accident.
Just experienced the same issue but clearing the Invalidate Cache wasn't working for me.
I found that I had downloaded "Bootstrap 3 live templates/ snippets" plugin just prior. This for some reason rendered by editor unable to take enter/return keys as well as the tab key.
After removing the plugin the editor went back to working normally. I would suggest going over recently downloaded plugins and seeing if one of them might be causing the issues.
For anyone else struggling to figure out why this is happening, this happened to me on my MacBook pro due to having the ABC Keyboard configured in System Preferences > Keyboard instead of ABC Extended
In my case, Enabling ECMAScript 6 was the problem, I simply choose ECMAScript 5.1 again and everything now is working as it should!
change it from File->Settings->Languages & Frameworks->JavaScript and change the JavaScript language version to ECMAScript 5.1
Still very weird bug though
you have to map "Enter" to "Enter"!
setting > keymap >
search for enter
in "Editor Actions" right click on Enter and select Add key shortcut
press enter key
press ok and exit settings.
In the latest version of Tabnine on WebStorm or PhpStorm:
Find the keymap "Accept Inline Completion" and remove Tab
Invalidate Cache didnt work for me as well. To be precise, the issue is related to newly added plugin. Fixed this issue by removing the plugin that is added recently.
I had the same problem. It is a, plugin issue. The quickest solution is, after starting Webstorm, press the return key. The PluginException will appear in the bottom of the IDE. Click it and you will see the 'disable' option for that specific plugin.
Regards
Same thing happened to me. I had to check the Event Log which gave me the option to disable the plugin.

Can't click enable or show items in Page Editor in Sitecore

I can't seem to click the "Editing" "Designing" "Controls" "Navigation bar" checkboxes in the View ribbon on the Page Editor. Is this a permission thing? Haven't found a way to enable it (I have it enabled on a mirror/development version so I know it works)
Thanks
Apparently for anyone checking this out, if you don't have the appropriate item commands in your Commands.config file, then they will neither enable or disable these options.
So the solution is to check your Commands.config file and make sure you have the appropriate "webedit:toggleeditvisibility", etc. commands in there.
Must be a permissions thing. See if your user is a member of sitecore\Author and sitecore\Designer, if you're not using a user account marked "Is Administrator"

How do I change the text of OK buttons in the Sitecore Content Editor?

This particular project has been inherited from another vendor. I have never modified the language on the backend before. Anyone out there done this before?
Notice the "Oklahoma" button
Log into the Sitecore desktop and change to the Core database. Open this path:
/sitecore/system/Dictionary/O/OK
Change the Phrase field to change the text on your OK button.
<Literal Text='${StringUtil.GetString($OKButton, "OK")}'/> in \sitecore\shell\Controls\Dialogs\FormDialog.xml
Check if the default "OK" has been changed.

Actionbar home icon in ActionBarSherlock

I am working off of the Styled project for ABS. I would like to customize the home icon in the actionbar. However, nothing I do seems to have any effect. I have tried to set the logo in the Manifest, styles, and in MainActivity. Has anybody come across this?
Thank you,
Igor
This was answered in another post
Apparently you must do getSupportActionBar().setIcon(R.drawable.my_custom_drawable); in MainActivity. I get it, but it's cumbersome that it cannot be set in the Manifest...