Sandy Ganz
Sandy Ganz
I was just going to ask for something like this. It's very useful for the start / end of a tour where you might just want a bubble centered in...
Yeah, that is what I was trying to do by adding ID's to the internal components, but couldn't inject any ID's into the generated code without hacking up the component...
Generally that's up to you. In some cases I create 2 new parameters, one is called `Offset` and the other is `Limit`. These are controlled by the GraphQL query and...
I'm not sure, but you might look at GhostNav and related functions that are provided. The do a lot automatically. To use it just change `Nav::widget([` to `GhostNav::widget([` Their are...
``` echo GhostNav::widget([ 'options' => ['class' => 'navbar-nav navbar-right'], 'encodeLabels'=>false, // don't encode stuff in the label, needed for UserManagementModule::menuItems() 'items' => [ ['label' => 'Equalizer', 'url' => ['/equalizer']], ['label'...
Look at these static functions - `User::hasRole($roles, $superAdminAllowed = true)` `User::hasPermission($permission, $superAdminAllowed = true)` They look like they might give you the ability to check for what you need. Also...
If your 5 environments are 5 distinct applications it will not work well if they all share the same database. You can make it work when refreshing the routes each...
Is it something related to the V2 Gauge? I can wipe my local code and pull the branch and see if it works if that helps and fix anything on...