Fork me on GitHub

VIE autocomplete widget

VIE autocomplete uses the VIE.find service method to make autocomplete suggestions.
The VIE.find method can query different backend or frontend data sources.
This demo goes to the default Apache Stanbol backend.

Demo



















selected:

Usage

var vie = new VIE();
vie.use(new vie.StanbolService({
    url : "http://dev.iks-project.eu:8081",
    proxyDisabled: true
}));

$('.search')
.vieAutocomplete({
    vie: vie,
    select: function(e, ui){
        console.log(ui);
    }
});
        
Documented source code