====== fetchId ====== {#JAPI Joomla.Framework HTML JButton::fetchId #} Gets the button ID. This method can be redefined in the final button class. The base class method does not return a value. ===== Syntax ===== void fetchId () ===== Examples ===== The following example illustrates the JButtonStandard class. $bar =& new JToolBar( 'My ToolBar' ); $button =& $bar->loadButtonType( 'Standard' ); echo $button->fetchId( 'Standard', 'send', 'Activate', 'activate', false ); might produce: My ToolBar-send ---- ~~DISCUSSION~~