Questions tagged [devextreme-angular]
151 questions
4
votes
0 answers
Angular exclude specific modules from being compiled with Ivy
I am using Angular 8 with ivy enabled. Everything works expect my devextreme components from devexpress. Currently this is not supported with Ivy.
Is there a way to compile everything but these modules with Ivy?

Franki1986
- 1,320
- 1
- 15
- 40
3
votes
2 answers
Remove validator after submitting
I created two textboxes one for the title and another for the name.
I am using validations if the textboxes are not filled, so the information is only submitted if both are filled.
My problem is that after submitting I try to clear the values of…

S3ck Stros
- 325
- 3
- 10
3
votes
5 answers
How to set focus to dx-text-box?
I use dev extreme UI framework in Angular application.
In documentation I have found how to set focus it says to use method focus()
But there is not focus in DxTextBoxComponent
How to set focus?
My code is:
@ViewChild("name", { static: false })…

POV
- 11,293
- 34
- 107
- 201
3
votes
1 answer
How to set the focus on an dxi-item
We are using DevExtreme-Components from DevExpress in our Angular 6 application. We have a form built with the help of dxi-item elements like this:

marco birchler
- 1,566
- 2
- 21
- 45
3
votes
1 answer
Error trying to set css on typescript to devextreme component
I am using devextreme grid in my angular 5 app. When specific item is triggered the following code executes:
public setRowColor(e){
e.rowElement.css("background-color","#d6dde7");
}
rowElement is one of the properties of row. I get the…

OjamaYellow
- 899
- 1
- 13
- 27
2
votes
1 answer
How to enable text selection of the tags in DevExtreme tag box
I am using devExtereme in my angular project. I want to be able to select the text of tags in my tagbox.
this is what I have:

Najim Sadat
- 63
- 7
2
votes
1 answer
How to add a hyperlink in coiumn of dx-data-grid in Angular?
Following code is being used:
2
votes
1 answer
Angular 7 ngx-translate change run time transaltion without refresh page
Notes: I tired all questions & answers related to this topic.
I want to Translate Typescript variable Value without refresh page on change language Dropdown .
I trying To change the language-wise data change. I success to change to HTML Bind: value…

Sumit patel
- 3,807
- 9
- 34
- 61
2
votes
2 answers
Uncheck always checkbox
I am using a checkbox and I hope it is never checked.
I used a function for this, but it is not working, if you check the checkbox a few times it is active (checked).
How can I keep it always unchecked?
DEMO
.TS
check: boolean = false;
change(e){
…

mark
- 105
- 1
- 9
2
votes
1 answer
How to use DxTemplate inside a custom component
I used DevExtreme library, How to use DxTemplate directive into a custom Component that wrap the DxLookupComponent ? If it is possible, how to proceed ?
I have a "wrapper" that add more functionnalities to DxComponent (Textbox, Textarea, Datebox and…

Allahyar
- 209
- 4
- 16
2
votes
1 answer
How to fix "showing the days of week incorrectly" in dx-calendar?
I have a trouble with a dx-calendar component from devExtreme.
I tried to set the first day of week to 1 to set the Monday as the first day of the week.
The dates of the components are working fine. But the problem is in the caption.
I'm using…

Ever Dev
- 1,882
- 2
- 14
- 34
2
votes
0 answers
Problem with ng test where app does have a dependency to devextreme-angular
I migrated an angular 7 project to angular 8. The application runs and npm test works but ng test does not work.
I created a simple angular 8 application with the same setup. Then I added the dependencies step by step to the package.json. After each…

Alexander Gerbig
- 46
- 4
2
votes
1 answer
How to bind second level data dynamically to dxi-column using *ngFor?
I am trying to bind second level data dynamically to dxi-column.How can i set the data using *ngFor directive?
Code from .ts File :
this.SummaryData = [
{
"columnName": "Total FCT",
"propertyType":…

Pooja Shinde
- 21
- 1
- 4
2
votes
1 answer
DataSource load method not working with ngrx store
How to use DataSource load method with ngrx store?
I have these problems:
1. When the page loads, the load method is called
2. Infinite loading
3. 2 requests are send to server instead of 1
If I use the service directly then there will be no…

itprodavets
- 69
- 3
- 9
2
votes
1 answer
DxDataGrid: Validating multiple edit fields at once
I'm using a DxDataGrid in an Angular Application. In this Application I want to enter 4 Dates. Now I need to apply some validation rules, which work fine for each field separatly.
The problem is that i need to validate all four fields if one of…

Michael Hanft
- 21
- 1
- 4