|
I'd like to conditionally hide a tab in a TabNavigator. It seems that setting visible doesn't work properly (presumably because this is how the TabNavigator hides the tabs that aren't currently selected).
What's the right way to do this?
Started by Scotty Allen on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
I found the simplest way is to bind each tab's.
What do you mean by hide? If you actually mean remove, then just take your array that's bound TabNavigator child (for which visible didn't work).
|
|
In IntelliJ 9.0, is there any way to hide the panels on the sides and bottom? Specifically, I'm trying to hide the Ant Build panel, since I don't use Ant and don't want to have these extra panels taking up space on my side and bottom bars.
Started by Josh Brown on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
CTRL-SHIFT-F12 maximizes the editor
Also, SHIFT-ESC closes the active panel.
Go to Settings > Plugins and uncheck the "Enable" box next to Ant Support .
You can permanently remove the Ant Build panel by disabling the plugin .
|
|
You launch a java program from a console (maybe using a .bat script). I don't want the console to remain visible, I want to hide it.
Is there a simple way to do this ? Without JNI ?
Thanks.
Started by Erik N on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
You can hide the console by using javaw.exe.
With error information if a launch fails for some reason .
|
Ask your Facebook Friends
|
I have a third party JavaScript plug-in but including the file breaks IntelliSense for jQuery amongst other things. The only way I can get IntelliSense back working with jQuery is by commenting out the plug-in. Is there a way I can hide the plug-in file...
Started by flesh on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
That should "hide" the plug-in from the external javascript.
Using ScriptManager.RegisterClientScriptInclude with "-vsdoc" appended to the filename.
That way the IntelliSense doesn't know it's there.
|
|
I have a carbon C++ application and I would like to programmatically do the equivalent of Command-H (to hide the application) which is available in the Application menu for my app. I have explored the carbon API for TransitionWindow and HideWindow and...
Answer Snippets (Read the full thread at stackoverflow):
You can also send a kHICommandHide ('....
Any thoughts?
I'm no expert but you can just use, your API seems to be the most direct way and the above code probably just uses it as well.
An AppleEvent but I didn't see one for hide application.
|
|
I want to have a bunch of spans with classes of different "depths", i.e one may be depth 1, another depth 2, another depth 3.
<span class="depth1"></span> <span class="depth2"></span> <span class="depth3"></span>
Then...
Started by Eliyahu on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
$('span[class*=depth]').each of the depth name if (matches[2] !== undefined && matches[2] < 3) { $(this).hide with useless classes when there is a better way....
;3) { $(this).hide(); } });
A bit of improvements to Jason's solution.
|
|
I know you can put <% if %> statements in the ItemTemplate to hide controls but the column is still there. You cannot put <% %> statements into the LayoutTemplate which is where the column headings are declared, hence the problem. Does anyone...
Answer Snippets (Read the full thread at stackoverflow):
The listview to specifically hide one column indicates to me that a table is better placed to suit your needs.
You can always set the column width to 0 (zero) if you don't find a better way.
|
|
Hello All,
I am making one Web UI 508 compliant and one requirement states "working with Web UI when CSS is disabled". We have several places where we show/hide elements using style=display:inline and style=display:none and calling them accordingly using...
Started by Aviator on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at stackoverflow):
When you click to show/hide something, refresh....
Then you would have to rely on page refreshes to show/hide elements.
If you've got JavaScript either.
It's supposed to function exactly the same way in all respects with CSS disabled.
|
|
I'm creating an app that is threaded. I started GUI (Announce : Form) as separate thread.
That window will be very minimalistic with one input box and maybe a button. On another thread there will be Tcp Client running and when it gets info from TcpServer...
Started by MadBoy on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
I remember having issues with Form.Show(), I have a vague Form.BeginInvoke(), which... .
Us/library/aa645739%28VS.71%29.aspx
you might try
form.Hide();
but make sure that you show/hide()));
Form.Hide() is the right method to hide the form.
|
|
I think the question speaks for itself, but I'm sick of scrolling through my procedure list filled with 50 aspnet procedures.
Is there a way to hide the dbo schema, or these procedures from the list?
Is there a different/equivalent tool that would let...
Started by TheSoftwareJedi on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
If you right-click.
It may also be in 2005.
No, not that I am aware of
In SQL 2008 there is a way.
|