Commit d1174fe0 authored by steurwadkar's avatar steurwadkar

Wavegen Wizard changes Check-in by Santosh


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@104101 ce508802-f39f-4f6c-b175-0d175dae99d5
parent b9a2d6ae
......@@ -271,4 +271,12 @@ div.panelSO.show{
border-radius:50%;
cursor: pointer;
}
img.imagePanelSrc
{
user-drag: none;
user-select: none;
-moz-user-select: none;
-webkit-user-drag: none;
-webkit-user-select: none;
-ms-user-select: none;
}
......@@ -701,6 +701,30 @@ function selectAllRows()
{
expandCollapse();
}
var tableElems = $("table[class='tableClass']");
for(var j=1; j<tableElems.length;j++)
{
var chekdRowCnt = 0;
var eachTable = tableElems[j];
for(var k=1; k<eachTable.rows.length; k++)
{
if(eachTable.rows[k].cells[0].childNodes.item(0).checked)
{
chekdRowCnt++;
}
}
if((eachTable.rows.length-1)==chekdRowCnt)
{
eachTable.rows[0].cells[0].childNodes.item(0).checked = true;
}
else
{
eachTable.rows[0].cells[0].childNodes.item(0).checked = false;
}
}
}
else
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment