From f5217c4628f575ff1dde368548ad254f04040c25 Mon Sep 17 00:00:00 2001 From: BorkoDragojlovic Date: Fri, 13 Jul 2018 11:01:42 +0200 Subject: [PATCH] Add custom property to SelectItem In order to use custom objects after selecting or changing options added property to SelectItem --- src/select/select-item.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/select/select-item.ts b/src/select/select-item.ts index ff827979..c518b3b9 100644 --- a/src/select/select-item.ts +++ b/src/select/select-item.ts @@ -3,6 +3,7 @@ export class SelectItem { public text:string; public children:Array; public parent:SelectItem; + public cutomObj:any; public constructor(source:any) { if (typeof source === 'string') {