
I am having trouble wrapping my head around this so if someone could help me with a start to the code, I would be very grateful.
I have a custom object called Inventory__c. It has Year__c, Make__c, and Model__c custom fields and I want to display the Year, Make and Model for each record within the Inventory object in a grid layout similar to this: https://webtemplatemasters.com/screenshots/cardealer/wordpress-car-theme-search.jpg.I'm going to theme it accordingly and do all the styles, but I can't seem to figure out how to get the records in that sort of grid layout. I know I need a custom controller, but not sure how to write it or invoke it from the VF page. Any help would be great. thanks a lot4 answers
Josh,
Bootstrap will just help you with Grid Layout or any other layout that you want to present. If you doing this project in Standard or Custom Object, just use "StandardController". That will give you all the standard sObject attributes that you need. If you need need more customized logic, you can always build a custom controller. Hope this helps.Thanks!