Konrad
Member since Mar 5, 2009
- Profile: /members/3050-konrad.htm
- URL: https://github.com/kwk
- Comments: 2
Recent Blog Comments By Konrad
-
Using ngController With ngRepeat In AngularJS
Posted on Oct 23, 2014 at 8:44 AM
Great post and really useful for my current problem: I wanted to load additional information for each item in my collection. By attaching a controller to each item, this solves the problem very elegantly. The asynchronous attempt didn't destroy the responsiveness of my side. Thanks a lot!... read more »
-
MySQL Does Not Support IF / ELSE Statements In General SQL Work Flow
Posted on Mar 5, 2009 at 1:59 PM
create table person( person_id int, person_name varchar(100) ); create table place( place_id int, place_name varchar(100) ); create table eav( eav_id int, entity varchar(100), attribute varchar(100), int_value int, text_value varchar(100), display_value varchar(100) ); insert into perso... read more »