Hello,
I have created sliding fieldsets using javascripts.
in it, I have created fieldsets using for loop.
Now I want , while I click on NEXT of one fieldset , then whatever input type fields are available on that fieldset ,
I should get them.
I want to store it in temp table.
but how can I?
How to get each input type values of each fieldset?
I have created fieldset by below loop:
foreach ($All_skill_type as $All_skill_type_)
{
$each_skill_type=$All_skill_type_ -> skill_type ;
// find skill_type_id and serach Skills for that skill_type
$skill_type_id=helpers::getSkillTypeId($each_skill_type);
$skills_of_skill_type=helpers::getskills($skill_type_id);
?>
<fieldset class="step">
<p>
<label for="username" style='width:170px!important;'><? echo $each_skill_type .":";?></label>
<br><br>
<?
for ($i=0;$i<sizeof($skills_of_skill_type);$i++)
{
$skill_box=$skills_of_skill_type [$i]['skill'];
$skill_id=helpers::getSkillId($skill_box,$skill_type_id);
echo CHtml::CheckBox($skill_box,'', array (
'id'=>'skill_used'.$skill_id,
"onclick"=>"js:skill_check('".$skill_box."','".$each_skill_type."',".$skill_id.")",
));
echo CHtml::label($skill_box, $skill_box);
}
?>
</p>
</fieldset>
<?
}