Questions tagged [devexpress-blazor]

16 questions
0
votes
1 answer

Generating a report with .net core web api and displaying it to the user with Blazor webassembly

I just started using Devexpress and I have a little problem. I have two projects. I have a .NetCore Web Api project. I have a Blazor webassembly client project. My codes in the .Net core Api project are as follows. Nuget:…
enrfth
  • 25
  • 1
  • 9
0
votes
1 answer

Task.WaitAll() is never completing

I'm guessing I've got this a little wrong. I am initializing two DxRichText controls and I think I have something wrong in how I have this set up. But I don't see what. I am trying to have this loading occur in parallel with other initialization. I…
David Thielen
  • 28,723
  • 34
  • 119
  • 193
0
votes
1 answer

Why do I have to explicitly call Show() after changing a boolean in Navigation.RegisterLocationChangingHandler?

This is for a Blazor server app using the DevExpress DxPopup component. But I don't think the specific component is at issue here. I am checking to see if an EditForm has dirty values, and if so, then asking the user are they sure they want to…
David Thielen
  • 28,723
  • 34
  • 119
  • 193
0
votes
1 answer

How can I create an IEnumerable from Entity Framework async?

I have an extension method that creates an expression to return a set of rows in the database: public static class SkillsExtensions { public static IEnumerable AllSkills(this LouisHoweDbContext context) { return…
David Thielen
  • 28,723
  • 34
  • 119
  • 193
0
votes
0 answers

How do I set a focus on a new input field inside a datagrid row?

I'm working with DevExpress' DataGrids and I'm struggling on trying to focus a new input inside a dinamically generated row. Pratically I have a grid that has, initially, a single row composed by an html input field and other columns. I'm using…
0
votes
0 answers

Using blazor components into asp.net webForms pages

We have a ASP.Net site used webForms. MasterPage, menus, aspx pages etc. is there a way to integrate blazor components directly into aspx pages?
0
votes
0 answers

Blazor no grid layout found exception

I want to make a simple grid layout with blazor. 2 columns 3 rows. Here I have given the necessary values for the layout, column and row as parameters. when I test the project, it cannot find the grid structure. All items are listed below. When I…
nikki
  • 25
  • 5
0
votes
1 answer

Blazor ElectronNET application Fails to load localhost ERR_CONNETION_REFUSED

I have an application built for windows and osx using ElectronNET and Blazor. Everything works fine on my windows machines but when I attempt to run the software on osx I got a blank white screen and the debug terminal says "(node:14402) electron:…
0
votes
1 answer

How can I change the DxGrid New/Edit/Delete button styles?

Using .net core with the DevExpress DxGrid component, I'm looking for the best way to change the default hyperlink style buttons. My goal is to show them as bootstrap buttons, so mostly just a css class change is needed. The best way would be using…
MeanGreen
  • 3,098
  • 5
  • 37
  • 63
0
votes
1 answer

Use InvokeAsync() to switch execution to the Dispatcher when triggering rendering or component state

I have a child component in Blazor Server, which displays a table. On click of a row in that table, I have the following handler method and event callback to send the data to the parent component (which wraps the child component in a popup that…
0
votes
0 answers

How encrypt and decrypt integer value in linq devexpress blazor

public string GetQCAsync(string UserLimit) { var DSet1 = _context.test.Where(x => x.Uid == 1).FirstOrDefault(); var provider = new System.Security.Cryptography.RSACryptoServiceProvider(); …
Rainy
  • 11
0
votes
1 answer

Convert Devexpress project from v17.2 to 21.2 (There is not DevExpress.ExpressApp.Images.dll anymore in v21.2 )

I'm working on a project (Winforms app) that I want to convert the current project, v17.2, to 21.2. There isDevExpress.ExpressApp.Images.v17.2.dll in v17.2 but there is not in v21.2. How can handle this problem? which dll can I replace instead?
x19
  • 8,277
  • 15
  • 68
  • 126
0
votes
1 answer

Blazor WebAssembly Dev Express Data Grid - Load All Rows without Pagination

I started experimenting with devexpress Blazor Grid component for a project that we are migrating from Webforms to Blazor WebAssembly. I see the pagination component in the grid works really fine. But I have this requirement to load all records…
0
votes
1 answer

Custom Blazor Component not reflecting binding properly

I have a big DxFormLayout with many DxFormLayoutGroups and each DxFormLayoutGroup has many DxFormlauoutItems. I'm wondering if it is possible to sompress the razor code by componentizing a few DxFormlauoutItems. Here is my code: Page:
DoomerDGR8
  • 4,840
  • 6
  • 43
  • 91
0
votes
1 answer

Align element on the right in

I'm using the DevExpress Blazor Server-Side Template and trying to add some elements to the tag on the right side. This template is built with Bootstrap 4.
1
2