Questions tagged [blazer]

15 questions
1
vote
1 answer

Parameterized Queries having IN clause not working as expected in blazer tool of ruby-on-rails

Here is the example of MySQL connector based Blazer Query SELECT * FROM customers where email_domain in ({domains}) When I pass ?domains=ibm.com it works however if I pass ?domains=ibm.com,ibm.co.in Blazer modifies the query like this: SELECT *…
shahjapan
  • 13,637
  • 22
  • 74
  • 104
1
vote
0 answers

Use Puppeteer Sharp in Blazor webassembly

I want to save razor page as pdf for user.I used the following code in Blazer Web Assembly, but an error was observed. using var browserFetcher = new BrowserFetcher(); await browserFetcher.DownloadAsync(); await using var…
miss_rose
  • 11
  • 2
1
vote
0 answers

Connection to Redshift database through Ruby on Rails, blazer hanging and failing

In a Ruby on Rails 6 project, I am using the blazer gem and whenever I add an AWS redshift database, the connection keeps hanging and loading for a long time, and then fails PG::ConnectionBad: could not connect to server: Connection timed out Is…
axelmukwena
  • 779
  • 7
  • 24
1
vote
1 answer

Blazor WASM PDF Generation with iTextSharp

I want to generate a PDF Document in Blazor WASM. I found examples with iTexSharp, so I did a small example. Now I have two problems: I have trouble with the image path to add an image in the pdf: `Image img =…
1
vote
2 answers
0
votes
0 answers

Elsa workflow integration

I have blazer web application which is Front-end. On another side I have web API from where my all the database operations are performed, For all the operation, I have developed web api which can be call from blazer application, both are in…
0
votes
0 answers

Page froze on re-rendering the blazer application

I created a modal razor component in blazor server application.It uses server prerendered mode for app .When I refresh my page and open the razor pop-up ,page become frozen when the second rendering occurs. I changed server prerendered mode to…
0
votes
1 answer

Calling AWS services from Blazor WebAssembly

I have a Blazor WebAssembly app (client side, not hosted), which I want to connect to an AWS kinesis video stream for live streaming. I am having problems setting up the streaming connection to AWS, as it fails with the exception message The request…
0
votes
0 answers

CannotResolveService, Microsoft.Extensions.Caching.Memory.IMemoryCache doesn't work in blazer client, ok in Blazor server

I am using Memorycache in blazer server. But same not working in Blazor client, getting resolve issue. public PrcService(HttpClient httpClient, IMemoryCache memoryCache, IMapper mapper) { HttpClient = httpClient; Mapper = mapper; …
anand
  • 307
  • 3
  • 14
0
votes
0 answers

How to Implement autocomplete textbox in Grid Columns in blazer asp .NET core 7

pls help me to implement this functionality in asp .NET core blazer I want to Implement autocomplete textbox in Grid Control with blazer asp .NET core 7 so that I can dynamically add New Rows in Grid Control just like datagridview control(windows…
Pankaj
  • 25
  • 4
0
votes
2 answers

Navigate to new Teams page

New to Teams (and Blazer) dev and are stumped by a seemingly simple question using the Teams Toolkit. We have two Razer pages (ie. under the "Pages" folder in the project - as any asp.net core app has) and want to click from one page to the next…
xnetdude
  • 159
  • 1
  • 12
0
votes
0 answers

How do I move the output of the blazer component to another location?

Good afternoon, I recently switched from desktop development to asp.net core and so far everything is working out, but there is a question that I can't find the answer to anywhere. In general, the whole point is that there is a menu, and when the…
0
votes
0 answers

Configure Nuget Package Source using Visual Studio Code to add packages from my local Folder

Configure Nuget Package Source using Visual Studio Code to add packages from my local Folder. First I added an extension for Nuget Package Manager GUI In settings below is what I added. { "terminal.integrated.shell.windows": "C:\\Program…
0
votes
1 answer

Why do I have this Internal Server Error in Blazer (Rails Business Intelligence gem)

(I almost posted this as an issue for Blazer but managed to figure out the problem. I'm posting it here in case someone else has the same issue.) Bad Data Checks For any and all bad_data checks that should "fail" (i.e. trigger the alert state and…
iconoclast
  • 21,213
  • 15
  • 102
  • 138
0
votes
1 answer

Blazer - Escape Characters

I feel like I am missing something, but I could not find it in the documentation on GH. What are the escape characters for Blazer when searching in a string that contains a ' or ". Example: SELECT * FROM "search_filters" where "params" like…