Commit 3617de17be7f04d7cf2d54c4fe43c4b838558436
1 parent
5e3fe0dd
fixed radio button selected for netscape
git-svn-id: https://kt-dms.svn.sourceforge.net/svnroot/kt-dms/trunk@1481 c91229c3-7414-0410-bfa2-8a42b809f60b
Showing
1 changed file
with
3 additions
and
3 deletions
presentation/lookAndFeel/knowledgeTree/documentmanagement/browseUI.inc
| ... | ... | @@ -40,11 +40,11 @@ function renderBrowseTypeSelect($sBrowseType) { |
| 40 | 40 | // TODO: write function for onChange that checks if the new value |
| 41 | 41 | return "<span class=\"browseTypeSelect\">\n |
| 42 | 42 | \tView documents by: <input type=\"radio\" name=\"fBrowseType\" onclick=\"document.MainForm.submit()\" value=\"folder\"" . |
| 43 | - ((($sBrowseType=="folder") || (strlen($sBrowseType)==0)) ? " checked" : "") . "/> Folders\n" . | |
| 43 | + ((($sBrowseType=="folder") || (strlen($sBrowseType)==0)) ? " checked=\"checked\"" : "") . "/> Folders\n" . | |
| 44 | 44 | "<input type=\"radio\" name=\"fBrowseType\" onclick=\"document.MainForm.submit()\" value=\"category\"" . |
| 45 | - (($sBrowseType=="category") ? " checked" : "") . "/> Category\n" . | |
| 45 | + (($sBrowseType=="category") ? " checked=\"checked\"" : "") . "/> Category\n" . | |
| 46 | 46 | "<input type=\"radio\" name=\"fBrowseType\" onclick=\"document.MainForm.submit()\" value=\"documentType\"" . |
| 47 | - (($sBrowseType=="documentType") ? " checked" : "") . "/> Document Type\n</span>"; | |
| 47 | + (($sBrowseType=="documentType") ? " checked=\"checked\"" : "") . "/> Document Type\n</span>"; | |
| 48 | 48 | } |
| 49 | 49 | |
| 50 | 50 | /** | ... | ... |