|
I've got a usercontrol which inherits from the UserControl class. There are a bunch of items I want to hide from anyone who uses the class.
I can hide properties just fine...
public partial class userControls_MyControl : System.Web.UI.UserControl { private...
Started by Chu on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Library/system.componentmodel.editorbrowsableattribute.aspx
You are trying to hide a Property.
|
|
I expect that there are probably ways for a determined end user to see your code, but I would prefer to hide it.
Ideally, I would like to be able to hide it from OTHERS, but not me, in case I need to debug a live system.
Any suggestions?
Started by Chadworthington on
, 11 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
It is not possible to hide HTML source from a end user since this source is response for the HTTP GET request to hide it from ....
There is no way to hide.
If the browser can "see" the source code, the user can see it too .
|
|
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).
|
Ask your Facebook Friends
|
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 .
|
|
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.
|
|
Example:
<ul class="mybuttons"> <li class="mybutton"></li> <li class="mybutton"></li> <li class="mybutton"></li> </ul>
Is it possible to hide the 2nd item using css?
Started by GollyJer on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Here's how you'd do it with jQuery:
$("ul.mybuttons li:nth-child be accomplished with... .
In pure CSS, the syntax is simply
li.mybutton:nth to hide or just hide the items directly.
(2)").hide();
nth-child is indeed the CSS way.
|
|
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.
|