OrdaSoft forum
Welcome, Guest
Please Login or Register.    Lost Password?
I want to remove your Dropdown options(not all)! (0 viewing) 

VehicleManager component support

Go to bottom Favoured: 0

I want to remove your Dropdown options(not all)!

Merugu (User)
Junior Boarder
Posts: 34
graphgraph
User Offline Click here to see the profile of this user
I want to remove your Dropdown options(not all)! 10 Years, 7 Months ago
Karma: 0  
I want to remove your Dropdown options(not all) and make them as "textArea" and "Input box"?
and Could not find "VechileID" @ language file

Please don't dare to copy paste your great below advise as its so gibberish, Sorry for losing patience but you guys are so funny that you expect me to understand your manual? if I can understand your manual then i can create one by myself.

I am not expecting a Drag and Drop feature but I just need a proper explanation, am I asking lot? why dont you just show me a example? how hard is it as you are creator

How about a Skype Text chat(not voice) or Google Talk?

btw where are you guys located?

it have two parts admin and frontend.

in admin you will see two files:
{yours
site}/administrator/components/com_vehiclemanager/admin.vehiclemanager.html.php
site}/administrator/components/com_vehiclemanager/admin.vehiclemanager.php


admin.vehiclemanager.html.php - responsible for show data
admin.vehiclemanager.php - responsible for prepare data

exactly for frontend
{yours site}/components/com_vehiclemanager/vehiclemanager.html.php
{yours site}/components/com_vehiclemanager/vehiclemanager.php

vehiclemanager.html.php - responsible for show data
vehiclemanager.php - responsible for prepare data

al layouts you may see and edit at folder:
{your site}/components/com_vehiclemanager/views/

All connection between what user press in Browser - do wit help TASK variable.

also if you wish all Joomla class methods work. E.g when you create new
Vehicle with help
mosVehiclemanager class. you need also edit file
site}/components/com_vehiclemanager/vehiclemanager.class.php

and add to class definition all new fields what you added to database

for work with review, responsible class from file
vehiclemanager.class.review.php
for work with buy request, responsible class from file
vehiclemanager.class.buying_request.php
for work with rent, responsible class from file
vehiclemanager.class.rent.php
for work with rent request, responsible class from file
vehiclemanager.class.rent_request.php


Most simply way now add new field to vehicle definition - that rename any fields
what you no need with help language manager tab in admin area .

also with help language file you may change options in all vehicle combobox
(options) fields
Logged Logged
The administrator has disabled public write access.
admin (Admin)
Admin
Posts: 8243
graph
User Offline Click here to see the profile of this user
Re:I want to remove your Dropdown options(not all)! 10 Years, 7 Months ago
Karma: 101  
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
Logged Logged
The administrator has disabled public write access.
Merugu (User)
Junior Boarder
Posts: 34
graphgraph
User Offline Click here to see the profile of this user
Re:I want to remove your Dropdown options(not all)! 10 Years, 7 Months ago
Karma: 0  
Jesus christ! Cant understand a thing...
The reply won't even fit on my browser... So much GAP?

What wrong in using IM services?

Screenshots?
Logged Logged
Last Edit: 2013/09/17 08:46 By Merugu.
The administrator has disabled public write access.
Merugu (User)
Junior Boarder
Posts: 34
graphgraph
User Offline Click here to see the profile of this user
Re:I want to remove your Dropdown options(not all)! 10 Years, 7 Months ago
Karma: 0  
How to use Live header? Installed it on Firebug but have no idea how to inspect it...
Logged Logged
The administrator has disabled public write access.
Merugu (User)
Junior Boarder
Posts: 34
graphgraph
User Offline Click here to see the profile of this user
Re:I want to remove your Dropdown options(not all)! 10 Years, 7 Months ago
Karma: 0  
Cant believe you went offline! I was waiting for you since 24hours
Logged Logged
The administrator has disabled public write access.
admin (Admin)
Admin
Posts: 8243
graph
User Offline Click here to see the profile of this user
Re:I want to remove your Dropdown options(not all)! 10 Years, 7 Months ago
Karma: 101  
Hello,

I am sorry, our component permit for you build sites,
but if you wish rebuild some thing with help Source code - you need know HTML/CSS/PHP.

We can't give for you how change some thing exactly with help code edit!!!
Please study how HTML/CSS/PHP work first !
Other you may describe to us: what exactly you need and order that from us !

Again: we not give full descriptions how edit code, we give only advice,
for give full descriptions we need self create that all, check and debug - and that ask much time. Who will paid for that?
Also for use that you need know PHP !!!!

I show for you how replace field, you may replace exactly all other, but all look like you not understand !!!

Please use component exactly as we created it - if you wish take more - you need know HTML/CSS/PHP
and how Jpoomla frame work work!

Or you may order that from us

Thanks,
OrdaSoft team
Logged Logged
The administrator has disabled public write access.
Go to top
»