Skip to content

Features List: Advanced Evolutility features

Eitan Blumin edited this page Feb 21, 2019 · 5 revisions

These features are either implemented only in the non-react variants of evolutility, or they're only partly developed. Either way, these are features that should also be implemented in our project.

NOTE: The following is copied from the Evolutility documentation. Actual project design may be slightly different.

Views for One model

JSON

JSON representation of the data.

JSON

var vw = new Evol.ViewOne.JSON({
            el: myElement,
            uiModel: myUIModel,
            model: myModel
        });

Views for Actions

Backbone Views for actions on a collection or a model.

Filter

View used to build a structured query to filter a collection.

Filter

var vw = new Evol.ViewAction.Filter({
            el: myElement,
            uiModel: myUIModel
        });

Code: /js/view-action/action-filter.js

Export

View to define export options and preview the collection export in different data formats (CSV, TAB, HTML, XML, SQL and JSON).

Export

var vw = new Evol.ViewAction.Export({
            el: myElement,
            uiModel: myUIModel,
            collection: myCollection
        });

Code: /js/view-action/action-export.js

Import

View to import data from a CSV or JSON file. It is a work in progress.

var vw = new Evol.ViewAction.Import({
            el: myElement,
            uiModel: myUIModel,
            collection: myCollection
        });

Code: /js/view-action/action-import.js

Collaboration and user comments (exclusive to Evolutility ASP.NET variant)

Any application component can be set to allow users to post comments on any record.

This is done setting Evolutility web control property UserComments to one of the following values:

  • None
  • Read only
  • Logged Users
  • Anonymous

More info on user comments

EvoDico Wizards

EvoDico provides a set of 4 wizards to build applications more easily.

  • Build Apps - to build new applications from scratch.
  • Install Apps - to install packaged applications
  • Import XML - to import existing XML Evolutility metadata
  • Map DB - to map existing database tables

More Resources