saw your response in github just now, thanks @fesor. that’s odd indeed. wondering if it might be worth refactoring to use something like ui-grid instead
Sergey Protko
@fesor
@kinabalu by looking on github activity, ui-grid is looks a way better than ng-table
p.s. I hate grids in UI)))
Andrew Lombardi
@kinabalu
hage?
Sergey Protko
@fesor
typo, sorry
Andrew Lombardi
@kinabalu
hate?
Sergey Protko
@fesor
yep, i prefer lists, multicolumn layouts and stuff. I use grid rarelly if I don’t have any time to think about better UI
i.e. gmail-like
Andrew Lombardi
@kinabalu
what i’m attempting to represent is basically excel-like in nature, at least that’s how it’s represented now. it’s a list of accounts with financial numbers throughout
not sure how else I would really represent that
Sergey Protko
@fesor
i don’t say you sholdnt use grids, there is a lot of cases when it just fits
Andrew Lombardi
@kinabalu
i actually would love to represent this data differently, but I have no clue how that might look really.
like your todo example, the way that was coded up, definitely like that a lot
Sergey Protko
@fesor
this is very large topic) I hate when developers just throw all data into big fat grid)
I will cleanup my todomvc a little bit on the next week
to make use some of angualr 1.5 features
Andrew Lombardi
@kinabalu
oh fun
i don’t like big fat grids either, but i lack the design / ux chops to really do anythign else sometimes
Sergey Protko
@fesor
@kinabalu there is always traid-off
it’s ok)
Andrew Lombardi
@kinabalu
i probably need to just hire a talented UX designer to wield some more effective design to my crazy ideas
Sergey Protko
@fesor
@kinabalu for many cases it just additional overhead. For example for crud-like control panels.
Andrew Lombardi
@kinabalu
@fesor it’s nice though, because you can tell when someone put the extra effort in to a design and the UX behind it
Sergey Protko
@fesor
Angular 1.5 landed in NG6-starter
_
Andrew Lombardi
@kinabalu
nice
@fesor i probably need to put together a test or example of this problem I’m having
but if I have a component which is making a Restangular call, and a second component kinda depends on the value returned from that call… is this possible?
Sergey Protko
@fesor
@kinabalu promises?
I use uiRouter’s resolvers and try to never get data from components
Andrew Lombardi
@kinabalu
@fesor oh, shit… yeah … forgot about that
@fesor refactoring is fun and illuminating so very often
@fesor do you have any examples of doing this? I think I may just google around to see if I find something, or see if it’s in the todo app
Sergey Protko
@fesor
todoapp is single screen app… I don’t see how I can add something like that.
I tried to find some more complex applications and didn’t found anything useful
Andrew Lombardi
@kinabalu
hrmm bummer, ok
Sergey Protko
@fesor
I had a crazy idea of writting UI for jenkins CI in angular))
Andrew Lombardi
@kinabalu
that’s … ambitious
but warranted, jenkins CI is quite shitty
Sergey Protko
@fesor
no, managing part like jenkins configuration would stay as it is. Only list of jobs, simplify jobs configurations and so on.
but I just had no time for such projects (
Andrew Lombardi
@kinabalu
yeah, i know the feeling
@fesor when using resolve, will the object be added to this?
Sergey Protko
@fesor
@kinabalu … are you talking about binding values to component controller?
Andrew Lombardi
@kinabalu
@fesor yeah, i’d like to use values that are promise based inside the controller and move ‘em out to resolve like had mentioned