Forums

pane & panel doesn't work

laurentmartin 04 May, 2012
i am interested in pane and panel, i have set up chronoform v4 3.3, but nothing display when i insert the element pane or panel with their start and end.
Any idea why ?
laurentmartin 06 May, 2012
up

i am using joomla 1.5.22 and chronoform 4.0 RC3.3, chronocontact V 3.2 is also installed, template is JA purity, and here is the basic code of the form
<div class="ccms_form_element">
							<?php
								jimport("joomla.html.pane");
								$pane =& JPane::getInstance("tabs", array("startOffset" => 0));
								echo $pane->startPane("pane_2");
							?>
<div class="ccms_form_element cfdiv_textarea" id="autoID-6cb92354e1b051c86caf1bfb0e4453e9_container_div"><label>Label Text</label><textarea cols="45" rows="12" class="" title="" name="input_textarea_0"></textarea>
<div class="clear"></div><div id="error-message-input_textarea_0"></div></div>
<?php if(isset($pane)){echo $pane->endPane();} ?>
							<div class="clear"></div>
						</div>

<div class="ccms_form_element">
							<?php
								jimport("joomla.html.pane");
								$pane =& JPane::getInstance("tabs", array("startOffset" => 0));
								echo $pane->startPane("pane_3");
							?>
<div class="ccms_form_element cfdiv_submit" id="autoID-d96d1bafb273ff4128ebe402df357a35_container_div"><input name="input_submit_1" class="" value="Submit" type="submit" />
<div class="clear"></div><div id="error-message-input_submit_1"></div></div>
<?php if(isset($pane)){echo $pane->endPane();} ?>
							<div class="clear"></div>
						</div>
This topic is locked and no more replies can be posted.