ui enhancements
This commit is contained in:
@@ -47,6 +47,7 @@ body {
|
|||||||
#frmMasterFilter {
|
#frmMasterFilter {
|
||||||
position:absolute;
|
position:absolute;
|
||||||
left:0;
|
left:0;
|
||||||
|
left:0;
|
||||||
width:1200px;
|
width:1200px;
|
||||||
height:100px;
|
height:100px;
|
||||||
background-color: #cccccc;
|
background-color: #cccccc;
|
||||||
@@ -54,13 +55,23 @@ body {
|
|||||||
|
|
||||||
#frmOrder {
|
#frmOrder {
|
||||||
background-color:#ccff00;
|
background-color:#ccff00;
|
||||||
position:absolute;
|
position:fixed;
|
||||||
left:000;
|
left:000;
|
||||||
top:250;
|
top:250;
|
||||||
width:300px;
|
width:295px;
|
||||||
padding-left: 0;
|
padding-left: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#datePicker {
|
||||||
|
background-color:#ccff00;
|
||||||
|
position:fixed;
|
||||||
|
left:000;
|
||||||
|
top:0;
|
||||||
|
width:295px;
|
||||||
|
height:245px;
|
||||||
|
padding-left: 25;
|
||||||
|
}
|
||||||
|
|
||||||
#frmOptionChainMain {
|
#frmOptionChainMain {
|
||||||
background-color: #EEEEFF;
|
background-color: #EEEEFF;
|
||||||
position:absolute;
|
position:absolute;
|
||||||
|
|||||||
@@ -90,8 +90,8 @@ let getCallArtifact=(callData,allColumns)=>{
|
|||||||
classes += " priceClick";
|
classes += " priceClick";
|
||||||
|
|
||||||
artifact+=`
|
artifact+=`
|
||||||
<td class="${classes} ralign" onclick="addToOrder('sell','${strCallJSON}')"><a href="#" title="Sell">${bidFrm}</a></td>
|
<td class="${classes} ralign" onclick="addToOrder('sell','${strCallJSON}')"><a title="Sell">${bidFrm}</a></td>
|
||||||
<td class="${classes} ralign" onclick="addToOrder('buy','${strCallJSON}')"><a href="#" title="Buy">${askFrm}</a></td>
|
<td class="${classes} ralign" onclick="addToOrder('buy','${strCallJSON}')"><a title="Buy">${askFrm}</a></td>
|
||||||
`;
|
`;
|
||||||
return artifact;
|
return artifact;
|
||||||
}
|
}
|
||||||
@@ -113,9 +113,11 @@ let getPutArtifact=(putData,allColumns)=>{
|
|||||||
bidFrm=Number(putData.bid).toLocaleString('en',{minimumFractionDigits: 2, maximumFractionDigits: 2});
|
bidFrm=Number(putData.bid).toLocaleString('en',{minimumFractionDigits: 2, maximumFractionDigits: 2});
|
||||||
askFrm=Number(putData.ask).toLocaleString('en',{minimumFractionDigits: 2, maximumFractionDigits: 2});
|
askFrm=Number(putData.ask).toLocaleString('en',{minimumFractionDigits: 2, maximumFractionDigits: 2});
|
||||||
|
|
||||||
|
classes += " priceClick";
|
||||||
|
|
||||||
artifact+=`
|
artifact+=`
|
||||||
<td class="${classes} ralign" onclick="addToOrder('sell','${strPutJSON}')"><a href="#" title="Sell">${bidFrm}</a></td>
|
<td class="${classes} ralign" onclick="addToOrder('sell','${strPutJSON}')"><a title="Sell">${bidFrm}</a></td>
|
||||||
<td class="${classes} ralign" onclick="addToOrder('buy','${strPutJSON}')"><a href="#" title="Buy">${askFrm}</a></td>
|
<td class="${classes} ralign" onclick="addToOrder('buy','${strPutJSON}')"><a title="Buy">${askFrm}</a></td>
|
||||||
`;
|
`;
|
||||||
return artifact;
|
return artifact;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user