intfiction.org

The Interactive Fiction Community Forum
It is currently Wed May 22, 2013 2:19 pm

All times are UTC - 6 hours [ DST ]




Post new topic Reply to topic  [ 3 posts ] 
Author Message
PostPosted: Mon May 14, 2012 12:32 pm 
Offline

Joined: Sat Jun 18, 2011 12:52 pm
Posts: 29
For some reason, text input forms don't seem to be working in Undum. I've included the following code in my game:

Code:
<form name='nameform'>\
   First name: <input type='text' name='fname'>\
   Last name: <input type='text' name='lname'>\
</form>\


Although the text input forms do show up, when I actually try to enter data, no letters appear. Has anyone else encountered this problem? Do you know of a solution?

Thanks!
tuatha


Last edited by tuatha on Mon May 14, 2012 12:54 pm, edited 1 time in total.

Top
 Profile Send private message  
 
 Post subject: Re: Undum and Text Input
PostPosted: Mon May 14, 2012 12:40 pm 
Offline

Joined: Sat Jun 18, 2011 12:52 pm
Posts: 29
Purely by accident, I found what might lead to a solution. If I click on a text field and then press Tab, then I can enter data normally. I have no idea what's causing this behavior, but I'll start searching Google for an answer. If I find one, I'll post it.


Top
 Profile Send private message  
 
 Post subject: Re: Undum and Text Input
PostPosted: Mon May 14, 2012 12:54 pm 
Offline

Joined: Sat Jun 18, 2011 12:52 pm
Posts: 29
Well, it's a hacky solution, but at least it works. By adding an onclick command, I'm able to get the input fields working. Now the code reads:

Code:
<form name='nameform' class='transient'>\
   <p>First name: <input type='text' name='fname' OnClick='document.nameform.fname.focus();'/><br />\
   Last name: <input type='text' name='lname' OnClick='document.nameform.lname.focus();' /></p>\
</form>\


Top
 Profile Send private message  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 3 posts ] 

All times are UTC - 6 hours [ DST ]


Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB® Forum Software © phpBB Group