Matthew Kelly
Matthew Kelly
Hi @eugen257, Do you mean hide the whole textbox on page load, or just the contents of the textbox? If it's the former, then you can pipe `Add-PodeWebPage` into `Register-PodeWebPageEvent`:...
Hi @eugen257, Sorry, I missed a parameter on `Add-PodePage`, you'll need to pass it `-PassThru` so it returns the page for you to use.
Hey @qy2009, Yes this makes sense, the variables created outside of `Start-PodeServer` won't be available to the page/table's scriptblock since they're in a different runspace while the server is running...
Hey @qy2009, In case there are any errors, add the following under `Add-PodeEndpoint`: ```powershell New-PodeLoggingMethod -Terminal | Enable-PodeErrorLogging ``` If that doesn't show anything, with the server running, in the...
Hey @qy2009, Hmm, the 400 definitely suggest an error is being thrown 🤔 Which version of PowerShell, Pode, and Pode.Web are you using? For the results on the terminal, are...
> Then I removed the troubleshooting code, and it also ran successfully. > > I guess the only difference from the my last code is this part: > return $results...
Hey @qy2009, The column order is a quick one, add `[ordered]` to the front of the hashtable 😄 ie: ```powershell $results = (Invoke-DbaQuery -SqlInstance "xxx" -Database "xxx" -Query $query |...
Hey @AndreasNick, The only inbuilt way to do it at the moment is by using `New-PodeWebRaw` - if it's a new element and you only need custom HTML (with no...
Hi @eugen257, There isn't at the moment, it'll label as an enhancement to be implemented :)
I often forget `RequiredModules` is a thing! It should also mean I can remove the logic that does the module checking 🤔