Advertisement
Advertisement
| 07.28.2008 at 06:39AM PDT, ID: 23600640 |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: |
<script type="text/javascript">
<!--
// Add Product.
function submitProductForm() {
// Open model "processing" window.
ColdFusion.Window.create('progress','Processing','../common/progress.cfm',progress_config);
// Create instance of proxy.
var proxy = new packageadmin();
//Set post method.
proxy.setHTTPMethod("POST");
// Set form.
proxy.setForm("productForm");
// Represents CFC.
if (proxy.addPackage()) {
setTimeout("ColdFusion.Window.hide('progress')",2000);
}
}
</script>
<cfform name="productForm" style="margin:0px;">
<table width="100%" border="0" cellspacing="0" cellpadding="3">
<tr>
<td colspan="5"> </td>
</tr>
<tr>
<td width="100"><strong>Package Name</strong></td>
<td width="245">
<cfinput type="text" name="p_name" message="A package name is required." required="yes" class="form_input"
style="width:238px" maxlength="255" /> </td>
<td> </td>
<td width="100"><strong>Menu Title </strong></td>
<td width="245">
<cfinput type="text" name="menu_title" message="A menu title is required." required="yes" class="form_input"
style="width:238px" maxlength="12" /></td>
</tr>
<tr>
<td colspan="5">
<div class="tips">The Menu Title is word used to create a new menu item for this package. It's maximum length is 12 characters.</div></td>
</tr>
<tr>
<td><strong>Category</strong></td>
<td>
<cfinput type="text" name="p_category" message="A package category is required." required="yes" class="form_input"
style="width:238px" maxlength="255" /></td>
<td> </td>
<td><strong>Image</strong></td>
<td>
<cfselect name="id_media" class="form_dropdown" required="yes" style="width:245px">
<option value="0" selected="yes">-- Select --</option>
<cfloop query="Media">
<cfoutput>
<option value="#id_media#">#media_name#</option>
</cfoutput>
</cfloop>
</cfselect> </td>
</tr>
<tr>
<td><strong>Difficulty</strong></td>
<td>
<cfselect name="difficulty" class="form_dropdown" style="width:245px">
<option value="Easy" selected="yes">Easy</option>
<option value="Intermediate">Intermediate</option>
<option value="Difficult">Difficult</option>
</cfselect> </td>
<td> </td>
<td><strong>Price</strong></td>
<td>
<cfinput type="text" name="price" message="A package price is required." required="yes" class="form_input"
style="width:238px" maxlength="6" /> </td>
</tr>
<tr>
<td colspan="5"> </td>
</tr>
<tr>
<td><strong>Description</strong></td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td colspan="5">
<cftextarea name="p_description" style="width:735px; height:100px;" wrap="virtual"></cftextarea> </td>
</tr>
<tr>
<td colspan="5" align="right">
<cfinput type="button" name="submit" class="form_button" value="Submit" onclick="submitProductForm();" /></td>
</tr>
</table>
</cfform>
|