86 行
		
	
	
		
			无行尾
		
	
	
		
			2.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			86 行
		
	
	
		
			无行尾
		
	
	
		
			2.7 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <div id="container">
 | |
| <?php foreach ($note->result() as $row) { ?>
 | |
| 	<h2>Edit Note - <?php echo $row->title; ?></h2>
 | |
| 
 | |
| 	<div class="row show-grid">
 | |
| 	  <div class="span13">
 | |
| 	  
 | |
| 	
 | |
| 	<?php echo validation_errors(); ?>
 | |
| 	<form method="post" action="<?php echo site_url('notes/edit'); ?>/<?php echo $id; ?>" name="notes_add" id="notes_add">
 | |
| 	<table>
 | |
| 		<tr>
 | |
| 			<td><label for="title">Title</label></td>
 | |
| 			<td><input type="text" name="title" value="<?php echo $row->title; ?>" /></td>
 | |
| 		</tr>
 | |
| 		
 | |
| 		<tr>
 | |
| 			<td><label for="category">Category</label></td>
 | |
| 			<td><select name="category">
 | |
| 				<option value="General" selected="selected">General</option>
 | |
| 				<option value="Antennas">Antennas</option>
 | |
| 				<option value="Satellites">Satellites</option>
 | |
| 			</select></td>
 | |
| 		</tr>
 | |
| 		
 | |
| 		<tr>
 | |
| 			<td><input type="hidden" name="id" value="<?php echo $id; ?>" /></td>
 | |
| 			<td><textarea name="content" id="markItUp" rows="10" cols="5"><?php echo $row->note; ?></textarea></td>
 | |
| 		</tr>
 | |
| 	</table>
 | |
| 
 | |
| 	<div class="actions"><input class="btn primary" type="submit" value="Submit" /></div>
 | |
| 
 | |
| 	</form>
 | |
| 
 | |
| 
 | |
| 	  </div>
 | |
| 	  <div class="span2 offset1">
 | |
| 	 	 <a class="btn primary" href="<?php echo site_url('notes/edit'); ?>/<?php echo $row->id; ?>">Edit Note</a>
 | |
| 	 	 <br/><br/>
 | |
| 	 	 <a class="btn" href="<?php echo site_url('notes/delete'); ?>/<?php echo $row->id; ?>">Delete Note</a>
 | |
| 	  </div>
 | |
| 	</div>
 | |
| <?php } ?>
 | |
| </div>
 | |
| 
 | |
| <script type="text/javascript"> 
 | |
| <!--
 | |
| $(document).ready(function()	{
 | |
| 	// Add markItUp! to your textarea in one line
 | |
| 	// $('textarea').markItUp( { Settings }, { OptionalExtraSettings } );
 | |
| 	$('#markItUp').markItUp(mySettings);
 | |
| 
 | |
| 	// You can add content from anywhere in your page
 | |
| 	// $.markItUp( { Settings } );	
 | |
| 	$('.add').click(function() {
 | |
| 		$.markItUp( { 	openWith:'<opening tag>',
 | |
| 						closeWith:'<\/closing tag>',
 | |
| 						placeHolder:"New content"
 | |
| 					}
 | |
| 				);
 | |
| 		return false;
 | |
| 	});
 | |
| 
 | |
| 	// And you can add/remove markItUp! whenever you want
 | |
| 	// $(textarea).markItUpRemove();
 | |
| 	$('.toggle').click(function() {
 | |
| 		if ($("#markItUp.markItUpEditor").length === 1) {
 | |
| 			$("#markItUp").markItUpRemove();
 | |
| 			$("span", this).text("get markItUp! back");
 | |
| 		} else {
 | |
| 			$('#markItUp').markItUp(mySettings);
 | |
| 			$("span", this).text("remove markItUp!");
 | |
| 		}
 | |
| 		return false;
 | |
| 	});
 | |
| });
 | |
| -->
 | |
| </script> 
 | |
| <script type="text/javascript" src="<?php echo base_url(); ?>markitup/jquery.markitup.js"></script> 
 | |
| <!-- markItUp! toolbar settings --> 
 | |
| <script type="text/javascript" src="<?php echo base_url(); ?>markitup/sets/html/set.js"></script> 
 | |
| <!-- markItUp! skin --> 
 | |
| <link rel="stylesheet" type="text/css" href="<?php echo base_url(); ?>markitup/skins/markitup/style.css" /> 
 | |
| <!--  markItUp! toolbar skin --> 
 | |
| <link rel="stylesheet" type="text/css" href="<?php echo base_url(); ?>markitup/sets/html/style.css" /> 
 |