summaryrefslogtreecommitdiff
path: root/testapp/static/exam
diff options
context:
space:
mode:
authorHardik Ghaghada2013-04-29 11:05:39 +0530
committerHardik Ghaghada2013-04-29 11:05:39 +0530
commit216031440bfe304ad51013950f49e88258ed9fde (patch)
tree907b89d2c37ffcf1ba0d832a2fe2c6e12cef11cf /testapp/static/exam
parent5c7f66806e4be50985655b7c12bf3190ee91ae46 (diff)
downloadonline_test-216031440bfe304ad51013950f49e88258ed9fde.tar.gz
online_test-216031440bfe304ad51013950f49e88258ed9fde.tar.bz2
online_test-216031440bfe304ad51013950f49e88258ed9fde.zip
Added a separate textarea for non-editable code for snippet feature
Diffstat (limited to 'testapp/static/exam')
-rw-r--r--testapp/static/exam/js/question.js54
1 files changed, 52 insertions, 2 deletions
diff --git a/testapp/static/exam/js/question.js b/testapp/static/exam/js/question.js
index ba3f6d2..72b92e1 100644
--- a/testapp/static/exam/js/question.js
+++ b/testapp/static/exam/js/question.js
@@ -78,11 +78,51 @@ function catchTab(item,e)
}
var lineObjOffsetTop = 2;
+
+function createTextAreaWithLines2(id)
+{
+ var el = document.createElement('DIV');
+ var ta = document.getElementById(id);
+ var content = document.getElementById('snippet').value;
+ ta.parentNode.insertBefore(el,ta);
+ el.appendChild(ta);
+ el.className='textAreaWithLines';
+ el.style.width = (ta.offsetWidth + 30) + 'px';
+ ta.style.position = 'absolute';
+ ta.style.left = '30px';
+ el.style.height = (ta.offsetHeight + 2) + 'px';
+ el.style.overflow='hidden';
+ el.style.position = 'relative';
+ el.style.width = (ta.offsetWidth + 30) + 'px';
+ var lineObj = document.createElement('DIV');
+ lineObj.style.position = 'absolute';
+ lineObj.style.top = lineObjOffsetTop + 'px';
+ lineObj.style.left = '0px';
+ lineObj.style.width = '27px';
+ el.insertBefore(lineObj,ta);
+ lineObj.style.textAlign = 'right';
+ lineObj.className='lineObj';
+ var string = '';
+ split_content = content.split('\n');
+ for(var no=split_content.length+1;no<1000;no++)
+ {
+ if(string.length>0)string = string + '<br>';
+ string = string + no;
+ }
+ //ta.onkeydown = function() { positionLineObj(lineObj,ta); };
+ ta.onmousedown = function() { positionLineObj(lineObj,ta); };
+ ta.onscroll = function() { positionLineObj(lineObj,ta); };
+ ta.onblur = function() { positionLineObj(lineObj,ta); };
+ ta.onfocus = function() { positionLineObj(lineObj,ta); };
+ ta.onmouseover = function() { positionLineObj(lineObj,ta); };
+ lineObj.innerHTML = string;
+}
function createTextAreaWithLines(id)
{
var el = document.createElement('DIV');
var ta = document.getElementById(id);
+ var content = document.getElementById('snippet').value;
ta.parentNode.insertBefore(el,ta);
el.appendChild(ta);
el.className='textAreaWithLines';
@@ -102,18 +142,28 @@ function createTextAreaWithLines(id)
lineObj.style.textAlign = 'right';
lineObj.className='lineObj';
var string = '';
- for(var no=1;no<200;no++)
+ split_content = content.split('\n');
+ for(var no=1;no<=split_content.length;no++)
{
if(string.length>0)string = string + '<br>';
string = string + no;
}
+ /*for(var no=1;no<200;no++)
+ {
+ if(string.length>0)string = string + '<br>';
+ string = string + no;
+ if (content.trim.length == 0)
+ {
+ alert(string);
+ }
+ }*/
//ta.onkeydown = function() { positionLineObj(lineObj,ta); };
ta.onmousedown = function() { positionLineObj(lineObj,ta); };
ta.onscroll = function() { positionLineObj(lineObj,ta); };
ta.onblur = function() { positionLineObj(lineObj,ta); };
ta.onfocus = function() { positionLineObj(lineObj,ta); };
ta.onmouseover = function() { positionLineObj(lineObj,ta); };
- lineObj.innerHTML = string;
+ lineObj.innerHTML = string;
}
function positionLineObj(obj,ta)