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

Yahoo! Groups Tips

Did you know...
Want your group to be featured on the Yahoo! Groups website? Add a group photo to Flickr.

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 347 - 376 of 945   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
347
Hi guys I mailed the calendar plugin author and asked him about the problem I had, which I posted in prior posts. He told me to fix with this... inserting this...
Kike Becerra
qbecerra
Offline Send Email
Feb 1, 2006
4:10 pm
348
I ran it in the debugger again and noticed that it is losing the content (when run in a browser) that gets assigned to Smarty which is why the View Source...
Shekar C. Reddy
powerobject
Offline Send Email
Feb 1, 2006
4:45 pm
349
I guess I may have located the problem area: The <base> tag seems to be causing the trouble. When I copy the php file into the document-root, it's...
Shekar C. Reddy
powerobject
Offline Send Email
Feb 1, 2006
8:50 pm
350
Here is a hidden element I'm trying to add as input: self::$form->AddInput( array( 'TYPE' => 'hidden', 'NAME' => 'id', 'ID' => 'id', 'VALUE' => $id, ...
Shekar C. Reddy
powerobject
Offline Send Email
Feb 3, 2006
9:58 am
351
Further, the element is not getting added to the page (no HTML generated). ... wrong.' )...
Shekar C. Reddy
powerobject
Offline Send Email
Feb 3, 2006
10:01 am
352
Hello Manuel, Please give me some psuedo-code as to at what point in the code (where exactly) I could write-to/read-from Cache_Lite. In normal Smarty, it is...
Shekar C. Reddy
powerobject
Offline Send Email
Feb 3, 2006
5:40 pm
353
Or is it that caching forms is not a good idea? ... (where...
Shekar C. Reddy
powerobject
Offline Send Email
Feb 3, 2006
6:01 pm
354
It was my oversight, though. I fixed the datatype error and added the input to the template and now the debugging error is gone. However, it generates HTML for...
Shekar C. Reddy
powerobject
Offline Send Email
Feb 3, 2006
10:40 pm
355
Hello, ... Opening a PHP script file directly in the browser will not make the PHP script be interpreted. Obviously you need to make the script be executed by...
Manuel Lemos
mallemos
Offline Send Email
Feb 4, 2006
7:43 pm
356
Hello, ... '^[0-9]{2}/[0-9]{2}/[0-9]{4}$' -- Regards, Manuel Lemos Metastorage - Data object relational mapping layer generator http://www.metastorage.net/ PHP...
Manuel Lemos
mallemos
Offline Send Email
Feb 4, 2006
7:44 pm
357
Hello, ... Yes, but it probably would not make sense to tell him that an hidden field is invalid, as the user would not be able to fix it, it is not visible. ...
Manuel Lemos
mallemos
Offline Send Email
Feb 4, 2006
7:50 pm
358
Hello, ... Usually I do not use Smarty myself. Anyway, there is not much point to cache forms because if the use submits new values and the form is not valid,...
Manuel Lemos
mallemos
Offline Send Email
Feb 4, 2006
7:51 pm
359
Thanks. That's exactly what I came up with eventually. Albert Padley...
Albert Padley
albertp3
Offline Send Email
Feb 5, 2006
6:13 am
360
Hi Manuel I wonder if there's a parameter for each field to be DISABLED ... Any possibilities ? Thanks...
Kike Becerra
qbecerra
Offline Send Email
Feb 5, 2006
4:54 pm
361
Hello, ... Use the "ExtraAttributes" parameter to specify HTML tag attributes that are not directly supported by the class. -- Regards, Manuel Lemos ...
Manuel Lemos
mallemos
Offline Send Email
Feb 5, 2006
5:30 pm
362
Manuel, You said the Submit button is disabled on click but I noticed that it is getting disabled only on a second click with an alert whereas it might have...
Shekar C. Reddy
powerobject
Offline Send Email
Feb 7, 2006
12:25 pm
363
... Manuel, To display all server-side validation errors at once, is it not possible to populate them in an array and eliminate duplicates before dumping their...
Shekar C. Reddy
powerobject
Offline Send Email
Feb 7, 2006
12:36 pm
364
Manuel, I'm a bit confused here. After the validations are successful, do I use the values in $_POST/$_GET or from GetInputValue() to update the database? If...
Shekar C. Reddy
powerobject
Offline Send Email
Feb 7, 2006
12:52 pm
365
Manuel, 1. I use a gradient background box for elements in edit mode by setting their CLASS attribute during AddInput() but when the form is rendered in...
Shekar C. Reddy
powerobject
Offline Send Email
Feb 7, 2006
1:44 pm
366
... manuel will likely add more info, but $product_id[] = $form->GetInputValue('product'); will successfully capture all multiple input values into...
operationsengineer1@...
operationsen...
Offline Send Email
Feb 7, 2006
6:21 pm
367
Hi, GetInputValue() returns only a single value (maybe, you were speaking of a sub-form). However, here is a tiny function I wrote to return ALL the 'editable'...
Shekar C. Reddy
powerobject
Offline Send Email
Feb 8, 2006
4:58 pm
368
... i tested it and it returned an array for me. i printed the array to my scrren via print_r() and i actually saw multiple values with my own eyes, not to ...
operationsengineer1@...
operationsen...
Offline Send Email
Feb 8, 2006
6:16 pm
369
Your code works with SELECT elements with the MULTIPLE attribute. If you remove the MULTIPLE attribute, it still returns a single VALUE (non-array) as per the...
Shekar C. Reddy
powerobject
Offline Send Email
Feb 8, 2006
8:03 pm
370
Hello, ... The problem are the nervous users that submit the form twice double-clicking on the submit button inadvertently. To minimize that problem the class...
Manuel Lemos
mallemos
Offline Send Email
Feb 8, 2006
8:34 pm
371
Oops! There is a small correction for SELECT/MULTIPLE switch: ///////////////////////////////////////////////////////////////// final function getInputValues(...
Shekar C. Reddy
powerobject
Offline Send Email
Feb 8, 2006
9:12 pm
372
Hello, ... That is not the problem. The problem is that some validations only make sense if other have succeeded first. I can show that a field is invalid ...
Manuel Lemos
mallemos
Offline Send Email
Feb 8, 2006
9:19 pm
373
Hello, ... Always use GetInputValue for normal fields. ... No. ... The class already does that on values that are changed by the class, like for instance those...
Manuel Lemos
mallemos
Offline Send Email
Feb 8, 2006
9:21 pm
374
Hello, ... Quoting should never be done for security reasons, but rather to build syntatically correct SQL. Quoting will not save you from any security...
Manuel Lemos
mallemos
Offline Send Email
Feb 8, 2006
9:31 pm
375
Hello, ... It does not exist. I could add it but I do not think it is a good idea. The function is useful but not everybody needs it. If I add all possible ...
Manuel Lemos
mallemos
Offline Send Email
Feb 8, 2006
9:32 pm
376
Hello, ... It would solve your problem but not everybody would like that behavior. Why don't you just set the CLASS attribute for all fields when you set the...
Manuel Lemos
mallemos
Offline Send Email
Feb 8, 2006
9:54 pm
Messages 347 - 376 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