Hello,
Please in questions try give as many info as you may.
We can't give common reply if you ask some thing special.
You us common so we reply common.
Please reread as custom manual.
so if you need at vehicle edit time at backend, replace some dropdown property - you need,
Install live header for FireBug extension for firefox
turn on that, and at backend press edit on some vehicle.
In varuiable list you will see "task=edit".
you open file for old version
{site}/administrator/components/com_vehiclemanager/admin.vehiclemanager.php
you open file for new version
{site}/administrator/components/com_vehiclemanager/vehiclemanager.php
there are at start you see switch by "task", under it we call function: editVehicle
if you go to that function, there are you will see how we prepare all list box,
so if you check as example List type, you will see next:
Code: |
$listing_type[] = mosHtml::makeOption(0, _VEHICLE_MANAGER_OPTION_SELECT);
$listing_type[] = mosHtml::makeOption(1, _VEHICLE_MANAGER_OPTION_FOR_RENT);
$listing_type[] = mosHtml::makeOption(2, _VEHICLE_MANAGER_OPTION_FOR_SALE);
$listing_type_list = mosHTML :: selectList($listing_type, 'listing_type', 'class="inputbox" size="1"', 'value', 'text', $vehicle->listing_type);
|
so you may replace that to some thing like:
Code: |
$listing_type_list = '<input class="text_area" type="text" name="listing_type" value="'.$row->listing_type.'" size="50" maxlength="250" />';
|
At end that function you see we call HTML_vehiclemanager:: editVehicle
that function from file
{site}/administrator/components/com_vehiclemanager/admin.vehiclemanager.html.php
Please reread custom manual
Thanks,
OrdaSoft team