2,750 questions
0
votes
1
answer
55
views
How to set custom colors for items in angular-calendar-timeline?
I’m using angular-calendar-timeline and have defined timeline items like this:
import { ITimelineItem } from 'angular-calendar-timeline';
// items declaration
items: ITimelineItem[] = [
{
id: '1'...
0
votes
1
answer
51
views
Angular UI 2 Kendos NumericTextBox with different locale
In my project I need to create two kendo-numerictextbox and each one needs to show different locale.
Example:
Textbox1: 1.234,56 (Belgium comma decimal separator)
Textbox2: 1,234.56 (United State dot ...
0
votes
1
answer
36
views
Angular & ng-bootstrap - UI Questions
I am a UI design engineer and my team has decided to build out our site using Angular. Bootstrap is the preferred UI framework and this is our first endeavor into Angular. I am seeing that ng-...
0
votes
1
answer
81
views
Cdk DragDrop for Polygon Boundry
I'm trying to build a custom boundry shape for the cdk Drag Drop directive
I tried to set the boundry as a polygon, I've put a sample code in the stackblitz for quick understanding on the problem, ie ...
1
vote
3
answers
793
views
Is possible to change size of button from component
I have component where in .html file is only "<" button "></" button ">"
I would like to use it in other component but I have to resize it without change of ...
1
vote
0
answers
1k
views
How to customize a new google signin button in angular?
Using of updated plugin for angular 13, 14 @abacritt/angularx-social-login
how do i customized this google sign in button to local css.
'asl-google-signin-button type='standard' size='large' shape='...
2
votes
2
answers
263
views
show 1 data instead of all ngFor - Angular 11
Im trying to display total counts of enrollment with item.male_students & item.female_students
UPDATE
remove the ngFor now it works as expected.
here's my component.html
<thead class="...
0
votes
1
answer
2k
views
I have created an angular directive for styling a table. But table loses the styles defined in the directive when pagination is clicked
I have created the following custom directive in Angular:
@Directive({
selector: '[tableTheme]'
})
export class TableThemeDirective implements OnInit, AfterViewInit {
tableElement: ...
0
votes
1
answer
3k
views
Display selected value from drop down list in Angular 13
Here's my code:
<tbody *ngFor="let user of users">
<td>{{user.name}}:</td>
<td>
<ng-select [items]="userList" bindValue="id" ...
1
vote
2
answers
4k
views
preserveContent now added to mat-tabs?
Does anyone have a working example of this? I was originally implementing a solution similar to this answer here, but then saw that this feature was finally merged!
Does anyone have a working example ...
0
votes
0
answers
60
views
Strange behavior of Angular UI grid scrolling with Chromium version 96
I have upgraded chromium version (Edge Chromium/Chrome) to 96 from 87. I used Angular UI grid to display the data. When I try to scroll, it keeps comes to top and not letting me scroll down. This ...
1
vote
1
answer
667
views
Fixed igx column
Hi I have a igx grid in which one of the columns is filled out with delete-buttons.
I want to make this column fixed as shown here:
Can I exclude the column with the delete-buttons from pinning/...
0
votes
1
answer
1k
views
Igx grid cell with button inside
I am working on an Angular project with Ignite UI. I have a igx grid and "edit"-buttons in each cell from the igx grid.
When I edit one of these cells and press the Enter key then the ...
0
votes
1
answer
501
views
Close modal dialog programmatically from $http promise
I'm using Bootstrap UI in conjunction with AngularJS to show a modal dialog, while a $http request is processing. Think of it as a wait dialog. I'd like to keep the code as a simple four-liner that I ...
1
vote
1
answer
3k
views
Add holiday or custom data into angular material date picker
I have date wise amount which based on user search in flight sectors and save into cache so I can get from cache amount date wise when user open date picker I want to show price in date wise in open ...