hidden

JQuery Autocomplete hidden field

Hello, I received help on the first part of my problem here whoever I forgot to mention my second issue. After a user selects a value from the autocomplete field I would like to populate the vaules ID into a hidden field so it can be passed to PHP and inserted into a database. Here is a breakdown of what I am trying to accomplish: Us...

Spurious 'system\cmd.exe' in FOR /F loops

Hi folk, This is one of those requirements that seem to get more complicated, every time I find a Windows/cmd shell hack that need a 'work around'. Essentially ... I need to iterate through a specific list of folders in a DOS Shell FOR loop. Here is the loop I came up with: echo ^ [start for test] for /F "usebackq " %%f IN (`dir...

GWT : How to Read Hidden Box value??

I Have a hidden box in my HTML. How I can get it value in my GWT when onModuleLoad?? the hidden box will content a value pass from another page. Now I can see the hidden box content the value but I fail to get the value in my GWT onModuleLoad. HTML page: [code] <% String sSessionID=request.getParameter("NA_SessionID"); if(sSessionID==...

JQuery :: retrieve values from form elements

Hi, I've wrote a html page wich uses jquery, but javascript execution stops at the following point: alert($('[name=fAantalVakjes]').val()); This is the relevant html tag: <input type="hidden" value="1" id="fAantalVakjes" name="fAantalVakjes" /> Could someone help me please? Thanks in advance, Yvan Edit: full code: function Vali...

Hidden Window Display on Users Desktop

We have a VB6 application that uses a non-visible window (form) for DDE communication. We have some clients reporting that occasionally they can see this window on their desktop. I did a scan through the code for any visible = true or show's on the form in question, but nothing. This about all we do with it: Load frmDDELink frmDDELin...

Server side control hidden - possible to read values client side?

Hi, A quick question. I've got two textboxes running server side and have their visibility turned off. I'm using a couple of ASP.NET controls which require the textboxes to exist. However, I am filling them from the code behind and would not like the user to see this. Can the user turn the visibility on and see the values entered in t...

How can I get jquery to toggle-fade a flashcard div open and closed on click?

What do I have to change to the code below in order for the user to click on a flashcard header to open and close the flashcard answer? I couldn't get toggle() to work with fadein/fadeout the version below doesn't respond to the click code: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xht...

Creating an offscreen frame in Java (or: how to avoid a blank menu on a Mac, when all application windows are closed)?

I am making a Mac application, and I want my menu bar to look right. Any Mac user knows the menu bar should be in the top screen menu. Setting apple.laf.useScreenMenuBar to true in the property list file gets rid of the in-frame menu bars and moves the menu bar of the current focused window to the screen menu. However, when all window...

Hidden token into default channel - AntlrV3

Suppose I'm having white spaces (WS) in the hidden channel. And for a particular rule alone, I want white spaces also to be considered, is it possible to bring WS to the default channel for that particular rule alone in the parser? ...

Antlr3 parser path command shell

I need to parse the command shell such as: cp /home/test /home/test2 My problem is in the correct path parsing. I defined a rule (I can not use a token as path but I need to define it in the parser): path : ('/' ID)+; with ID: (A.. Z | a.. z) +; WS: (' ') {$channel = HIDDEN;}; I need to keep the token WS hidden, but this gives ...

"Hidden" CSS file works only for FF, Opera

My friend sent me a link to this little page which shows a simple HTML+CSS layed out page. However, if you look at the source code, you'll notice there's no link to the css file. If you're using ff with firebug, you can see that under NET, the css file is linked through a sent header (just wanted to show y'all that). My question is, do...

Show/hide hidden files via a script/menu command?

I hide files so as to maintain a clean interface when browsing for the most useful items on my hard drive, safe in the knowledge that I can simply place the hidden file's name in the location bar at the top and open it that way. However, Windows 7 makes it a pain to toggle viewing hidden files or not. Is there a way to show/hide hidden ...

How do I write to a hidden file?

I am using the TextWriter to try to write to a hidden file, and it is throwing an exception. I can't seem to figure out how to write to a hidden file. using (TextWriter tw = new StreamWriter(filename)) { tw.WriteLine("foo"); tw.Close(); } Exception: Unhandled Exception: System.UnauthorizedAccessException: Access to the path ...

jQuery hidden selectors

When I hide a selection: $("#someselector").hide(); I usually put it on the bottom. When that webpage shows up, for a brief moment I see the hidden selection. Then it disappears, as it should. That's not quite what I wanted to see. Is there a way to stop that quick view of the "hidden" selection? ...

Hiding buttons/images shortcut?

Is there a shortcut for this code? -(IBAction)reset{ button1.hidden=NO; button2.hidden=NO; button3.hidden=NO; button4.hidden=NO; button5.hidden=NO; button6.hidden=NO; button7.hidden=NO; button8.hidden=NO; button9.hidden=NO; button10.hidden=NO; button11.hidden=NO; button12.hidden=NO; bu...

Freaky UISwitch/UILabel.hidden/UIImageView.hidden Problem!

Hi Everyone! Sorry for the constant questions, but in my app, you are able to toggle if 3 UILabels and 1 UIImageview's hidden property is YES or NO via UISwitchs on another page (The settings page). The weird part is, one of the UILabels is hidden, even when it is declared that it is not to be hidden. Here is my code on the settings p...

UpdateModel not working consistently for me if a ddl gets hidden by jQuery

Hi My jQuery code hides a ddl under certain circumstances. When this is the case, after submitting the form, using the UpdateModel doesn't seem to work consistently. My code in the controller: // POST: /IllnessDetail/Edit [AcceptVerbs(HttpVerbs.Post)] public ActionResult Edit(IllnessDetail ill) { I...

Force git to add dotfiles to repository

How can I add files starting with dot (hidden files) in git repo? Git seems to always ignore those. When I type "git add .", dotfiles in GIT_DIR are added, but not from subdirectories. On the other hand, "git add subdir/.dotfile" won't work. I tried "git add -f" and putting "!.*" in GIT_DIR/.git/info/exclude. No luck. ...

jquery: print out hidden element

hi all, i'm using the jQuery Print Element plugin for printing but i think it's a general css issue: how can i print out a hidden element? (with css set to display:none;) when trying, i'm gettin only a plain sheet. is there any solution? thanks ...

Finding ghost constraint from Oracle DB

I had a constraint in a table CREATE TABLE "USERSAPPLICATIONS" ( "USERID" NUMBER NOT NULL , "APPLICATIONNAME" VARCHAR2 (30) NOT NULL , CONSTRAINT "PK_USERSAPPLICATIONS" PRIMARY KEY ("USERID","APPLICATIONNAME") ) / Two weeks ago I modified the table, added some columns, deleted the constraint "PK_USERSAPPLICATIONS" and add...