Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

forms-dev

The Yahoo! Groups Product Blog

Check it out!

Group Information

? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Messages

Advanced
Messages Help
Messages 60 - 91 of 946   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
60 simian187 Send Email Apr 8, 2005
7:41 pm
Hello, I have a form with multiple submit buttons, using AddInput(array( "TYPE" => "submit", "ID" => "button_name" )) I am trying to determine which button is...
61 Manuel Lemos
mallemos Send Email
Apr 8, 2005
7:59 pm
Hello, ... You need to define the NAME attribute or else the browser does not pass the information about which input was used. -- Regards, Manuel Lemos PHP...
62 counter intelligence
simian187 Send Email
Apr 8, 2005
8:10 pm
Thanks that worked...
63 operationsengineer1@...
operationsen... Send Email
Apr 11, 2005
5:31 pm
manuel, first, thanks for all you help. when i finally get this all worked out, i'll post some sample code on the net so that others can learn what you've...
64 Manuel Lemos
mallemos Send Email
Apr 12, 2005
3:14 am
Hello, ... It's LabelCLASS, not labelCLASS. ... That is more an HTML/CSS issue that really does not have to do with the class. -- Regards, Manuel Lemos PHP...
65 operationsengineer1@...
operationsen... Send Email
Apr 12, 2005
3:53 pm
... yes. i'm going to write that 100 times on a chalkboard as soon as i find a chalkboard! changing to "LabelCLASS&quot; allowed the class css to be picked up by...
66 Kike F Becerra
qbecerra Send Email
Apr 12, 2005
8:16 pm
Hi I'm building a form with your class, and i want to build a dynamic select.. $form->AddInput(array( "TYPE"=>"select", "NAME"=>"campocliente&quot;, ...
67 Manuel Lemos
mallemos Send Email
Apr 12, 2005
9:37 pm
Hello, ... You just need to create an array with the options and their values: $sql->Query("SELECT * FROM CLIENT"); $options=array() for ($i=0;...
68 operationsengineer1@...
operationsen... Send Email
Apr 13, 2005
3:53 pm
Manuel, the misaligned text box was my issue - i styled the inputs (including text boxes) to have a margin-bottom, but i hadn't styled the selects to have the...
69 Kike F Becerra
qbecerra Send Email
Apr 14, 2005
7:32 pm
I tried to learn how form templating is done in the creation of my form... but well, the example is a little complex for now... let's suppose my form has 2...
70 Manuel Lemos
mallemos Send Email
Apr 15, 2005
1:38 am
Hello, ... You can either use the Smarty template engine or interleave PHP commands to add input parts in HTML code . Take a look at the class examples to see...
71 Manuel Lemos
mallemos Send Email
Apr 15, 2005
1:48 am
Hello, ... Yes, the LabelCLASS and LabelSTYLE attributes of the custom inputs are not being propagated to the child inputs. I will fix that next week. -- ...
72 operationsengineer1@...
operationsen... Send Email
Apr 15, 2005
4:55 pm
i think you you want something like this... http://dbhub.net/enter_product.php take a look at the source and my form css which is near the bottom of the a very...
73 operationsengineer1@...
operationsen... Send Email
Apr 15, 2005
5:39 pm
Manuel, i'm getting the following error... "customer: it was not defined a valid input value AddLabelPart: it was not specified a valid label FOR input ID" ...
74 Manuel Lemos
mallemos Send Email
Apr 15, 2005
6:20 pm
Hello, ... This means that you are trying to show a label for an input that does not exist or was not successfully added to the form. Try checking the error...
75 Kike F Becerra
qbecerra Send Email
Apr 18, 2005
2:59 am
Hi... Does any1 know which procedures are necessary to integrate this xtremely awesome date selector into forms generator ? (see demos) ...
76 operationsengineer1@...
operationsen... Send Email
Apr 18, 2005
4:10 pm
... Manuel, how do i check for AddInput call error? tia... __________________________________ Do you Yahoo!? Plan great trips with Yahoo! Travel: Now over...
77 operationsengineer1@...
operationsen... Send Email
Apr 18, 2005
4:53 pm
... Manuel, I hacked around enough to have located the problem without finding the AddInput call error (I'd still appreciate alesson in how to check this,...
78 operationsengineer1@...
operationsen... Send Email
Apr 18, 2005
7:43 pm
Manuel, I have the following code for a dynamic select box (it doesn't work, of course)... $conn = &ADONewConnection('postgres&#39;); ...
79 Manuel Lemos
mallemos Send Email
Apr 21, 2005
3:14 am
Hello, ... Have you checked the section of the class documentation named "Enhancing forms with custom input type plug-ins" ? -- Regards, Manuel Lemos PHP...
80 Manuel Lemos
mallemos Send Email
Apr 21, 2005
3:14 am
Hello, ... If you check the documentation you can see that that function returns an error message in case it fails or an empty string when there was no error. ...
81 Manuel Lemos
mallemos Send Email
Apr 21, 2005
3:14 am
Hello, ... Yes, this is a common way to set form select inputs. You can for instance initialize your customer select options array like this? ...
82 Manuel Lemos
mallemos Send Email
Apr 21, 2005
3:14 am
Hello, ... You have set the VALUE to "" which is not present in the $options array, so AddInput fails. ... When you call the Reset() function on an associative...
83 operationsengineer1@...
operationsen... Send Email
Apr 21, 2005
6:02 pm
... Manuel, thank you! i was using "customer_name" instead of "customer_id" as my "VALUE" entry. using "customer_id" produces the combo box and using your ...
84 artem_ivlev Send Email Apr 22, 2005
2:55 pm
Hi! i need make custom input class. It must consists of select and text fields. Text field is alweys innactive but if in select field selected "Other" it must...
85 Manuel Lemos
mallemos Send Email
Apr 22, 2005
4:09 pm
Hello, ... This is relatively easy but it requires a little studying of how to create custom input classes. I suggest that you start by trying to do it...
86 Kike F Becerra
qbecerra Send Email
Apr 23, 2005
2:04 am
Sorry Manuel I didn't do... but I'm gonna do it right now Thanks a lot for your help !! AWESOME WORK DUDE ! ... "Enhancing...
88 operationsengineer1@...
operationsen... Send Email
Apr 28, 2005
11:20 pm
Manuel, i want to create a multiple select box that displays product_number (already done). for the products that are selected, i want to insert the...
89 Manuel Lemos
mallemos Send Email
Apr 29, 2005
3:13 am
Hello, ... I am afraid that it will be hard to find anybody to do all your work for free. This list is more about helping people to use the forms class to ...
91 Manuel Lemos
mallemos Send Email
Apr 29, 2005
4:13 am
Hello, ... I have had requests to implement dependent selects and I was willing to develop a plug-in class to provide that. However, since I never needed it, I...
Messages 60 - 91 of 946   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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