Commit c42124cf authored by smestry's avatar smestry

Updated the jsp file of product wizard for look and feel


git-svn-id: http://15.206.35.175/svn/proteus/business-java/trunk@103958 ce508802-f39f-4f6c-b175-0d175dae99d5
parent 219efa9f
......@@ -20,20 +20,20 @@
// Changed by Sneha on 08-04-2016 [Start]
String flag = (String) request.getParameter("FLAG");
//out.println("field===>>["+field+"] dbid===>>["+dbid+"] fieldName===>>["+fieldName+"] idNum===>>["+idNum+"] fieldValues===>>["+fieldValues+"]");
System.out.println("field===>>["+field+"] dbid===>>["+dbid+"] fieldName===>>["+fieldName+"] idNum===>>["+idNum+"] fieldValues===>>["+fieldValues+"]");
// Changed by Sneha on 08-04-2016 [End]
String[] fieldValue = fieldValues.split(",");
/*
System.out.println("length = "+ fieldValue.length);
/* System.out.println("length = "+ fieldValue.length);
for(String n: fieldValue)
{
System.out.println("fieldValue = "+ n);
}
*/
System.out.println("loginId = "+ loginId);
System.out.println("field = "+ field);
*/
String htmlData = itmWizardBean.getList(loginId, field, fieldValue);
%>
<%-- <%=htmlData%> --%>
......@@ -41,10 +41,20 @@
<html>
<head>
<script>
<script language="JavaScript" type="text/javascript">
function displayText()
{
var str = "Add";
var localized = str.toLocaleString();
document.getElementById("addButton").value = localized;
str = "Cancel";
localized = str.toLocaleString();
document.getElementById("cancelButton").value = localized;
}
function load()
{
var value = "<%=field%>";
var value = "<%=field %>";
var dbid = "<%=dbid%>";
var idNum = "<%=idNum%>";
var flag = "<%=flag%>";
......@@ -63,42 +73,44 @@ function load()
<script type="text/javascript" src="/ibase/webitm/js/prodWiz_Popup.js"></script>
<link href="/ibase/webitm/css/Novartis/ProductWizard.css" rel="stylesheet"/>
<body onLoad="displayText();load();">
<body style="margin: 0;" onload="load();">
<div id="div1" class="mainPage-Container">
<div class="headerPage-Container pophelp-Header" >
<span class="pophelp-headerTitle">
<TABLE border="0" width="99%" height="2%" class="header_td" cellpadding="0" cellspacing="0" style="background-color: #f7f8fa;">
<TR>
<div class='contentHeaderLbl'><img src="/ibase/images/menuImages/web/Dailyactivityreport.png" onerror=" this.src= '/ibase/images/menuImages/errMenu.png' " style="position: absolute; margin-left: -20px;margin-top:9px; height: 20px; width: 20px;"/>
<TD class="header_main" nowrap="true" align="left" valign="middle" style="padding-left: 10px;font-size:16px;" width="2%" >
Select <%=fieldName %>
</span>
</TD>
<div id="popHelp-SearchBox">
<div class="inner-addon right-addon">
<img class="fa glyphicon" src="/ibase/webitm/images/search.png" style = "height:15px;width:15px;"/>
<input type="text" placeholder="Search..." spellcheck="false" onkeydown="resetSearch(this,event)" onkeyup="searchData(this,event)"/>
</div>
</div>
<div class="detailPage-Container pophelp-Container">
<div id="dataDivID" class="pophelp-Contents" >
</div>
</TR>
</TABLE>
<div class="pageContentWrapper" style="height:80%;overflow:auto;">
<div>
<%=htmlData%>
</div>
</div>
<div class="pophelp-Footer">
<div>
<table style="width: 100%;">
<tr>
<td align="right">
<input type="hidden" id="value">
<input type="hidden" id="idNum">
<!-- Changed by Sneha on 08-04-2016, [Start] -->
<input type="hidden" id="flag" >
<!-- Changed by Sneha on 08-04-2016, [End] -->
<div id="ok" class="button green-Btn pophelp-okcancel" onClick='selectValue();'>
<span>Add</span>
</div>
<div id="cancel" class="button red-Btn pophelp-okcancel" onClick='self.close();'>
<span>Cancel</span>
</div>
<!-- <input type="submit" style="cursor:hand" value="Add" class="button green-Btn pophelp-okcancel" title='Add'
onclick="javascript:selectValue()" />
<input type="button" style="cursor:hand" value="Cancel" class="button red-Btn pophelp-okcancel" title='Cancel'
onclick="self.close();" /> -->
<input type ="button" class="button" id="cancelButton" value="Cancel" title='' onclick="self.close()"/>
<input type ="button" class="button" id="addButton" value="Add" title='' onclick="selectValue();"/>
</td>
</tr>
</table>
</div>
</div>
</body>
</head>
</html>
\ No newline at end of file
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