Sinan Öztürk

Results 23 comments of Sinan Öztürk

update your items array like this ```ts this.items = [ { label: 'Homee', icon: 'pi pi-fw pi-home', tooltipOptions: { tooltipLabel:'Test123' }}, { label: 'Calendar', icon: 'pi pi-fw pi-calendar', tooltipOptions: {...

> The draggable option on DynamicDialog's dialog is only applicable when using the built-in primeng dialog header. However, if we want to have a custom dialog header, there is no...

I didn't understand why you must set `showHeader` to false. You can provide your custom header template, the default one wont be shown.

Yes, you can use as below. ```ts { ..., templates: { header: HeaderTemplate, footer: FooterTemplate } } ```

Hi, could you use `tooltipOptions` object and set `tooltipLabel`? ### Example Usage ```ts this.items = [ { label: 'Homee', icon: 'pi pi-fw pi-home', tooltipOptions: { tooltipLabel:'Test123' }}, { label: 'Calendar',...

Hi, https://primeng.org/table#removable-sort it works. Could you share stackblitz link?

#15598 will fix the tooltip problem on dropdown buttons. For main button #15601

This line is responsible for this bug. It adding a padding no matter scroll bar exist or not. https://github.com/primefaces/primeng/blob/b55baa83ea597d9fd5ab0e7198ce6f98810116ec/src/app/components/treetable/treetable.ts#L2423 I have tested it in my local, i deleted this line...

Hi @krabouilleur, please import `SharedModule` to use `PrimeTemplate` Directive. ```ts import { ToolbarModule } from 'primeng/toolbar'; import { SharedModule } from 'primeng/api'; @Component({ selector: 'app-menu', standalone: true, imports: [ToolbarModule, SharedModule],...

You can also provide like this: ```ts tooltipOptions: { tooltipLabel: 'SaulFein' } ```