projects/ngui-common/src/lib/ngui-list/src/ngui-autocomplete.component.ts
selector | ngui-autocomplete |
styles |
:host {position: absolute; background-color: #fff; max-height: 300px; overflow: auto}
.ngui-autocomplete { border: 1px solid #ccc; padding: 4px }
|
template |
Properties |
Methods |
Inputs |
Outputs |
Accessors |
blankOption | |
Type : string
|
|
Default value : 'Select One'
|
|
for | |
Type : string
|
|
minInputChars | |
Type : number
|
|
Default value : 1
|
|
noMatchItem | |
Type : string
|
|
Default value : 'No Match Found'
|
|
bottomInview | |
Type : EventEmitter<any>
|
|
Inherited from
NguiVirtualListComponent
|
|
Defined in
NguiVirtualListComponent:86
|
|
Event fired when bottom of the virtual list is in view
The handler of this event must call Example |
escaped | |
Type : EventEmitter<any>
|
|
Inherited from
NguiVirtualListComponent
|
|
Defined in
NguiVirtualListComponent:67
|
|
Fired when |
selected | |
Type : EventEmitter<any>
|
|
Inherited from
NguiVirtualListComponent
|
|
Defined in
NguiVirtualListComponent:65
|
|
Fired when child |
addAutocompleteList |
addAutocompleteList()
|
Complete the first page of autocomplete
Returns :
void
|
addList | ||||||
addList(items: Array
|
||||||
Inherited from
NguiVirtualListComponent
|
||||||
Defined in
NguiVirtualListComponent:176
|
||||||
Parameters :
Returns :
void
|
addMorePages |
addMorePages()
|
Complete after the first page of autocomplete when it scrolls to the bottom
Returns :
void
|
clearList |
clearList()
|
Returns :
void
|
ngOnInit |
ngOnInit()
|
Returns :
void
|
onEscaped |
onEscaped()
|
Returns :
void
|
onInputElBlurred |
onInputElBlurred()
|
Returns :
void
|
onInputElFocused | ||||
onInputElFocused(event)
|
||||
Parameters :
Returns :
void
|
onInputElKeyup | ||||||
onInputElKeyup(event: KeyboardEvent)
|
||||||
Parameters :
Returns :
void
|
onSelected | ||||
onSelected(value)
|
||||
Parameters :
Returns :
void
|
positionThisUnderInputEl |
positionThisUnderInputEl()
|
Returns :
void
|
setFocused | |||||||||
setFocused(elType: "input" | "listItem", val: boolean)
|
|||||||||
Parameters :
Returns :
void
|
addAnInviewPageToPages |
addAnInviewPageToPages()
|
Inherited from
NguiVirtualListComponent
|
Defined in
NguiVirtualListComponent:114
|
When the bottom is inview port, this function is called It will insert a dynamicall created NguiInviewPageComponent with the given template. It will also fires (bottomInview) event, so that user can fill up items for the page.
Returns :
void
|
ngAfterViewInit |
ngAfterViewInit()
|
Inherited from
NguiVirtualListComponent
|
Defined in
NguiVirtualListComponent:103
|
Check if necessary input and output is provided
Returns :
void
|
_acTimer |
_escapedFromList |
Type : boolean
|
_focused |
Type : any
|
Default value : {input: false, listItem: false}
|
Inherited from
NguiVirtualListComponent
|
Defined in
NguiVirtualListComponent:40
|
_focusTimer |
_lastSelected |
Type : any
|
_orgInputValue |
Type : string
|
_prevInputValue |
Type : string
|
_selectedFromList |
Type : boolean
|
inputEl |
Type : HTMLInputElement
|
template |
Type : TemplateRef<any>
|
Decorators :
@ContentChild(TemplateRef)
|
Inherited from
NguiVirtualListComponent
|
Defined in
NguiVirtualListComponent:37
|
Template of NguiInviewPage. Allow users to define their own template |
Public cdr |
Type : ChangeDetectorRef
|
Inherited from
NguiVirtualListComponent
|
Defined in
NguiVirtualListComponent:99
|
Public dynamicComponentService |
Type : DynamicComponentService
|
Inherited from
NguiVirtualListComponent
|
Defined in
NguiVirtualListComponent:98
|
Public element |
Type : ElementRef
|
Inherited from
NguiVirtualListComponent
|
Defined in
NguiVirtualListComponent:97
|
inviewPage |
Type : ComponentRef<NguiInviewPageComponent>
|
Inherited from
NguiVirtualListComponent
|
Defined in
NguiVirtualListComponent:89
|
The last NguiInviewPageComponent being inserted |
inviewPages |
Type : Array<ComponentRef<NguiInviewPageComponent>>
|
Default value : []
|
Inherited from
NguiVirtualListComponent
|
Defined in
NguiVirtualListComponent:93
|
isListLoading |
Type : boolean
|
Inherited from
NguiVirtualListComponent
|
Defined in
NguiVirtualListComponent:92
|
Indicates if a page is still loading |
pagesRef |
Type : ViewContainerRef
|
Decorators :
@ViewChild('pages', {read: ViewContainerRef})
|
Inherited from
NguiVirtualListComponent
|
Defined in
NguiVirtualListComponent:61
|
the container NguiInviewPage will be inserted |
Public renderer |
Type : Renderer2
|
Inherited from
NguiVirtualListComponent
|
Defined in
NguiVirtualListComponent:96
|
isReady |
getisReady()
|
returns autocomplete display condition autocompolete list is only visible
Returns :
boolean
|