Greg Peden

Results 31 comments of Greg Peden

No worries. I wrote a fix which I think works, I'm just running on my project for a bit to make sure it's good before I submit it for a...

If you want an empty or "null" option in a select list, you need to include an empty option. This is external to BootForm, it's just how HTML works. Example...

I apologize for missing this earlier, thank you for taking the time to provide feedback. Well, click-confirm is explicitly firing the intercepted event upon approval, so probably that bypasses the...

For now you can pull version "master-dev" in your composer file. You can always use "-dev" and it'll pull the latest version of a given branch.

``` json "require": { "joshfraser/php-name-parser": "master-dev" } ``` This works for any branch on any project. If there is a branch called "extra-big-bananas" then you can pull it in to...

A pattern I use in my application is to attach a slightly customized "team" model to many things for which I need to describe the relationship various users have with...

I have modified the Team model to include a one-to-one polymorphic relationship called "context" then I bind the teams to their pertinent context. Every team has a host model responsible...

Just to add to the OP's point, reserving this space for the toolbar even when it is not used is resulting in wasted space in cases where the toolbar is...

For those coming here for solutions... in my case I was custom building the `toSearchableArray()` method without an 'id' property but the indexer expects 'id' column to be included in...