cannot unhide element in autodesk - autodesk

I have multiple walls, floors, and other elements hidden in my Autodesk model.
#1 I tried : the "light-bulb"/reveal button; then selecting the wall; then right clicking and selecting the option "hide in view". Element & Category are "grayed out" and cannot be selected. The "By filter" option is not grayed out.
#2 I tried: going to the the View Tab and the Visibility and Graphics button. All of the boxes were checked as visible in that view.
Can someone please give me other ideas or solutions to try and fix this problem?
As always I greatly appreciate your help.
Happy Holidays!

Well I couldn't find a way to fix it so I just shutdown Autodesk then reopened my project. That did the trick! All hidden elements are now unhidden.
If someone has a better fix for this anomaly that I ran into with the options being grayed out and elements not unhidding then please feel free to post.

Related

Click of a link nested in a label does not trigger checkbox check

If you have a link nested in a label element, clicking the link does not update state of the associated checkbox. Tested in recent Firefox and Chrome. This used to work 100% – I personally used this approach long time ago; also there are numerous topics on how to prevent the old behavior from happening.
I think that this has something related to GDPR maybe. A lot of cases where you put a checkbox agreement and a link to T&C for example, clicking on the link to open the T&C doc was checking the checkbox, while you may not agree with the conditions.
I have searched for any information when/why this was introduced as well as for potential workarounds, but I was not able to find anything.
<label>
<input type="checkbox" />
<!-- click here will toggle the checkbox -->
I agree with
<a href="terms">
<!-- however, click here will NOT toggle the checkbox -->
Terms & Conditions
</a>
</label>
This used to work before. As I said, most probably this was adopted by most vendors in order to patch the undesired effect of opening T&C for reading and "agreeing" at the same time with them. Unfortunately I was unable to find any proof for that.
Anyone having some info? Any workaround in plain HTML (no JS)?
Had the same issue and have found out that you couldn't solve it correct because of links are made only for navigation but not for checkboxing. Browser wants go throw the link first instead filling checkbox. You can write the link outside you checking area.

HTML dropdown box mouseover

I know how to make a standard drop down box, however I want it to show the options on a however, and if someone clicks on the button, it opens a page, not opens the below links.
Thank you!
Try the onHover and onChange events
You can start research on this task by evaluating the onHover and onChange events of the relevant control.
Provide more context for the question if you have an opportunity, and we will try to provide more specifics if you have difficulty.
Thanks for your participation on the site.

Tab through a webpage manually

I am trying to navigate through a webpage using just my keyboard. Through the use of my tab key I can enter in data into several input boxes, and press several submit buttons.
However I run into a problem when trying to set focus to an image element on the page. For some reason it does not allow me to select it with the tab key. I can click on it with my mouse and then a popup appears but this really slows down efficiency.
I have considered creating a script in VBA to do this but right now I would prefer a quick-fix without having to spend hours developing a macro.
NOTE: I did quickly try to assign the reference to the <img> element and use the Click and Focus methods in VBA but that didn't work. I don't get an error, the code runs fine but nothing happens on the webpage. This leads me to think that this will be a bigger project than it appears, hence my reluctance to go down that path.
I did a bit of research and it seems that tabindex is not supported by the <img> element. Does that mean what I am trying to accomplish is impossible with the keyboard? Is code my only option?
If anyone knows anything that could help in VBA by all means I will take your advice into consideration.
Unfortunately the webpage is password protected and its a company account therefore I cannot post it.
After right-clicking inspect element in my Chrome browser this is what I see:
<img alt="View Quantities At Other Locations" src="/WebOrder/Images/CheckQtys.gif"
title="View Quantities At Other Locations" class="popup"popupdirection="upperleft"
popupwidth="380" popupcontent="#ProductQuantitiesForAccessibleBranches"
onbeforepopupcreate="onBeforePopupCreate_GetProductQuantitiesForAccessibleBranches(this)"
popupajaxformid="GetProductQuantitiesForAccessibleBranches"
onbeforepopupajaxpost="onBeforePopupAjaxPost_GetProductQuantitiesForAccessibleBranches(this)"
oncompletepopupajaxpost="onCompletePopupAjaxPost_GetProductQuantitiesForAccessibleBranches(this)"
productguid="00000000-0000-0000-0000-000000058927" displayitem="732899500"
brandguid="00000000-0000-0000-0000-000000000000" brandname="" brandsku="">
Does anyone have any ideas how I can set focus to this element (either with my keyboard or VBA)?
You can focus on a div using <div tabindex=0> Stuff Here </div>. Place the image inside the div and use the div to manipulate it.

Can't move tabs in PHP Storm

I'm trying to drag navigation tabs to new positions (and also to a different screen) in the editor in PHP Storm - I used to be able to do it but now it won't let me.
Anyone have any idea what's going on here? I'm on the EAP and have been switching between that and the stable release.
[edit] I've gone in to preferences/settings and checked tab-related settings, so far no joy.
I had the same problem, and for me it was "Drag-n-drop with alt pressed only". Had to turn it off. You can search for it with just "ALT"
If anyone still experiences this problem - the most common reason of being unable to change order of tabs by drag and drop is having one of Tab Order options enabled. Here is where it sits:

html dropdownlist cannot type until clicked on

I have tried this in multiple browsers and have done searches for this but have not been able to find a solution.
So here is the problem. I have CHtml::dropDownLists on my page. When you tab to that you can sometimes just type to change to an option that is with in it but there are other times where you have to actually click on that before you can start typing to change. Granted once you click on it you can change it but I need to have more of a hands off mouse control.
I was curious if this was based on how the browser placed items with its DOM or if it is something with Yii.
Any thoughts, pointer, hidden websites about this would be greatly appreciated.