Generate streamlined
ruby script/generate streamlined leb_legal_entity leb_legal_entity_type leb_legal_entity_address leb_legal_entity_address_type parent parent_address --css=yahoo
Exclude Not Needed columns
#in app/stramlined/<controller_to_edit>
user_columns :exclude => [:altKeyword,:adp]
Set up relationships
#in app/stramlined/<controller_to_edit>
class LebLegalEntityAddressUI < Streamlined::UI
relationship :leb_legal_entity_address_types,:view => :select
end
Set Address to legal Entity
class LebLegalEntityAddressUI < Streamlined::UI
relationship :leb_legal_entity, :summary => :name,:view => :select
end
Set parents UI
class ParentUI < Streamlined::UI
user_columns :exclude => [:MCN,:paragonId,:loginId]
relationship :parent_addresses,:view => :window
end