テーマ オプション ページで動的な行を作成しようとしており、それらのデータをシリアル化されたデータに保存しようとしています..
職務経験を追加すると、新しい行が追加されます..今、この値をシリアル化されたデータに保存し、それに応じて並べ替えたいだけです(開始日またはシリアル番号である可能性があります)。
私のJQUERYコード
jQuery('a.add-author').click(function(event) {
alert("asdas");
event.preventDefault();
counter++;
var newRow = jQuery('<tr><td><input style="width:200px" type="text" name="designation' + counter + '"/></td>
<td><input style="width:200px" type="text" id="start_date' + counter +'" name="start_date' + counter + '"/></td>
<td><input style="width:200px" id="end_date' + counter +'" type="text" name="end_date' + counter + '"/></td></tr>');
jQuery('table.authors-list').append(newRow);
$("#start_date"+ counter).datepicker();
$("#end_date"+ counter).datepicker();
});
私のオプション配列
array(
"name" => "Designation",
"desc" => "Enter your Designation of company.",
"id" => $shortname."_designation",
"type" => "workexp",
"std" => ""
)
私の HTML CODE FOR TYPE workexp
case 'workexp':
?>
<a href="#" title="wrk_exp" class="add-author">Add Work Experience</a>
<table class="authors-list" border="1" bordercolor="#ddd"
style="background-color:#F5F5F5" width="100%" cellpadding="3" cellspacing="3">
<tr><td>Designation</td><td>StartDate</td><td>EndDate</td></tr>
<tr>
<td><input style="width:200px" type="text" name="designation"/></td>
<td><input style="width:200px" type="text" id="start_date" name="start_date"/></td>
<td><input style="width:200px" type="text" id="end_date" name="end_date"/></td>
</tr>
</table>
<?php
break;
保存ボタン後の私のコード
if ( $_GET['page'] == basename(__FILE__) ) {
if ( 'save' == $_REQUEST['action'] ) {
foreach ($options as $value) {
update_option( $value['id'], $_REQUEST[ $value['id'] ] );
}
foreach ($options as $value) {
if( isset( $_REQUEST[ $value['id'] ] ) ) {
update_option( $value['id'], $_REQUEST[ $value['id'] ] );
} else {
delete_option( $value['id'] );
}
}
header("Location: admin.php?page=theme-options.php&saved=true");
die;
}
}