J1.5

Difference between revisions of "How to create a custom button"

From Joomla! Documentation

Line 2: Line 2:
  
 
Put this script on your component or module code to make a custom button:
 
Put this script on your component or module code to make a custom button:
 
+
'''
 
'''JToolBarHelper::custom("task",
 
'''JToolBarHelper::custom("task",
 
"icon",
 
"icon",
Line 8: Line 8:
 
"alt",
 
"alt",
 
boolean,
 
boolean,
boolean);'''
+
boolean);''''''
  
 
For a back button you can use this one:
 
For a back button you can use this one:

Revision as of 07:48, 31 May 2008

The "J1.5" namespace is an archived namespace. This page contains information for a Joomla! version which is no longer supported. It exists only as a historical reference, it will not be improved and its content may be incomplete and/or contain broken links.

The scripts below are used for using the back end toolbar when developing components or modules.

Put this script on your component or module code to make a custom button: JToolBarHelper::custom("task", "icon", "icon over", "alt", boolean, boolean);'

For a back button you can use this one:

JToolBarHelper::back();

Calcel button: JToolBarHelper::cancel();

Apply button:

JToolBarHelper::apply();