I've been trying to figure out the best way to create a custom layout in ExtJs 4.1. What I want is a variation of an absolute layout, being able to specify X,Y coordinates for each of the contained items. The thing is I also want to set size and coordinates depending on a parameter of the item (The contained items are all widgets that extend a FieldSet). So basically it will be an absolute layout which takes in parameter to specify its size and position.
Is there any guide I could read that will explain how to extend layouts in ExtJs? I know it's probably just a simple 'extends' and to override certain methods, but I haven't figured out how to do this exactly.