Ticketmaster


Why having a 3rd party to sell your tickets? We have an all in one solution build in Joomla to sell your tickets at your own site!
Easy installation & configuration! After a ticket has been sold it will be automaically created and sent to your customers!

RD-Autos Info


RD-Autos is a component for small Garages and Auto Sellers (Single Dealer)! We have also a version (PRO) that can handle adds from several dealers! You can have sellers on your site paying you for their add!

Multi Language


As we're writing our components in multi-language, we need translators. At the moment we do have some translations available. when you buy one of our components and translate it for us, you will het one year subscription for free!

affiliates

Login Form



Our website is powered by:

dioscouri_logo_transparent
No models are shown after chosing a make. PDF Print E-mail

Some people do have problems with AJAX part, when loading a make, the models do not appear.
A webhoster from Holland has solved this. We don't say it's always working, but it's a very nice work around.
Try to make the next changes:

Open the next file:  /administrator/components/com_rdautos/views/application/tmpl/form.php

Replace the following code:

function createModels(index)
{
    var obj = document.getElementById('modelid');
    eval(ajax[index].response);    // Executing the response from Ajax as Javascript code   
}

With this code:

function createModels(index)
{
  var obj = document.getElementById('modelid');
  var str = ajax[index].response;
  eval(str.substring(44)); // Executing the response from Ajax as Javascript code
}