Hi.
In FAQ I saw a sample code for creating tabs in form:
I try to use it but I have a error message such as: "Class 'mosTabs' not found in .../components/com_chronocontact/chronocontact.html.php".
What can I do to work it well?
Thank you for this useful component. Exuse for my English.
In FAQ I saw a sample code for creating tabs in form:
<?php
$tabs = new mosTabs(1);
$tabs->startPane( 'test_form' );
$tabs->startTab( 'Tab 1', 'tab_1' );
?>
Name: <input name="name" value="" type="text">
<?php
$tabs->endTab();
$tabs->startTab( 'Tab 2', 'tab_2' );
?>
E-mail: <input name="email" value="" type="text">
<?php
$tabs->endTab();
$tabs->startTab( 'Tab 3', 'tab_3' );
?>
{imageverification}
<?php
$tabs->endTab();
$tabs->startTab( 'Tab 4', 'tab_4' );
?>
<input name="submit" value="Submit" type="submit">
<?php
$tabs->endTab();
$tabs->endPane();
?>
I try to use it but I have a error message such as: "Class 'mosTabs' not found in .../components/com_chronocontact/chronocontact.html.php".
What can I do to work it well?
Thank you for this useful component. Exuse for my English.