Page 1 of 1

Menu Basic Parameters not showing up

Posted: Thu Sep 20, 2007 8:44 pm
by bohn002
I am trying to add some parameters to my component to be edited in the menu's basic parameters. My code is below. I am using 1.5 RC2 with legacy mode on. There is nothing appearing in the Parameters-Basic option. Any particular reason why?

Code: Select all

<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE install SYSTEM "http://dev.joomla.org/xml/1.5/component-install.dtd">
<install type="component" version="1.5.0">
	<name>displaymembers</name>
	<version>1.0</version>
	<description></description>
	<files>
		<filename>index.html</filename>
		<filename>displaymembers.php</filename>
		<filename>tabcontent.css</filename>
		<filename>tabcontent.js</filename>
		<filename>nophoto.jpg</filename>
		<filename>shade.gif</filename>
		<filename>shadeactive.gif</filename>
	</files>
	<params>
		<param name="displayType" type="list" default="" label="Display Type" description="Pick the Display Type">
			<option value="1">Directory</option>
			<option value="2">District</option>
			<option value="3">Zip Code</option>
			<option value="4">Name</option>
		</param>
	</params>
	<administration>
		<menu>Display Members</menu>
		<files folder="admin">
		<filename>admin.displaymembers.php</filename>
     		</files>
	</administration>
</install>

Re: Menu Basic Parameters not showing up

Posted: Fri Sep 21, 2007 1:15 am
by tjay
I helped someone get through this on a module
he basically fixed it by looking at an existing modules install file.
That might work here

Re: Menu Basic Parameters not showing up

Posted: Mon Jan 14, 2008 3:23 am
by FlapJack
Did you ever solve this problem? I'm trying to do the same in a component for RC4 and I haven't found anything that helps...