Hey, I want to have a Build-To-Order module for my website. Like, I want people to select different parts for a custom computer. Is there a Drupal Module like this, or does anyone know of one? Thank you.

Here is an example of exactly what I want.
http://www.alienware.com/customize/area-51-750i-desktop.aspx?SysCode=PC-...

Comments

shamuntoha’s picture

I dont know module that exist, but you can realy do that by javascript overlap. A prototype example.


<script language="javascript">
 var default_price = 1000.00;

 function priceAdd(model, price){ 
   var page_object = document.getElementById(model);

   switch(model) {
          case 'newRam':
              page_object.innerHTML =    default_price +    price;          
          case 'newOs':
              page_object.innerHTML =    default_price +    price;          
          case 'newBoard':
              page_object.innerHTML =    default_price +    price;          
    }
 }
</script>

<div id="newRam" onclick="priceAdd('newRam,'60')">
Total price: 60.00
</div>

<div id="newOs" onclick="priceAdd('newOs','100')"> 
Total price: 100.00
</div>

<div id="newBoard" onclick="priceAdd('newBoard','150')">
Total price: 150.00
</div>


<div id="total">
Total price: 1,000.00
</div>

__________________________________________________________________________

php | c/c++ | java | vb.net | css | javascript | xml | xslt | xhtml | sql | cisco

bwv’s picture

You can replicate this behavior do this with Ubercart and its built in attributes functionality.
----------------------------------------------------------------------
http://classicvinyl.biz
http://music.bwv810.com
http://association.drupal.org/user/1207

Ruroni’s picture

Could you instruct me on how to do this with Ubercart? I have Ubercart installed, but I'm not exactly sure how do do what I mentioned. Thanks.

Never Mind, I figured it out!