Re: cakephp best practice

2015-06-03 Thread Tracy Floyd
If you are just looking to make it easier for them to find an option in a large list, I would implement something like https://select2.github.io/ (see the remote data section in the examples if you have too many sales groups to pre-populate the list on page load) If the user needs to fill out m

Re: google search in cake 1.1

2008-04-16 Thread Floyd
Ok, i solved my problem. For possible interested people I used a code to do http request [1] and get results in format xml. Thanks to Kabturek for link me to it in IRC. [1] http://netevil.org/blog/2006/nov/http-post-from-php-without-curl --~--~-~--~~~---~--~~ You

google search in cake 1.1

2008-04-15 Thread Floyd
hi all, I want to integrate a google custom search in my enterprise app that was developed using cake 1.1. We paid to upgrade a custom business search edition [CBSE] that give us the option to get a xml with the searched results. "The Google WebSearch service enables Custom Search Busin

Re: Understanding validator regex

2007-05-31 Thread Floyd
Thx Davide, I don't think the double slash escapes \ character, so wouldn't be a valid email. The second part, I don't understand the relationship preg_match function with these symbols. I used this function correctly without these some times. --~--~-~--~~~---~--~--

Understanding validator regex

2007-05-31 Thread Floyd
Hi, I'm defining new regex validators in cake/validator.php file. I have worked with regex in other projects but indeed I don't understand some issues of the regex that was defined in cake by default. Example: define('VALID_EMAIL', '/\\A(?:^([a-z0-9][a-z0-9_\\-\\.\\+]*)@([a-z0-9] [a-z0-9\\.\\-]

Re: Country

2007-05-29 Thread Floyd
Hi cake_learner, I suggest you test the Country Select List Helper [1]. I think it is approximately what you are seeking. Greetings from Catalonia. [1] http://bakery.cakephp.org/articles/view/country-select-list-helper --~--~-~--~~~---~--~~ You received this me

Re: Creating sub module / admin panel

2007-05-09 Thread Floyd
Thank you Hellbot and thank you Tulio :) I solved my doubt. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send email to cake-php@googlegroups.com To unsubscribe from this g

Re: Creating sub module / admin panel

2007-05-08 Thread Floyd
Ok Hellbot but this screencast only shows how to use admin routes. This isn't our problem, so I want to make (and jitu too, I think) a admin dir that collects all admin routes in my application. In fact, I'd like to protect the whole dir with a password HTTP (not with acl neither obAuth). Thanks!

Re: Creating sub module / admin panel

2007-05-08 Thread Floyd
Ok Hellbot but this screencasts only show how to use admin routes. This is not our problem, so we (and jitu i think so) want to make a admin dir that colect all admin routes. In fact, I'd like to protect whole dir with password HTTP (not with acl or obAuth). Thanks! --~--~-~--~~

Re: Creating sub module / admin panel

2007-05-08 Thread Floyd
I want to do the same and, if is possible, adding a password to this directory admin. I searched for information to doing this feature but i haven't found nothing good. Sorry for my bad english and thanks! On May 8, 9:50 am, Jitu <[EMAIL PROTECTED]> wrote: > How can we create sub module into cak