Search the web
Sign In
New User? Sign Up
forms-dev
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 237 - 267 of 945   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
237
Hello, ... That is nice. I did not reach a conclusion on how that is done, but I think that some of these projects let you use their Javascript. So it may not...
Manuel Lemos
mallemos
Offline Send Email
Oct 3, 2005
6:49 am
238
Hello, ... What you can do is to create a custom input that would not really do anything other than generating action Javascript code to handle the ONCHANGE...
Manuel Lemos
mallemos
Offline Send Email
Oct 3, 2005
6:53 am
239
Hello, ... Ok, I just released a new version that provides explicit support to all events that form inputs may trigger. -- Regards, Manuel Lemos PHP Classes -...
Manuel Lemos
mallemos
Offline Send Email
Oct 3, 2005
6:55 am
240
... thank you! i will make some time trying to work out a slider solution and get back to you. thanks again for such a nice class that keeps getting better....
operationsengineer1@...
operationsen...
Offline Send Email
Oct 3, 2005
3:32 pm
242
I have the following template: <tr valign='bottom'> <td> <div class='footer-col'> <div class='footer-box'> <p class='cont1'>Share your new found knowledge and...
idiroddi
Offline Send Email
Oct 6, 2005
5:53 am
243
Hello, ... If you want to interleave plain HTML with form inputs like that, you need to call the class function StartLayoutCapture before the form output and...
Manuel Lemos
mallemos
Offline Send Email
Oct 6, 2005
2:54 pm
244
... Thank you, that corrected part of my problem. I have rearranged the template by placing my AddInputPart between the <p class> like so: <tr valign='bottom'>...
idiroddi
Offline Send Email
Oct 7, 2005
3:33 am
245
hi Manuel, i'm using the following code in a text entry box... ValidateAsInteger'=>1, 'ValidateAsIntegerErrorMessage'=>'the product number must contain only...
operationsengineer1@...
operationsen...
Offline Send Email
Oct 12, 2005
7:36 pm
246
... i did some testing and 801345480 (9 digits) evaluates to an integer... but if you input 8013454800 (10 digits) then it fails the integer test. is this...
operationsengineer1@...
operationsen...
Offline Send Email
Oct 12, 2005
7:46 pm
247
Hello, ... That is because it exceeds the 32 bit capacity. -- Regards, Manuel Lemos PHP Classes - Free ready to use OOP components written in PHP ...
Manuel Lemos
mallemos
Offline Send Email
Oct 12, 2005
8:15 pm
248
... I can't seem to get the above to work like I would like it. Only the inputs are kept within the <p class>. How can I force the entire form output to stay...
idiroddi
Offline Send Email
Oct 15, 2005
4:59 am
249
Hello, ... You need to make it like this: <p class="cont1">blah blah</p> <?php $form->StartLayoutCapture(); $form->AddInputPart('friend_name'); ...
Manuel Lemos
mallemos
Offline Send Email
Oct 17, 2005
3:11 am
250
hi Manuel, i'm using code similar to the following... $form->AddInput(array( 'TYPE'=>'radio', 'NAME'=>'antenna', 'ID'=>'antenna_1', ...
operationsengineer1@...
operationsen...
Offline Send Email
Oct 18, 2005
4:02 pm
251
hi Manuel, recently, i have been using check boxes pretty extensively. i noticed that when one enters an id that is numeric SetCheckedState *may* not display...
operationsengineer1@...
operationsen...
Offline Send Email
Oct 18, 2005
6:05 pm
252
Hello, ... This means that you are passing the wrong ID of the radio button that you want to check. -- Regards, Manuel Lemos PHP Classes - Free ready to use...
Manuel Lemos
mallemos
Offline Send Email
Oct 18, 2005
6:28 pm
253
Hello, ... Yes, there was a bug in GetCheckedRadio function. I just uploaded a fixed version. Thank you for reporting. -- Regards, Manuel Lemos PHP Classes -...
Manuel Lemos
mallemos
Offline Send Email
Oct 18, 2005
8:48 pm
254
... hi Manuel, i'm still lost here. if i'm sending the wrong id, how come everything works great when a radio button is checked? the passed id is the same in...
operationsengineer1@...
operationsen...
Offline Send Email
Oct 18, 2005
11:36 pm
255
Hi, I am using Manuel Lemos form class - great class. I can't figure out how to avoid that the completed form after submitting is displayed once more(as...
panospheric
Offline Send Email
Oct 19, 2005
9:31 pm
256
... what are you trying to do? anter information on one page and then display it on another page? once i have an idea what you want to do, i might be able to...
operationsengineer1@...
operationsen...
Offline Send Email
Oct 20, 2005
12:08 am
257
I want to use the formsgeneration class for write the data into a mysql database and also for editing the data. How i do? It is possible to view an example...
abmcr
Offline Send Email
Oct 20, 2005
1:51 pm
258
... i use the adodb db abstraction layer, so my db calls will be different than mysql api db calls. have you considered using adodb? it helps make code more...
operationsengineer1@...
operationsen...
Offline Send Email
Oct 20, 2005
5:30 pm
259
... enter_customer.php <?PHP session_start(); //reload same page when submitted... define ('SELF', 'enter_customer.php'); define ('TPL',...
operationsengineer1@...
operationsen...
Offline Send Email
Oct 20, 2005
5:54 pm
260
Hi, Thank you very much for taken on my problem. Actually I am doing the same thing. The only problem is that when the form has been validated/submitted it...
panospheric
Offline Send Email
Oct 21, 2005
5:44 am
261
I want to try ADODB: thank you for the code....
abmcr
Offline Send Email
Oct 21, 2005
9:23 am
262
In the example test_form.php i have this $form->AddInput(array( "TYPE"=>"select", "MULTIPLE"=>1, "NAME"=>"interests", "ID"=>"interests", "SELECTED"=>array( ...
abmcr
Offline Send Email
Oct 21, 2005
4:00 pm
263
... $URI="register.php?result_user=$result_user&result_contact=$result_contact&result_address=$result_address&user=$username"; ... Chris, i think i get the...
operationsengineer1@...
operationsen...
Offline Send Email
Oct 21, 2005
5:38 pm
264
... i'll give you some of my code and you can then apply it to your situation. Manuel helped me out with this so he gets some credit here. 1. run the query 2....
operationsengineer1@...
operationsen...
Offline Send Email
Oct 21, 2005
5:58 pm
265
hi Manuel, i'm digging deeper into the form's class' css functionality and i think i may have run into a road block. i use this code... $form->AddInput(array( ...
operationsengineer1@...
operationsen...
Offline Send Email
Oct 21, 2005
10:08 pm
266
i meant labelCLASS, not labelSTYLE - sorry about that. ... __________________________________ Yahoo! Mail - PC Magazine Editors' Choice 2005 ...
operationsengineer1@...
operationsen...
Offline Send Email
Oct 21, 2005
10:09 pm
267
Hello, ... If this was not cause by the bug that was fixed, it is because you are passing an input identifier argument that does not correspond to a the ID...
Manuel Lemos
mallemos
Offline Send Email
Oct 21, 2005
10:28 pm
Messages 237 - 267 of 945   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help