Matthew Kelly

Results 303 comments of Matthew Kelly

I'm honestly not too sure how to achieve solving this one! 😅 If anyone's tackled something like this before, or has suggestions, I'm all ears!

Not toooo surprising, I've never done mobile responsiveness before and always left Bootstrap to deal with it. Usually it's fine, but I guess here, especially in the nav bar there's...

Hi @ThomasPerezBlanco, At the moment there isn't a way to update elements created by `New-PodeWebRaw`, but I might have an idea by adding a new output function that lets you...

Hey @berki7867, In the call to `Add-PodeAuthWindowsAd` remove the `-Sessionless` switch - that should fix it for you 😄 The form will be authenticating, but no session is being created,...

@berki7867, Whoops! Yep, you'll need to use `Enable-PodeSessionMiddleware`. Place this above your `New-PodeAuthScheme`: ```powershell Enable-PodeSessionMiddleware -Secret 'schwifty' -Duration 120 -Extend ``` For testing you can keep the secret as "schwifty",...

Hey @berki7867, Hmm, that is strange 🤔 For the `$WebEvent` object, this is only available in Route, Middleware, Authentication, and Page `-ScriptBlock`s. If you're trying to see what groups Pode...

Hey @berki7867, At the moment if you want to display an image within the table it won't work (see supported elements in a table [here](https://badgerati.github.io/Pode.Web/Tutorials/Elements/Table/)). However, Images should be simple...

I actually really like the way you've done this, and it's given me an idea: On `New-PodeWebTextbox` we have a `-Width` that's an integer which gets forced to be %....

Hey @hvoges, Yes, you can! There's an [upload button](https://badgerati.github.io/Pode.Web/Tutorials/Elements/CodeEditor/#upload) which can be added to the top of the code editor. This will give you the code in `$WebEvent.Data['value']` for the...

That's a good idea actually, though I'd probably opt for using `$self` instead so it's more like .NET's `$this`: ```powershell New-PodeWebCard -Content @( New-PodeWebCodeEditor -Name 'Editor' -Language 'powershell' -Upload {...