hide

Hiding "Group By" value in a Content Query Web part

Hello I'm making a Sharepoint 2007 Content Query web part, where I want to group by a field (ArticleSticky), but I don't want to show the field in the webpart. Is there some way I can hide the field in the webpart? Maybe in the XSLT definition ? ...

jQuery: move window viewport to show freshly toggled element

I have a simple bit of jQuery in doc ready which toggles a div containing a textarea: $('div#addnote-area').hide(); // hide the div $('a#addnote-link').click(function() { // click event listener on link $('div#addnote-area').toggle(); // toggle the hidden div }); The toggle works fine when clicking the link. The problem I'm havi...

WPF Popup hiding problem

Hi ! Suppose you have a ToggleButton for opening a Popup, same behaviour as all known elements as ComboBox etc. ... which is this code: <ToggleButton x:Name="PART_OpenToggleButton" Focusable="False" IsChecked="False" Template="{StaticResource MyToggleButton}"> <Grid> ...

Hide Cursor on Form in VB6

I'm currently using the ShowCursor API call to hide a cursor for an application after a set period of inactivity. This works fine, except that the cursor is hidden over both the menus and status bar (which I don't want). I'm also using a Form_MouseMove to switch the cursor back on, but this doesn't work over the menus or status bar. I...

jQuery 1.3.2 and IE 8 problem with hide() and show()

Can someone tell me please why the following example work in Firefox but not in IE 8? Only content_1 work correct in IE 8. Thx vijey. <script type="text/javascript"> $(function(){ $("#sortable").sortable({handle: '#dragable'}); }); $(function(){ var v; $('div[id^="content_"]').hover( function () { v = $(...

Hiding HTML Table rows when using Sorttable

Hi, I have a large table (4000 rows, 17 columns) with which I use Sorttable. It's somewhat usable in Chrome (not so much in IE). I'd like to add some checkboxes (not on each row, just in a control panel besides the table) to show/hide groups of rows, using javascript. I'm not (so far) using JQuery or anything other than Sorttable (which...

JQuery hide() and checkbox selecting

I've got some strange behaviour happening I can't work out. I've written some code to add some functionality to a list containing labels and checkboxes. If the user has javascript enabled, I want the checkboxes to be hidden and for the labels to become clickable and change their appearance to indicate whether or not they have been select...

if the visibilty is hidden of a particular column of a listview will it be shown in the disc if the files are burn?

my query is about hiding a particular column in the listview..if im successful in doing that then how i will be able to hide it to the user if the files in the listview are burn with that hidden column..how can i apply the authentication...to a particular column that a user cannot see that while burning the files in the disc that are pla...

How to hide all URL in Firefox status bar when mouseover to any links?

Anyone can give me the answer? TQ. ...

Best Way To Hide Web Address

Hi, i want to hide url from user. In this case if i have dedicated server i can open site by ip address directyly but it is shared hosting also i don't want to use frames. I am waitting suggestions, thanks. ...

More elegant way to show | hide in jQuery

Hi Guys, I am learning jQuery and just came up with this - but really not sure whether it is the best solution. Would someone be able to assist and tell me whether this is something more "elegant" ? $('#hde_test').hide(); $('#shw_test').click(function() { $('#shw_test').hide(); $('#hde_test').show(); $('.class1').show(); ...

Jquery - Hide specific div

I have several divs that share a common class. If one of these divs do not have a child div, I want to hide the div. I can find the right div but I'm unable to hide it. This is my code, $(function() { if ($(".adRight.childen('div')").length == 0) { $(this).hide(); } }); What should I use instead of ...

jQuery IE7 bug on multiple .hide listeners

I'm building a product page, can be seen here (http://n9nemedia.net/v2/products/), and the script in a singular fashion (not hiding multiple divs with one listener works perfect - can be seen here http://www.supercentral.net/downloads by clicking on "Read List" under Zombie Map Pack) works perfectly. My question is, what can I do to ma...

Why won't this DOM element disappear?

I have a page that uses jQuery with a small glitch. I managed to get this down to a simple example that demonstrates the problem: <html> <head> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript"> function hideIt() { $('#hideme').fadeOut('slow', function() { $(this).remove(); } ); } </script> <...

jQuery toggling div visibility

I have a HTML document with the below setup: <div class="main-div" style="padding: 5px; border: 1px solid green;"> <div class="first-div" style="width: 200px; height: 200px; padding: 5px; border: 1px solid purple"> First Div <a href="#" class="control">Control</a> </div> <div class="second-div hidden" style="wid...

WinForms cursor hidden only on one Form

I have a C# application with 2 simultaneous visible forms, and I need to hide mouse cursor when it is over only on one of them. If I use Cursor.Hide() it applies the change for both of them. ...

Android: how to hide and then show View with animation effect?

I have similar question like this one: http://stackoverflow.com/questions/2079074/update-layout-with-the-animation Basically: I have one vertical LinearLayout View with edittext, button and then list. I'd like to hide exittext after pressing button to make more space for list (button will go up). On second press edittext should be visib...

jQuery Show a Textbox When an Option is Selected

I have the following code: <select> <option value="Type 1">Type 1</option> <option value="Type 2">Type 2</option> <option value="Type 3">Type 3</option> <option value="Other">Other</option> </select> <input type="text" id="other" /> What I want to do is using jQuery make the textbox below hidden by default, and then show it if a user...

Hide jButton in Netbeans

Hi, Is there a way to hide a jButton in Netbeans? (similar to button.visible = false in VS) ...

Textbox with password properties in Netbeans

Hi, In netbeans it is possible to hide the type password in a textbox with **? thanks ...