Alexandros Pappas
Alexandros Pappas
I was implementing a wrapper component to abstract the `Ng2SmartTableComponent` a little and simplify my use case (along with some other customizations). I wanted to implement a `@Input() readonly` feature...
> Just add selectedRowIndex: -1 to your table settings like this `tableSettings = { hideSubHeader: true, mode: 'external', selectedRowIndex: -1 };` Not working for me I tried `this.table.grid.dataSet.deselectAll();` (`table` is...
Can someone create a standalone TS declaration of this function?
Any idea why `.where("authorID", "==", userID)` does not work? If i comment it out, fetching from the entities collection works.
I just found out that it works when i remove the `.orderBy('createdAt', 'desc')`. I can't seem to make both work at the same time.
Reply [to](https://github.com/brillout/vite-plugin-ssr/issues/278#issuecomment-1597251907): I was excited to use this component as it makes so much sense and straight forward. I wrapped my [HJ29/vue3-tabs](https://github.com/HJ29/vue3-tabs) as so: ``` Make subject form List courses...
Solved this by extending `ServerDataSource` to override how `getElements()` work. ```typescript private requestCache: { [url: string]: Promise } = {}; /** * 1. Check if URL is already in the...
Probably just have to wrap everything in `ngAfterViewInit` [here](https://github.com/bfwg/ngx-drag-scroll/blob/d364710fcc06b17bd4eb0a34e4637362ab084d59/projects/ngx-drag-scroll/src/lib/ngx-drag-scroll.component.ts#L282) with [`afterNextRender`](https://v17.angular.io/api/core/afterNextRender).
Installed `"xng-breadcrumb": "^11.0.0",` into a fresh Angular 18 project. Everything seems working except that the xng-breadcrumb class names can't be selected on CSS even with `::ng-deep` and with or increased...