# |
Mar 14th 2018, 17:10 |
alexmax |
This is what my checkbox field looks like under the covers. I have changed the markup ever so slightly from the original, but I think it's mostly the same, just in a different order. |
# |
Mar 14th 2018, 17:10 |
jeremyharris |
or is there a `required` attr on a hidden element somewhere? |
# |
Mar 14th 2018, 17:09 |
jeremyharris |
something is trying to focus on an element it can’t focus on. maybe tabbing through, or JS somewhere? |
# |
Mar 14th 2018, 17:09 |
alexmax |
But the thing is, I actually like the validation it does on text fields, so I'd like to keep that if posible. |
# |
Mar 14th 2018, 17:08 |
alexmax |
I don't think _I_ am doing anything, it's Chrome being too helpful. |
# |
Mar 14th 2018, 17:08 |
jeremyharris |
from what I’ve read |
# |
Mar 14th 2018, 17:08 |
jeremyharris |
yes likely |
# |
Mar 14th 2018, 17:08 |
alexmax |
I think the error message is coming from Chrome's default built-in validation. |
# |
Mar 14th 2018, 17:08 |
jeremyharris |
or disabled? |
# |
Mar 14th 2018, 17:07 |
jeremyharris |
are you trying to focus on a hidden element? |
# |
Mar 14th 2018, 17:06 |
alexmax |
I think it might have something to do with the hidden '0' field before every checkbox. |
# |
Mar 14th 2018, 17:05 |
alexmax |
This is happening for every form field that is a checkbox. |
# |
Mar 14th 2018, 17:05 |
alexmax |
`An invalid form control with name='foobar' is not focusable.` |
# |
Mar 14th 2018, 17:05 |
alexmax |
getting spammed with |
# |
Mar 14th 2018, 17:05 |
alexmax |
A CakePHP-generated form is refusing to submit |
# |
Mar 14th 2018, 17:04 |
alexmax |
Dang |
# |
Mar 14th 2018, 16:40 |
jeremyharris |
yep, cake provides a lot of security out of the box, and sql injection is definitely one of those. the entire orm layer is just really pleasant to work with, not just the query builder |
# |
Mar 14th 2018, 16:40 |
sssd |
then i switched to ORM and i was amazed how readable and easy it was to figure out the purpose and output just by reading |
# |
Mar 14th 2018, 16:39 |
sssd |
true that ORM is a must i used to write SQL queries by hand it was a big mess . 10 lines of sql and only aid to readability was capitalization of keywords. |
# |
Mar 14th 2018, 16:34 |
jeremyharris |
but the framework as a whole makes development fast and clean |
# |
Mar 14th 2018, 16:33 |
jeremyharris |
you can use it outside the framework as well |
# |
Mar 14th 2018, 16:33 |
jeremyharris |
that’s a hard question. many might say the ORM |
# |
Mar 14th 2018, 16:33 |
sssd |
@jeremyharris yea got it, but what is best thing about cakephp ? |
# |
Mar 14th 2018, 16:23 |
jeremyharris |
if you’re deciding between the two, I would run through their respective tutorials, hang out in the communities, explore the plugin space, and decide which one (if either) fits your needs. we’ll be happy to answer any cake specific questions if you’ve got them |
# |
Mar 14th 2018, 16:21 |
jeremyharris |
picking a framework or a toolset depends on the job at hand. heck, even picking a language depends on the job |
# |
Mar 14th 2018, 16:21 |
jeremyharris |
is a hammer better than a screwdriver? depends what you’re doing |
# |
Mar 14th 2018, 16:19 |
sssd |
is cakephp better than laravel? |
# |
Mar 14th 2018, 15:59 |
dereuromark |
would be nice if you can make a PR to fix this. |
# |
Mar 14th 2018, 15:58 |
dereuromark |
https://github.com/dereuromark/cakephp-sandbox/blob/3.0/tests/Fixture/UsersFixture.php#L18 |
# |
Mar 14th 2018, 15:57 |
dereuromark |
looks like it is not complete |
# |
Mar 14th 2018, 15:40 |
alexmax |
there is no boolean type? |
# |
Mar 14th 2018, 15:40 |
alexmax |
https://book.cakephp.org/3.0/en/development/testing.html#creating-fixtures |
# |
Mar 14th 2018, 15:39 |
alexmax |
oh, found it |
# |
Mar 14th 2018, 15:38 |
alexmax |
Where can I find a list of all schema data types? |
# |
Mar 14th 2018, 15:19 |
pierre-baptiste.varle |
thank you @dereuromark |
# |
Mar 14th 2018, 15:17 |
pierre-baptiste.varle |
I will use the standard php function |
# |
Mar 14th 2018, 15:16 |
dereuromark |
you can use some own lib with your own url() method if you want to, this is not framework relevant though |
# |
Mar 14th 2018, 15:16 |
dereuromark |
it is designed for the internal building |
# |
Mar 14th 2018, 15:16 |
dereuromark |
performance issues |
# |
Mar 14th 2018, 15:15 |
pierre-baptiste.varle |
I was thinking that router can be used for external url too |
# |
Mar 14th 2018, 15:15 |
pierre-baptiste.varle |
yes I just found http://php.net/manual/fa/function.http-build-url.php thank |