Advertisement
Advertisement
| 07.05.2008 at 12:14PM PDT, ID: 23540938 |
|
[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: |
<cfsavecontent variable="verify">
var checkSelected = false;
var checkboxid;
checkboxid = document.getElementById('classcheckbox');
for (i = 0; i < updateassignmentform.checkboxid.length; i++){
if (updateassignmentform.checkboxid[i].checked){
checkSelected = true;
}
}
if (!checkSelected){
mx.controls.Alert.show('At least one checkbox must be selected!','Error');
return false;
}
else {
return true;
}
</cfsavecontent>
<cfform action="updateassignment.cfm" name="updateassignmentform" id="updateassignmentform" preloader="yes" format="flash" style="backgroundAlpha: 0;" wmode="transparent" skin="haloblue" height="400" width="700" onSubmit="#verify#">
<cfformgroup type="vertical">
<cfinput name="name" label="Assignment Name" type="text" width="150">
<cftextarea name="description" label="Assignment Description" cols="54" rows="3" wrap="virtual"></cftextarea>
</cfformgroup>
<cfformitem type="hrule"></cfformitem>
<cfformgroup type="vertical">
<cfinput name="assigndate" label="Assigned Date" type="datefield" width="150">
</cfformgroup>
<cfformitem type="hrule"></cfformitem>
<cfinput name="duedate" label="Due Date" type="datefield" width="150">
<cfformitem type="hrule"></cfformitem>
<cfformgroup type="vertical" label="Classes To Post">
<cfloop index="i" from="1" to="#TeacherClassListing.recordcount#">
<cfinput type="Checkbox" name="S#TeacherClassListing.SectionID[i]#" id="classcheckbox" Label="#TeacherClassListing.name[i]# #TeacherClassListing.number[i]#-#TeacherClassListing.sectionnumber[i]#">
</cfloop>
</cfformgroup>
<cfformitem type="hrule"></cfformitem>
<cfformgroup type="vertical" label="Options">
<cfinput type="checkbox" name="AllowUpload" label="Allow File Upload">
<cfinput type="checkbox" name="DCActive" label="Activate In Digital Classroom">
</cfformgroup>
<cfformitem type="hrule"></cfformitem>
<cfinput type="hidden" name="mode" value="#url.mode#">
<cfinput type="submit" name="SubmitUpdate" value="Update">
</cfform>
|