The problem here is that your constructor's arguments are not passed from TGroup's constructor to TView's constructor... And don't bother adding "super(x, y)" or whatever similar call, it won't work: constructors in JavaScripts "objects" are not so much "object-oriented".
Disclaimer: descriptions in the following paragraphs contains some statements that are not exactly true, in order to make the key concepts easier to understand. Please refer to comments bellow for clarifications and rectifications.
A better way to think about it is that an object in JavaScript is basically an hash map, containing both regular values (that are the object's fields) and functions (that are the methods). The class is also a map (well, it is a function, but JavaScript is somewhat lousy on these...), which usually contains a single method and maybe some values. Now one of these values stores on the "class" map is the special "prototype" map.
When a new "instance" map is created by using the new operator on the "class" object, three things happens: first, a new map is created; then, every key-values that existed in the class map prototype array is copied to the newly created map, along with the constructor method; finally the constructor method is invoked, with the arguments that were given.
So you should by know understand why, in your example, you need to create a new instance of TView to be passed to TGroup.prototype. It means that when creating new instances of TGroup, they will first copy everything that was in that first object you created there. Noticed that your TGroup has id 0? That's because the TGroup copied the id of the first TView that was ever created. No matter how many TGroup you create, they will all have id 0. The goes for your x and y arguments: its the one you gave when setting TGroup's prototype that will be kept, no matter what you give in input to TView.
Note that there are other issues related to this approach. Most importantly, you can't simply override a parent method, then call your super's original version.
Now, what are the solutions? Well there are a few, actually. One of them could be to use the most recent features for ECMA Script objects, but I won't go there. There are also some JavaScript libraries that offer a more "object-oriented" strategies.
The most simple strategy, though, might simply to follow a simple idiom, that is to add an init_class name here method inside each instance prototype, then have your constructor invoke that init_() method; then, each init_() method should explicitly invoke it's parent init_*() method, passing whatever arguments that need to be given.