- use correct field id git-svn-id: svn://10.0.0.236/trunk@236861 18797224-902f-48f8-a5cc-f745e15eee43
17 lines
385 B
JavaScript
17 lines
385 B
JavaScript
function checkCategoryForm(f) {
|
|
return verifySelected(f.product_id, 'Product');
|
|
}
|
|
|
|
function checkIDForm(f) {
|
|
return checkString(f.id, 'Testcase ID #');
|
|
}
|
|
|
|
function checkFulltextForm(f) {
|
|
return checkString(f.text_snippet, 'String to match');
|
|
}
|
|
|
|
function checkRecentForm(f) {
|
|
return checkRadio(f.recently, 'Added or Changed') &&
|
|
checkString(f.num_days, '# of days');
|
|
}
|