GithubHelp home page GithubHelp logo

layoutmodel-renderer-angular's People

Contributors

chrisjamesc avatar matthiasbrantner avatar wcandillon avatar

Stargazers

 avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

layoutmodel-renderer-angular's Issues

Column width

(From Charlie)

I would recommend keeping the columns the same width, but expanding the cell downward which contains the name of the entity. It will be relatively common for entities to have long names. It looks better if the columns are the same width.

Cell selection

  • When clicking on a column header, all cells for the column should be selected.
  • When clicking on a row header, all cells for the row should be selected.
  • When click on the table corner, all cells should be selected.
  • dataclick header will return an array of selected cells.

layout templates

@Alexander-Kreutz
I would recommend grunt to wrap the needed template files into angular constants so that a user of this component doesn't have to update his build system to handle them.

If we keep it as is, we need to update the readme with the list of templates from this component that need to be handled by the build system.

angular-ui-router and angular-route

This component currently depends on angular-ui-router and angular-route. One of the two is unused (angular-route) I presume. Ideally none of them should be used.

@Alexander-Kreutz We probably need to discuss offline how we can address this. I didn't investigated it deeply yet.

Error in rendering when two top-level row headers are used.

URLable

Clicking on the get button should also update the URL of the application

General API for selected class

  scope.selectCell = function(data) {
                    if(data) {
                        data.selected = !data.selected;
                    }
                };

to

  scope.toggleCell = function(data,  property) {
                    if(data) {
                        data[property]= !data[property];
                    }
                };

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.