Today, after 2 years, I released a new Markdown Editor components for JavaScript and Blazor. The full source code is available on GitHub.
Tag: blazor-server
Blazor integration with Identity Server
I share the code for a Blazor integration with Identity Server and BFF. All browsers don’t allow to share or save an authentication token
Custom JavaScript function in Blazor
In this new post custom JavaScript function in Blazor, I present how to create functions in C# in a Blazor page and integrate them with JavaScript
Labels and OnClickChart for ChartJs
In this new post, I introduce an update with labels and OnClickChart event, my ChartJs component for Blazor. Let me know what you think
Browser Detect component for Blazor
I’m releasing a new update for Browser Detect component for Blazor that detect correctly Windows 11 plus few improvements.
Autocomplete component for Blazor
The Autocomplete for Blazor component offers simple and flexible autocomplete type-ahead functionality for Blazor WebAssembly and Server
Timeline component for Blazor
I introduce my new #Timeline component for #Blazor #WebAssembly and Blazor #Server. The components is build with #NET6.
Stripe Connect Express with Blazor
In my previous post titled Create Stripe Webhooks Receiver I created a webhook and now I want to explore how to use Stripe Connect Express with Blazor. What is Stripe Connect? Stripe Connect allows you to develop marketplace and platform applications that can accept money and pay out to connected Stripe accounts. For example, a platform like Lyft has the ability to receive payments from a customer, retain a percentage as a platform fee, and then pay out the difference to the customer’s driver. Those drivers would all be considered…
Create form dynamically with Blazor
I show you how to create form dynamically with Blazor reading the definition of the form from an API or a Json file. It is working quite well
Drag and drop with Blazor
I show how to implement drag and drop with Blazor because drag and drop has become a popular interface solution in modern applications.
Guided Tours Blazor component
I introduce you my new Guided Tours #Blazor component to help your users to understand the UI of your application
Clippy Blazor component
I introduce you my new Clippy Blazor component for Blazor WebAssembly and Blazor Server. The component is built with .NET6.
Call API Management from Blazor
The title ”Call API Management from Blazor” is not explain fully what I’m going to explain in this post but it is only a title. So, consider the following scenario. Scenario On Azure API Management Service you have your APIs. For more protection, you want to add another level of security asking to the API Management to validate the user token for each request. The token is validated again your own Identity Server. Once the API Management is configured to use Identity Server for the validation, you want to call…
Blazor component for ChartJS
I finally complete the first implementation of my Blazor component for ChartJS that helps you to create beautiful graphs
Add Security Headers to Blazor WebAssembly
In this new post, I like to explain how to add security headers to Blazor WebAssembly to follow the recommendations from OWASP.
Browser detect component for Blazor
In this post, I talk about user-agent and I’m going to create a browser detect component for Blazor WebAssembly and Blazor Server with .NET6.
World Map component for Blazor
This World Map component for Blazor WebAssembly and Blazor Server creates an interactive map of the world or specific region and shows your data
SVG Icons and flags for Blazor
SVG Icons and flags for Blazor is a new library that contains tons of icons in SVG format and also all the world flags for each country
Add Code Snippet in Razor pages
In this new post, I show you how to add code snippet in Razor pages for Blazor WebAssembly and Blazor Server using highlight.js
Dynamically add JavaScript from Blazor components
In this new post, I show you the code to dynamically add JavaScript from a Blazor components coming from the component itself or another URL
Copy to Clipboard component for Blazor
I’ll create a Copy to Clipboard component for Blazor. I use the button to notify if the copy is successful. So, I return reset the button
Markdown Editor component for Blazor
I have created a new Markdown Editor component flexible and rich of functionalities for Blazor WebAssembly and Blazor Server with .NET6.
Code Snippet component for Blazor
Today I want to show you how to create a Code Snipper component for Blazor using highlight.js that is available for 191 different languages
Azure Pipelines Error NETSDK1045: The current .NET SDK does not support targeting .NET 6.0
Azure Pipelines Error NETSDK1045: The current .NET SDK does not support targeting .NET 6.0. How to fix this error in pipeline on Azure DevOps
DataTable component for Blazor
I have just released a new DataTable component for Blazor WebAssembly and Blazor Server. The NuGet package is available here. The source code will be available soon on GitHub. This component supports client/server side paging, filtering and sorting. DataTable in action Installation So, first install the package from NuGet or execute this command or Then, open your index.html or _Host.cshtml and add the CSS in the head of the page and then the script at the bottom of the page Then, add in your _Imports.razor file the following using: Also, in the…