-
Posts
2,769 -
Joined
-
Last visited
-
Days Won
31
Everything posted by Martijn Geerts
-
I'm using: $table = $this->modules->get("MarkupAdminDataTable"); Then when I need to have a form wrapped around it I'll end up like this $output = "<form action='./dosomething' method='post'>"; $output .= $table->render(); $output .= "</form>"; Is there a cleaner way to do it ?
-
Module: Testrun selectors + find() from admin (ProcessSelectorTest)
Martijn Geerts replied to nik's topic in Modules/Plugins
Thank you nik, very handy. -
Repeater bug in PW 2.2.9 (2.2.8-2)
Martijn Geerts replied to Raymond Geerts's topic in General Support
Ryan, you're amazing... Already fixed ! -
@Gazley it's just personal preference that if something can be done using CSS without additional classes I'll take that approach.
-
@Gazley, I don't think it's a bad idea, but if can be done with CCS then i think that is preferable as it is presentational.
-
First-child selector has got good support, IE7 and up, last-child I think IE9. The link provided by Soma helps with a lot of circumstances. I love Selectivizr. And I think not spitting out class="" in PHP makes the code much cleaner.
-
Wow this looks very nice. Gonna test it soon when i'm back again & have acces to my comp again.
-
Thank you ryan for all the quick respons.... as always
-
Think it was placed under Agrio... City name is 's-Heerenberg, Company Agrio
-
Yep, I can confirm, that there's 2.2.5 in the zip filename, but it's actually 2.2.7
-
The newest GitHub version will work I think, saw ryan did some changes to the core for the FORM a week ago or so.
-
A colleague just ordered the Form Builder, exiting. Can't wait to try it.
-
Looks real cool!
-
or: jqueryfordesigners.... & visualjquery both old but good.... tnx Remy.. you saved me there...
- 3 replies
-
- 101
- javascript
-
(and 1 more)
Tagged with:
-
Great to hear !!, also saw on Github you fixed the sessionLoginThrottle as well... Nice work ryan.
-
You need to shave reno, your beard tickles in irc...
-
You're welcome thistimj.
-
I think when you want PW to be more famous. Just the right guys should hear about it. L. Jeffrey Zeldman, Chris Coyier, Remy Sharp, Eric A. Meyer or Paul Irish for example. If they tell something nice about PW, usage of PW will expand. (I think) The problem with competitions you mentioned is I think is that they have to compair things you can't compair. ( appels met peren vergelijken [Dutch] ) So the outcome is never honest.
-
creating space between text paragraph in textarea field
Martijn Geerts replied to danielholanda's topic in Getting Started
Does your p tags in your CSS hass a margin-bottom or a padding-bottom ? -
javascript file not working with image upload
Martijn Geerts replied to danielholanda's topic in Getting Started
Can imagine that it's looks like a soup. Take a view evenings, and learn some basic PHP I recommend. After that spend some nights on the variable pages. Ryan has done a great job describing the variables. Give your self some time, don't want to much at once. You'll learn step by step. Now Soma, ryan, apeisa and all the other module writers are learning me OOP due to the fact that they comment their scripts most of the time very well. So i recommend when you start writing scripts, comment all what you're writing, what a variable is, what it does or just what you don't understand.- 12 replies
-
- 1
-
-
- javascript
- onload
-
(and 3 more)
Tagged with:
-
How to disable the failed login time delay?
Martijn Geerts replied to MarcC's topic in General Support
Thats cool, if it's in the core... I'll delete my (xtra) throttle functions in my module.... I'll hope I will find the time to continue with writing of it. -
How to disable the failed login time delay?
Martijn Geerts replied to MarcC's topic in General Support
SessionLogginthrottle.module counts the amounts of invalid login. & set the time when tried to login. If you you have a valid login, i think( not shure) that the login counter should be reset to 1. So nextime you login in wrong again you dont have to wait, 90 or 120 or 300 seconds for example. -
Improving site speed: server settings or html?
Martijn Geerts replied to mangopo's topic in General Support
isn't slow over here... -
How to disable the failed login time delay?
Martijn Geerts replied to MarcC's topic in General Support
Somehow I think the sessionLoginThrottle should reset it self to 1 entry or just delete the entrie in the DB after valid login. Maybe there is a bug in that module. In the module I'm writing, I just set the amount back to 1.