Questions tagged [elasticui]

ElasticUI is a set of AngularJS directives for Elasticsearch.

Overview

Copied from EslaticUI homepage
ElasticUI is a set of AngularJS directives enabling developers to rapidly build a frontend on top of Elasticsearch. It builds upon the elastic.js implementation of the Elasticsearch DSL.

The concept of ElasticUI is to have one "view" of your index to which you can add aggregations, sorting, paging, filters by adding directives in your html.

Related tags

Links

Project homepage
GitHub project

18 questions
0
votes
1 answer

accessing rootScope in directive

I've tried a million ways to access a rootScope variable from within this elasticui based directive with zero luck. Here is the directive, bearing in mind $rootScope is indeed being passed into its parent controller. var elasticui; (function…
0
votes
1 answer

Elasticsearch array of strings being tokenized even with no_analyzed in mapping

This has been driving me nuts. I've got a few arrays in my data, here is a slimmed down version: { "fullName": "Jane Doe", "comments": [], "tags": [ "blah blah tag 1", "blah blah tag 1" ], "contactInformation": { "attachments": [ …
0
votes
1 answer

Implementing infinite scroll with angular and elasticsearch via elastic ui

Being both an AngularJS and Elasticsearch newbie, I’m currently working on a project where I should implement infinite scrolling on a frontend managed by ElasticUI (AngularJS Directives for Elasticsearch). ElasticUI provides a pagination object…
1
2