Focal Point Banner


As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.

Join the TIBCO Community
TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.

  • From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
  • Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
  • Request access to the private WebFOCUS User Group (login required) to network with fellow members.

Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [WORK AROUND] Reset Buttons blanks out radio buttons

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[WORK AROUND] Reset Buttons blanks out radio buttons
 Login/Join
 
Expert
posted
OK now, I have a nice Launch Page and decided to add a reset button to it. Then it wasn’t as nice as I hoped it would be. Unfortunately, when I change my selections and click on the reset button, all my radio button are blink (unchecked) and some of them remain dysfunctional. This is not a good thing and we don't like it. I am sure that others have come across this and that there's a solution out there. Unfortunately, I cannot find (or recall) that solution at the moment and am counting on this wonderful forum to help me get past this dilemma.

I think it's more of a radio button issue. What do you think?

I thank you in advance for your assistance.

This message has been edited. Last edited by: Doug,
 
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005Report This Post
Platinum Member
posted Hide Post
Hi,

I came across this issue and had to explicitly check/uncheck the radio boxes..onclick of the reset button

  
function resetAll()
{
document.form2.selectbox1.options.length = 0;
document.form2.selectbox2.options.length = 0;
document.mainF.RPRT_TYPE[0].checked = true;
}



WF 7.7.03/Windows/HTML,PDF,EXL
POC/local Dev Studio 7.7.03 & 7.6.11
 
Posts: 103 | Registered: June 12, 2009Report This Post
Master
posted Hide Post
Doug,
Why not code your own JavaScript function and have more control over what gets reset (or not)? Apart from the obvious answer ('Because this function should work out of the box')?

<html>
<head>
<script type="text/javascript">

function reset()
  {
  document.getElementById("check1").checked=false;
  document.getElementById("text1").value ='';
  document.getElementById("select1").selectedIndex = 0;
  document.getElementById("radio1").checked = "";
  }

</script>
</head>
<body>

<form>
<input type="checkbox" id="check1" />Do you like summer?<br />
Label: <input type="text" id="text1" /><br />

<input id='radio1' type="radio" name="sex" value="male" checked="checked" /> Male<br />
<input id='radio1' type="radio" name="sex" value="female" /> Female<br />

<select id="select1">
  <option selected="selected">Apple</option>
  <option>Orange</option>
  <option>Pineapple</option>
  <option>Banana</option>
</select>

</form>

<button onclick="reset()">Reset</button>

</body>
</html>


- ABT


------------------------------------
WF Environment:
------------------------------------
Server/Client, ReportCaster, Dev Studio: 7.6.11
Resource Analyzer, Resource Governor, Library, Maintain, InfoAssist
OS: Windows Server 2003
Application/Web Server: Tomcat 5.5.25
Java: JDK 1.6.0_03
Authentication: LDAP, MRREALM Driver
Output: PDF, EXL2K, HTM

------------------------------------
Databases:
------------------------------------
Oracle 10g
DB2 (AS/400)
MSSQL Server 2005
Access/FoxPro
 
Posts: 561 | Registered: February 03, 2010Report This Post
Expert
posted Hide Post
Smiler Thanks to both of you.

Smiler Severus.snape: This is about as much JavaScripting that we would like.

Smiler ABT: We'd like to be as much as "out of the box" as possible for the ease of future maintenance...

Frowner However, the real question is: Why doesn't the reset button work in the first place?
 
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005Report This Post
Expert
posted Hide Post
Can you post the code ?


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!

 
Posts: 6347 | Location: 33°49'23.0"S, 151°11'41.0"E | Registered: October 31, 2006Report This Post
Expert
posted Hide Post
Sure Waz,
<!-- Generated by Report Layout Painter -->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
<META id=mycharsetmeta content="text/html; charset=UTF-8" http-equiv=Content-Type>
<META id=Generation content="Gen 3.0">
<SCRIPT id=IBI_RelCallBack type=text/javascript>function AdjustChildrenPosition(){
}
</SCRIPT>

<SCRIPT id=IBI_OptionsScript type=text/javascript>
var cgipath = "cgipath";
var ibirls = "ibirls3";

var rltdyncalendar = "rltdyncalendar";
var gmap = "ibigmap";
var olap="olap";
var olappanebase="olappanebase";
var olapdrill="olapdrill";

var ibixmltree="ibixmltree";

var ibiOptions = new Array(cgipath,ibirls);
</SCRIPT>

<SCRIPT id=IBI_nls type=text/javascript src="/ibi_html/javaassist/nls.js"></SCRIPT>

<SCRIPT id=IBI_nlsVars type=text/javascript src="/ibi_html/javaassist/nlsvars.js"></SCRIPT>

<SCRIPT id=IBI_ibigbl type=text/javascript src="/ibi_html/javaassist/ibi/html/js/ibigbl.js"></SCRIPT>

<SCRIPT id=IBI_ibigblloadCss type=text/javascript>
ibigblloadCss(null);
addIntlTranslatedJS("composertrans.js");
</SCRIPT>
<TITLE>ODW Store Operations Reporting Launch Page</TITLE>
<!-- the following STYLE was added manually -->
<STYLE>A:link {
	BACKGROUND: none transparent scroll repeat 0% 0%; COLOR: black; TEXT-DECORATION: none
}
A:visited {
	BACKGROUND: none transparent scroll repeat 0% 0%; COLOR: black; TEXT-DECORATION: none
}
A:active {
	BACKGROUND: none transparent scroll repeat 0% 0%; COLOR: black; TEXT-DECORATION: none
}
A:hover {
	BACKGROUND: #fff200; COLOR: black; TEXT-DECORATION: underline
}
</STYLE>

<SCRIPT id=clientEventHandlersJS type=text/javascript>
//Begin function window_onload
function window_onload() {
 
UpdateData();
 
// TODO: Add your event handler code here
//add onInitialUpdate() function to make changes before initial run of the reports
}
//End function window_onload

//Begin function button1_onclick
function button1_onclick(ctrl) {
// TODO: Add your event handler code here
OnExecute(ctrl)
}
//End function button1_onclick

//Begin function button2_onclick
function button2_onclick(ctrl) {
// TODO: Add your event handler code here
OnExecute(ctrl)
}
//End function button2_onclick
</SCRIPT>

<SCRIPT for=window type=text/javascript eventname="onload">window.onload = function() { window_onload(); }</SCRIPT>

<META name=GENERATOR content="MSHTML 8.00.6001.19088"></HEAD>
<BODY style="OVERFLOW: auto" nextelementuniquenumber="34" elementtype="21" edaconnectionrequired="true">
<FIELDSET style="Z-INDEX: 1; POSITION: absolute; WIDTH: 170px; FONT-FAMILY: arial; HEIGHT: 210px; COLOR: black; FONT-SIZE: 10pt; TOP: 260px; FONT-WEIGHT: bold; LEFT: 40px" id=groupbox3 persistentuniqueid="compUid_20">
<LEGEND style="Z-INDEX: 0; FONT-FAMILY: arial; COLOR: black; FONT-SIZE: 10pt; FONT-WEIGHT: bold" id=legend3 persistentuniqueid="compUid_21">Report Type</LEGEND></FIELDSET> 
<FIELDSET style="Z-INDEX: 33; POSITION: absolute; WIDTH: 170px; FONT-FAMILY: arial; HEIGHT: 100px; COLOR: black; FONT-SIZE: 10pt; TOP: 500px; FONT-WEIGHT: bold; LEFT: 40px" id=groupbox4 persistentuniqueid="compUid_33">
<LEGEND style="Z-INDEX: 0; FONT-FAMILY: arial; COLOR: black; FONT-SIZE: 10pt; FONT-WEIGHT: bold" id=legend4 persistentuniqueid="compUid_34">Report Format</LEGEND></FIELDSET> 
<SPAN style="Z-INDEX: 30; POSITION: absolute; WIDTH: 160px; HEIGHT: 130px; VISIBILITY: visible; TOP: 325px; LEFT: 43px" id=panel2 tabIndex=33 elementtype="34" persistentuniqueid="compUid_28">
<LABEL style="Z-INDEX: 27; POSITION: absolute; TEXT-ALIGN: left; WIDTH: 160px; FONT-FAMILY: Arial; HEIGHT: 20px; COLOR: black; FONT-SIZE: 10pt; TOP: 1342177px; CURSOR: default; LEFT: 1342177px" id=label20 tabIndex=30 for=MonthlyOption persistentuniqueid="compUid_29">MonthlyOption</LABEL> 
<LABEL style="Z-INDEX: 28; POSITION: absolute; TEXT-ALIGN: left; WIDTH: 160px; FONT-FAMILY: Arial; HEIGHT: 20px; COLOR: black; FONT-SIZE: 10pt; TOP: 0px; CURSOR: default; FONT-WEIGHT: bold; LEFT: 10px" id=label21 tabIndex=31 for=MonthlyOption persistentuniqueid="compUid_30">MonthlyOptions</LABEL> 
<SPAN style="Z-INDEX: 29; POSITION: absolute; OVERFLOW-Y: auto; WIDTH: 160px; FONT-FAMILY: arial; HEIGHT: 110px; COLOR: black; FONT-SIZE: 10pt; OVERFLOW: hidden; TOP: 20px; LEFT: 10px" id=radio4 tabIndex=32 contentEditable=false elementtype="12" persistentuniqueid="compUid_31" boundtovariable="1" groupChildren="1" height="0" CHECKED="false" indeterminate="false" size="1" start="fileopen" width="0" loop="1" vspace="0" maxLength="2147483647" hspace="0" readOnly="false" columns="1" defaultlocation="240,100,265,580" multiple="false" name="radio4">
<TABLE style="WIDTH: 100%; HEIGHT: 100%; COLOR: black; FONT-SIZE: 10pt" contentEditable=false cellSpacing=0 cellPadding=0>
<TBODY>
<TR>
<TD>
<LABEL style="CURSOR: default" id=radio4_LABEL_0 for=radio4_0>
<INPUT id=radio4_0 tabIndex=32 value=All CHECKED type=radio displaytext="All">All</LABEL></TD></TR>
<TR>
<TD>
<LABEL style="CURSOR: default" id=radio4_LABEL_1 for=radio4_1>
<INPUT id=radio4_1 tabIndex=32 value=Comp type=radio displaytext="Comp" name="radio4">Comp</LABEL></TD></TR>
<TR>
<TD>
<LABEL style="CURSOR: default" id=radio4_LABEL_2 for=radio4_2>
<INPUT id=radio4_2 tabIndex=32 value=NonCpmp type=radio displaytext="NonCpmp" name="radio4">NonCpmp</LABEL></TD></TR>
<TR>
<TD>
<LABEL style="CURSOR: default" id=radio4_LABEL_3 for=radio4_3>
<INPUT id=radio4_3 tabIndex=32 value=Closed type=radio displaytext="Closed" name="radio4">Closed</LABEL></TD></TR>
<TR>
<TD>
<LABEL style="CURSOR: default" id=radio4_LABEL_4 for=radio4_4>
<INPUT id=radio4_4 tabIndex=32 value=Overhead type=radio displaytext="Overhead Expense" name="radio4">Overhead Expense</LABEL></TD></TR></TBODY></TABLE></SPAN></SPAN>
<INPUT style="Z-INDEX: 1; BORDER-BOTTOM: thin outset; POSITION: absolute; BORDER-LEFT: thin outset; WIDTH: 150px; FONT-FAMILY: Arial; HEIGHT: 30px; COLOR: black; FONT-SIZE: 10pt; BORDER-TOP: thin outset; TOP: 660px; FONT-WEIGHT: bold; BORDER-RIGHT: thin outset; LEFT: 50px" id=button1 language=javascript tabIndex=1 onclick=button1_onclick(this) value="This Window" size=60 type=button requests_list="9" name="button1"> 
<FIELDSET style="Z-INDEX: 25; POSITION: absolute; WIDTH: 170px; FONT-FAMILY: arial; HEIGHT: 190px; FONT-SIZE: 10pt; TOP: 40px; FONT-WEIGHT: bold; LEFT: 40px" id=groupbox2 persistentuniqueid="compUid_18">
<LEGEND style="Z-INDEX: 0; FONT-FAMILY: arial; COLOR: black; FONT-SIZE: 10pt; FONT-WEIGHT: bold" id=legend2 persistentuniqueid="compUid_19">Search Criteria</LEGEND></FIELDSET>  
<SPAN style="Z-INDEX: 24; POSITION: absolute; TEXT-ALIGN: right; WIDTH: 180px; FONT-FAMILY: arial; HEIGHT: 20px; COLOR: black; FONT-SIZE: 10pt; TOP: 20px; LEFT: 1120px" id=text2 tabIndex=28 persistentuniqueid="compUid_16">
<A id=anchor2 href="javascript:OnExecute(null, 'anchor2')" persistentuniqueid="compUid_17" requests_list="7" autoExecute="True" name="anchor2">Print Multiple Reports</A></SPAN>    
<LABEL style="Z-INDEX: 0; BORDER-BOTTOM: thin ridge; POSITION: absolute; TEXT-ALIGN: center; BORDER-LEFT: thin ridge; WIDTH: 1430px; FONT-FAMILY: Arial; HEIGHT: 980px; COLOR: black; FONT-SIZE: 16pt; BORDER-TOP: thin ridge; TOP: 10px; CURSOR: default; FONT-WEIGHT: bold; BORDER-RIGHT: thin ridge; LEFT: 10px" id=label18 tabIndex=24 for=MonthlyOption persistentuniqueid="compUid_13">Store Operations Reporting 
<IMG style="Z-INDEX: 35; POSITION: absolute; TOP: 550px; LEFT: 50px" id=image2 tabIndex=37 border=0 src="app/icon_excel.bmp" originalHeight="20" originalWidth="20" name="image2"> 
<INPUT style="Z-INDEX: 36; BORDER-BOTTOM: thin outset; POSITION: absolute; BORDER-LEFT: thin outset; WIDTH: 150px; FONT-FAMILY: Arial; HEIGHT: 30px; COLOR: black; FONT-SIZE: 10pt; BORDER-TOP: thin outset; TOP: 740px; FONT-WEIGHT: bold; BORDER-RIGHT: thin outset; LEFT: 40px" id=reset1 tabIndex=38 value=Reset size=60 type=reset name="reset1"></LABEL>   
<SPAN style="Z-INDEX: 0; POSITION: absolute; OVERFLOW-Y: auto; WIDTH: 151px; FONT-FAMILY: Arial; HEIGHT: 25px; COLOR: black; FONT-SIZE: 10pt; OVERFLOW: hidden; TOP: 290px; LEFT: 50px" id=edit2 tabIndex=5 contentEditable=false elementtype="12" persistentuniqueid="compUid_2" boundtovariable="1" groupChildren="1" height="0" CHECKED="false" indeterminate="false" size="20" start="fileopen" width="0" loop="1" vspace="0" maxLength="2147483647" hspace="0" readOnly="false" columns="2" value="Weekly" name="edit2">
<TABLE style="WIDTH: 100%; HEIGHT: 100%; COLOR: black; FONT-SIZE: 10pt" contentEditable=false cellSpacing=0 cellPadding=0>
<TBODY>
<TR>
<TD>
<LABEL style="CURSOR: default" id=edit2_LABEL_0 for=edit2_0>
<INPUT style="TOP: 50px" id=edit2_0 tabIndex=5 value=Weekly CHECKED type=radio displaytext="Weekly" name="edit2">Weekly</LABEL></TD>
<TD>
<LABEL style="CURSOR: default" id=edit2_LABEL_1 for=edit2_1>
<INPUT style="TOP: 50px" id=edit2_1 tabIndex=5 value=Monthly type=radio displaytext="Monthly" name="edit2">Monthly</LABEL></TD></TR></TBODY></TABLE></SPAN>
<INPUT style="Z-INDEX: 17; POSITION: absolute; TEXT-ALIGN: center; WIDTH: 70px; FONT-FAMILY: Arial; HEIGHT: 25px; COLOR: red; FONT-SIZE: 10pt; TOP: 90px; FONT-WEIGHT: bold; LEFT: 130px" id=edit5 tabIndex=11 value=1 hspace=0 size=10 persistentuniqueid="compUid_5" boundtovariable="1" name="edit5"> 
<SPAN style="Z-INDEX: 0; POSITION: absolute; OVERFLOW-Y: auto; WIDTH: 80px; FONT-FAMILY: arial; HEIGHT: 110px; COLOR: black; FONT-SIZE: 10pt; OVERFLOW: hidden; TOP: 67px; LEFT: 50px" id=edit4 tabIndex=9 contentEditable=false elementtype="12" persistentuniqueid="compUid_4" boundtovariable="1" groupChildren="1" height="0" CHECKED="false" indeterminate="false" size="20" start="fileopen" width="0" loop="1" vspace="0" maxLength="2147483647" hspace="0" readOnly="false" columns="1" defaultlocation="27,10,57,400" value="Store" name="edit4">
<TABLE style="WIDTH: 100%; HEIGHT: 100%; COLOR: black; FONT-SIZE: 10pt" contentEditable=false cellSpacing=0 cellPadding=0>
<TBODY>
<TR>
<TD>
<LABEL style="CURSOR: default" id=edit4_LABEL_0 for=edit4_0>
<INPUT id=edit4_0 tabIndex=9 value=Chain type=radio displaytext="Chain" name="edit4">Chain</LABEL></TD></TR>
<TR>
<TD>
<LABEL style="CURSOR: default" id=edit4_LABEL_1 for=edit4_1>
<INPUT id=edit4_1 tabIndex=9 value=Division type=radio displaytext="Division" name="edit4">Division</LABEL></TD></TR>
<TR>
<TD>
<LABEL style="CURSOR: default" id=edit4_LABEL_2 for=edit4_2>
<INPUT id=edit4_2 tabIndex=9 value=Region type=radio displaytext="Region" name="edit4">Region</LABEL></TD></TR>
<TR>
<TD>
<LABEL style="CURSOR: default" id=edit4_LABEL_3 for=edit4_3>
<INPUT id=edit4_3 tabIndex=9 value=District type=radio displaytext="District" name="edit4">District</LABEL></TD></TR>
<TR>
<TD>
<LABEL style="CURSOR: default" id=edit4_LABEL_4 for=edit4_4>
<INPUT id=edit4_4 tabIndex=9 value=Store CHECKED type=radio displaytext="Store" name="edit4">Store</LABEL></TD></TR></TBODY></TABLE></SPAN>
<INPUT style="Z-INDEX: 17; POSITION: absolute; TEXT-ALIGN: center; WIDTH: 70px; FONT-FAMILY: Arial; HEIGHT: 25px; COLOR: red; FONT-SIZE: 10pt; TOP: 110px; FONT-WEIGHT: bold; LEFT: 130px" id=edit6 tabIndex=13 value=11 hspace=0 persistentuniqueid="compUid_6" boundtovariable="1" name="edit6"> 
<INPUT style="Z-INDEX: 17; POSITION: absolute; TEXT-ALIGN: center; WIDTH: 70px; FONT-FAMILY: Arial; HEIGHT: 25px; COLOR: red; FONT-SIZE: 10pt; TOP: 130px; FONT-WEIGHT: bold; LEFT: 130px" id=edit7 tabIndex=15 value=11 hspace=0 size=22 persistentuniqueid="compUid_7" boundtovariable="1" name="edit7"> 
<INPUT style="Z-INDEX: 17; POSITION: absolute; TEXT-ALIGN: center; WIDTH: 70px; FONT-FAMILY: Arial; HEIGHT: 25px; COLOR: red; FONT-SIZE: 10pt; TOP: 150px; FONT-WEIGHT: bold; LEFT: 130px" id=edit8 tabIndex=17 value=115 hspace=0 persistentuniqueid="compUid_8" boundtovariable="1" name="edit8"> 
<LABEL style="Z-INDEX: 8; POSITION: absolute; TEXT-ALIGN: right; WIDTH: 51px; FONT-FAMILY: Arial; HEIGHT: 20px; COLOR: black; FONT-SIZE: 10pt; TOP: 180px; CURSOR: default; LEFT: 80px" id=label9 tabIndex=18 for=edit9>Year:</LABEL> 
<INPUT style="Z-INDEX: 17; POSITION: absolute; TEXT-ALIGN: center; WIDTH: 70px; FONT-FAMILY: Arial; HEIGHT: 25px; COLOR: red; FONT-SIZE: 10pt; TOP: 180px; FONT-WEIGHT: bold; LEFT: 130px" id=edit9 tabIndex=19 value=2011 hspace=0 size=3 persistentuniqueid="compUid_9" boundtovariable="1" name="edit9"> 
<LABEL style="Z-INDEX: 8; POSITION: absolute; TEXT-ALIGN: right; WIDTH: 61px; FONT-FAMILY: Arial; HEIGHT: 20px; COLOR: black; FONT-SIZE: 10pt; TOP: 200px; CURSOR: default; LEFT: 70px" id=label10 tabIndex=20 for=edit10>Week:</LABEL> 
<INPUT style="Z-INDEX: 17; POSITION: absolute; TEXT-ALIGN: center; WIDTH: 70px; FONT-FAMILY: Arial; HEIGHT: 25px; COLOR: red; FONT-SIZE: 10pt; TOP: 200px; FONT-WEIGHT: bold; LEFT: 130px" id=edit10 tabIndex=21 value=26 hspace=0 size=28 persistentuniqueid="compUid_10" boundtovariable="1" name="edit10"> 
<IFRAME style="Z-INDEX: 0; POSITION: absolute; WIDTH: 1195px; HEIGHT: 945px; TOP: 40px; LEFT: 240px" id=iframe1 tabIndex=22 src="" frameBorder=no autoExecute="False" WIDTHOLD="1195" HEIGHTOLD="945" name="iframe1"></IFRAME>
<INPUT style="POSITION: absolute; TOP: -50px; LEFT: -100px" id=IBIMR_dir value=#i6y5avrnq0m1 type=hidden persistentuniqueid="compUid_12" name="IBIMR_dir"> 
<INPUT style="Z-INDEX: 19; BORDER-BOTTOM: thin outset; POSITION: absolute; TEXT-ALIGN: center; BORDER-LEFT: thin outset; WIDTH: 150px; FONT-FAMILY: arial; HEIGHT: 30px; COLOR: black; FONT-SIZE: 10pt; BORDER-TOP: thin outset; TOP: 700px; FONT-WEIGHT: bold; BORDER-RIGHT: thin outset; LEFT: 50px" id=button2 language=javascript tabIndex=23 onclick=button2_onclick(this) value="A New Window" size=1 type=button requests_list="10" name="button2"> 
<SPAN style="Z-INDEX: 23; POSITION: absolute; TEXT-ALIGN: right; WIDTH: 120px; FONT-FAMILY: arial; HEIGHT: 20px; COLOR: black; FONT-SIZE: 10pt; TOP: 20px; LEFT: 1310px" id=ITEM1 tabIndex=27>
<A id=anchor1 href="javascript:OnExecute(null, 'anchor1')" requests_list="8" autoExecute="True" name="anchor1">Documentation</A></SPAN> 
<FIELDSET style="Z-INDEX: 0; POSITION: absolute; WIDTH: 170px; FONT-FAMILY: arial; HEIGHT: 110px; COLOR: black; FONT-SIZE: 10pt; TOP: 630px; FONT-WEIGHT: bold; LEFT: 40px" id=groupbox1>
<LEGEND>
<SPAN style="COLOR: black">Run the Report in</SPAN></LEGEND></FIELDSET> 
<SPAN style="Z-INDEX: 32; POSITION: absolute; OVERFLOW-Y: auto; WIDTH: 100px; FONT-FAMILY: Arial; HEIGHT: 70px; COLOR: black; FONT-SIZE: 10pt; OVERFLOW: hidden; TOP: 520px; LEFT: 90px" id=radio3 tabIndex=35 contentEditable=false elementtype="12" persistentuniqueid="compUid_32" boundtovariable="1" groupChildren="1" columns="1">
<TABLE style="WIDTH: 100%; HEIGHT: 100%; COLOR: black; FONT-SIZE: 10pt" contentEditable=false cellSpacing=0 cellPadding=0>
<TBODY>
<TR>
<TD>
<LABEL style="CURSOR: default" id=radio3_LABEL_0 for=radio3_0>
<INPUT id=radio3_0 tabIndex=35 value=PDF CHECKED type=radio displaytext="PDF">PDF</LABEL></TD></TR>
<TR>
<TD>
<LABEL style="CURSOR: default" id=radio3_LABEL_1 for=radio3_1>
<INPUT id=radio3_1 tabIndex=35 value=EXL2K type=radio displaytext="Excel" name="radio3">Excel</LABEL></TD></TR></TBODY></TABLE></SPAN>
<IMG style="Z-INDEX: 34; POSITION: absolute; TOP: 530px; LEFT: 60px" id=image1 tabIndex=36 border=0 src="app/icon_pdf.bmp" originalHeight="20" originalWidth="20" name="image1">      
<INPUT style="POSITION: absolute; TOP: -100px; LEFT: -100px" id=layoutinfo type=hidden resourcectrlids="image2;image1">
<INPUT style="POSITION: absolute; TOP: -100px; LEFT: -100px" id=IBIMR_domain value=storeope/storeope.htm type=hidden name="IBIMR_domain">
<INPUT style="POSITION: absolute; TOP: -100px; LEFT: -100px" id=IBIMR_folder value=#i6y5avrnq0m1 type=hidden name="IBIMR_folder">
<INPUT style="POSITION: absolute; TOP: -100px; LEFT: -100px" id=ibif_ex value=app/odw_com_launch_page.htm type=hidden name="ibif_ex">
<INPUT style="POSITION: absolute; TOP: -100px; LEFT: -100px" id=ibiapp_app value=storeoperations type=hidden ismre="1" name="ibiapp_app">
<xml id=focus_xmlelement>
<script type="text/xml">
	
<rootxmlnode top="20" left="1041" width="150" height="130">
		
<variables>
			
<variable controltype="7" parametercreatedinreslay="0" type="unresolved" desc="ExtractRequired" name="ExtractRequired" default="N" textvarname="" accept="0" select="0" create="0" top="21" left="1" width="60" height="20" inbinding="0">
				
<link linktype="default">
					
<condition default="1" name="Default" whattodowithcontrol="4" valuescompareoperator="0" parameterscompareoperator="0" conditionmultiselectoperator="0">
						
<data_info displayfield="ExtractRequired" datafield="ExtractRequired" datasource="" datatype="0" selectedvalue="N" operation="" slider_range_from="" slider_range_to="">
							
<static_values>
								
<static value="N" display="N" selected="1"></static></static_values></data_info></condition></link>
				
<requestid id="10"></requestid>
				
<requestid id="9"></requestid></variable>
			
<variable controltype="7" parametercreatedinreslay="0" type="default" desc="WeeklyOrMonthly" name="WeeklyOrMonthly" default="Weekly" textvarname="" accept="0" select="0" create="0">
				
<link linktype="default" from="compUid_2">
					
<condition default="1" name="Default" whattodowithcontrol="4" valuescompareoperator="0" parameterscompareoperator="0" conditionmultiselectoperator="0">
						
<data_info displayfield="WeeklyOrMonthly" datafield="WeeklyOrMonthly" datasource="" datatype="0" selectedvalue="Weekly" operation="" slider_range_from="" slider_range_to="">
							
<static_values>
								
<static value="Weekly" display="Weekly" selected="1"></static></static_values></data_info></condition></link>
				
<requestid id="10"></requestid>
				
<requestid id="9"></requestid></variable>
			
<variable controltype="7" parametercreatedinreslay="0" type="default" desc="MonthlyOption" name="MonthlyOption" default="ALL" textvarname="" accept="0" select="0" create="0" top="396" left="231" width="96" height="20" inbinding="1">
				
<link linktype="default" from="compUid_31">
					
<condition default="1" name="Default" whattodowithcontrol="4" valuescompareoperator="0" parameterscompareoperator="0" conditionmultiselectoperator="0">
						
<data_info displayfield="MonthlyOption" datafield="MonthlyOption" datasource="" datatype="0" selectedvalue="ALL" operation="" slider_range_from="" slider_range_to="" linktype="none">
							
<static_values>
								
<static value="ALL" display="ALL" selected="1"></static></static_values></data_info></condition></link>
				
<requestid id="10"></requestid>
				
<requestid id="9"></requestid></variable>
			
<variable controltype="7" parametercreatedinreslay="0" type="default" desc="RptLvl" name="RptLvl" default="Chain" textvarname="" accept="0" select="0" create="0">
				
<link linktype="default" from="compUid_4">
					
<condition default="1" name="Default" whattodowithcontrol="4" valuescompareoperator="0" parameterscompareoperator="0" conditionmultiselectoperator="0">
						
<data_info displayfield="RptLvl" datafield="RptLvl" datasource="" datatype="0" selectedvalue="Chain" operation="" slider_range_from="" slider_range_to="" linktype="none">
							
<static_values>
								
<static value="Chain" display="Chain" selected="1"></static></static_values></data_info></condition></link>
				
<requestid id="10"></requestid>
				
<requestid id="9"></requestid></variable>
			
<variable controltype="7" parametercreatedinreslay="0" type="unresolved" desc="DivNmbr" name="DivNmbr" default="1" textvarname="" accept="0" select="0" create="0" top="64" left="133" width="60" height="20" inbinding="1">
				
<link linktype="default" from="compUid_5">
					
<condition default="1" name="Default" whattodowithcontrol="4" valuescompareoperator="0" parameterscompareoperator="0" conditionmultiselectoperator="0">
						
<data_info displayfield="DivNmbr" datafield="DivNmbr" datasource="" datatype="0" selectedvalue="1" operation="" slider_range_from="" slider_range_to="" linktype="none">
							
<static_values>
								
<static value="1" display="1" selected="1"></static></static_values></data_info></condition></link>
				
<requestid id="10"></requestid>
				
<requestid id="9"></requestid></variable>
			
<variable controltype="7" parametercreatedinreslay="0" type="unresolved" desc="RegNmbr" name="RegNmbr" default="11" textvarname="" accept="0" select="0" create="0" top="107" left="400" width="60" height="20" inbinding="1">
				
<link linktype="default" from="compUid_6">
					
<condition default="1" name="Default" whattodowithcontrol="4" valuescompareoperator="0" parameterscompareoperator="0" conditionmultiselectoperator="0">
						
<data_info displayfield="RegNmbr" datafield="RegNmbr" datasource="" datatype="0" selectedvalue="11" operation="" slider_range_from="" slider_range_to="" linktype="none">
							
<static_values>
								
<static value="11" display="11" selected="1"></static></static_values></data_info></condition></link>
				
<requestid id="10"></requestid>
				
<requestid id="9"></requestid></variable>
			
<variable controltype="7" parametercreatedinreslay="0" type="unresolved" desc="DisNmbr" name="DisNmbr" default="11" textvarname="" accept="0" select="0" create="0">
				
<link linktype="default" from="compUid_7">
					
<condition default="1" name="Default" whattodowithcontrol="4" valuescompareoperator="0" parameterscompareoperator="0" conditionmultiselectoperator="0">
						
<data_info displayfield="DisNmbr" datafield="DisNmbr" datasource="" datatype="0" selectedvalue="11" operation="" slider_range_from="" slider_range_to="" linktype="none">
							
<static_values>
								
<static value="11" display="11" selected="1"></static></static_values></data_info></condition></link>
				
<requestid id="10"></requestid>
				
<requestid id="9"></requestid></variable>
			
<variable controltype="7" parametercreatedinreslay="0" type="default" desc="StoreNumber" name="StoreNumber" default="115" textvarname="" accept="0" select="0" create="0" top="222" left="233" width="60" height="20" inbinding="1">
				
<link linktype="default" from="compUid_8">
					
<condition default="1" name="Default" whattodowithcontrol="4" valuescompareoperator="0" parameterscompareoperator="0" conditionmultiselectoperator="0">
						
<data_info displayfield="StoreNumber" datafield="StoreNumber" datasource="" datatype="0" selectedvalue="115" operation="" slider_range_from="" slider_range_to="" linktype="none">
							
<static_values>
								
<static value="115" display="115" selected="1"></static></static_values></data_info></condition></link>
				
<requestid id="9"></requestid></variable>
			
<variable controltype="7" parametercreatedinreslay="0" type="default" desc="Year" name="Year" default="2011" textvarname="" accept="0" select="0" create="1" top="177" left="21" width="60" height="20" inbinding="1">
				
<link linktype="default" from="compUid_9">
					
<condition default="1" name="Default" whattodowithcontrol="4" valuescompareoperator="0" parameterscompareoperator="0" conditionmultiselectoperator="0">
						
<data_info displayfield="Year" datafield="Year" datasource="" datatype="0" selectedvalue="2011" operation="" slider_range_from="" slider_range_to="" linktype="none">
							
<static_values>
								
<static value="2011" display="2011" selected="1"></static></static_values></data_info></condition></link>
				
<requestid id="9"></requestid></variable>
			
<variable controltype="7" parametercreatedinreslay="0" type="default" desc="Week" name="Week" default="26" textvarname="" accept="0" select="0" create="1" top="255" left="345" width="60" height="20" inbinding="1">
				
<link linktype="default" from="compUid_10">
					
<condition default="1" name="Default" whattodowithcontrol="4" valuescompareoperator="0" parameterscompareoperator="0" conditionmultiselectoperator="0">
						
<data_info displayfield="Week" datafield="Week" datasource="" datatype="0" selectedvalue="26" operation="" slider_range_from="" slider_range_to="" linktype="none">
							
<static_values>
								
<static value="26" display="26" selected="1"></static></static_values></data_info></condition></link>
				
<requestid id="9"></requestid></variable>
			
<variable controltype="12" parametercreatedinreslay="0" type="default" desc="WFFMT" name="WFFMT" default="PDF" textvarname="" accept="0" select="0" create="1">
				
<link linktype="default" from="compUid_32">
					
<condition default="1" name="Default" whattodowithcontrol="4" valuescompareoperator="0" parameterscompareoperator="0" conditionmultiselectoperator="0">
						
<data_info displayfield="WFFMT" datafield="WFFMT" datasource="" datatype="0" selectedvalue="PDF" operation="" slider_range_from="" slider_range_to="">
							
<static_values>
								
<static value="PDF" display="PDF" selected="1"></static></static_values></data_info></condition></link>
				
<requestid id="9"></requestid></variable></variables>
		
<input_controls>
			
<input_control bindcontrolid="compUid_2" elementtype="12" requiredfield="0" name="edit2" id="edit2" multiple="0" inbinding="1" onetimepopulated="1" unresolved="0">
				
<link linktype="default">
					
<condition default="1" name="Default" whattodowithcontrol="0" valuescompareoperator="0" parameterscompareoperator="0" conditionmultiselectoperator="0">
						
<data_info datatype="0" datasource="" addalloption="0" sourcetype="typeMaster" cacheruntimedata="0" accept="0" selectedvalue="Weekly" operation="NONE" modifiedrequest="1">
							
<static_values>
								
<static value="Weekly" display="Weekly" selected="1"></static>
								
<static value="Monthly" display="Monthly" selected="0"></static></static_values></data_info></condition></link></input_control>
			
<input_control bindcontrolid="compUid_4" elementtype="12" requiredfield="0" name="edit4" id="edit4" multiple="0" inbinding="1" onetimepopulated="1" unresolved="0">
				
<link linktype="default">
					
<condition default="1" name="Default" whattodowithcontrol="0" valuescompareoperator="0" parameterscompareoperator="0" conditionmultiselectoperator="0">
						
<data_info datatype="0" datasource="" addalloption="0" sourcetype="typeMaster" cacheruntimedata="0" accept="0" selectedvalue="Store" operation="NONE" modifiedrequest="1">
							
<static_values>
								
<static value="Chain" display="Chain" selected="0"></static>
								
<static value="Division" display="Division" selected="0"></static>
								
<static value="Region" display="Region" selected="0"></static>
								
<static value="District" display="District" selected="0"></static>
								
<static value="Store" display="Store" selected="1"></static></static_values></data_info></condition></link></input_control>
			
<input_control bindcontrolid="compUid_5" elementtype="7" requiredfield="0" name="edit5" id="edit5" multiple="0" inbinding="1" onetimepopulated="1" top="23" left="142" width="60" height="20" unresolved="0">
				
<link linktype="default">
					
<condition default="1" name="Default" whattodowithcontrol="0" valuescompareoperator="0" parameterscompareoperator="0" conditionmultiselectoperator="0">
						
<data_info datatype="0" datasource="" addalloption="0" sourcetype="typeMaster" cacheruntimedata="0" accept="0" selectedvalue="1" operation="NONE">
							
<static_values>
<static value="1" display="1" selected="1"></static></static_values></data_info></condition></link></input_control>
			
<input_control bindcontrolid="compUid_6" elementtype="7" requiredfield="0" name="edit6" id="edit6" multiple="0" inbinding="1" onetimepopulated="1" top="65" left="398" width="60" height="20" unresolved="0">
				
<link linktype="default">
					
<condition default="1" name="Default" whattodowithcontrol="0" valuescompareoperator="0" parameterscompareoperator="0" conditionmultiselectoperator="0">
						
<data_info datatype="0" datasource="" addalloption="0" sourcetype="typeMaster" cacheruntimedata="0" accept="0" selectedvalue="11" operation="NONE">
							
<static_values>
<static value="11" display="11" selected="1"></static></static_values></data_info></condition></link></input_control>
			
<input_control bindcontrolid="compUid_7" elementtype="7" requiredfield="0" name="edit7" id="edit7" multiple="0" inbinding="1" onetimepopulated="1" top="123" left="123" width="60" height="20" unresolved="0">
				
<link linktype="default">
					
<condition default="1" name="Default" whattodowithcontrol="0" valuescompareoperator="0" parameterscompareoperator="0" conditionmultiselectoperator="0">
						
<data_info datatype="0" datasource="" addalloption="0" sourcetype="typeMaster" cacheruntimedata="0" accept="0" selectedvalue="11" operation="NONE">
							
<static_values>
<static value="11" display="11" selected="1"></static></static_values></data_info></condition></link></input_control>
			
<input_control bindcontrolid="compUid_8" elementtype="7" requiredfield="0" name="edit8" id="edit8" multiple="0" inbinding="1" onetimepopulated="1" top="178" left="235" width="60" height="20" unresolved="0">
				
<link linktype="default">
					
<condition default="1" name="Default" whattodowithcontrol="0" valuescompareoperator="0" parameterscompareoperator="0" conditionmultiselectoperator="0">
						
<data_info datatype="0" datasource="" addalloption="0" sourcetype="typeMaster" cacheruntimedata="0" accept="0" selectedvalue="115" operation="NONE">
							
<static_values>
<static value="115" display="115" selected="1"></static></static_values></data_info></condition></link></input_control>
			
<input_control bindcontrolid="compUid_9" elementtype="7" requiredfield="0" name="edit9" id="edit9" multiple="0" inbinding="1" top="127" left="21" width="60" height="20" onetimepopulated="1" unresolved="0">
				
<link linktype="default">
					
<condition default="1" name="Default" whattodowithcontrol="0" valuescompareoperator="0" parameterscompareoperator="0" conditionmultiselectoperator="0">
						
<data_info datatype="0" datasource="" addalloption="0" sourcetype="typeMaster" cacheruntimedata="0" accept="0" selectedvalue="2011" operation="NONE">
							
<static_values>
<static value="2011" display="2011" selected="1"></static></static_values></data_info></condition></link></input_control>
			
<input_control bindcontrolid="compUid_10" elementtype="7" requiredfield="0" name="edit10" id="edit10" multiple="0" inbinding="1" onetimepopulated="1" top="205" left="345" width="60" height="20" unresolved="0">
				
<link linktype="default">
					
<condition default="1" name="Default" whattodowithcontrol="0" valuescompareoperator="0" parameterscompareoperator="0" conditionmultiselectoperator="0">
						
<data_info datatype="0" datasource="" addalloption="0" sourcetype="typeMaster" cacheruntimedata="0" accept="0" selectedvalue="26" operation="NONE">
							
<static_values>
<static value="26" display="26" selected="1"></static></static_values></data_info></condition></link></input_control>
			
<input_control bindcontrolid="compUid_12" elementtype="26" name="IBIMR_dir" id="IBIMR_dir" multiple="0" onetimepopulated="1" inbinding="1" unresolved="0">
				
<link linktype="default">
					
<condition default="1" name="Default" whattodowithcontrol="0" valuescompareoperator="0" parameterscompareoperator="0" conditionmultiselectoperator="0">
						
<data_info accept="0" sourcetype="typeMaster">
							
<static_values>
<static value="#i6y5avrnq0m1" display="#i6y5avrnq0m1" selected="1"></static></static_values></data_info></condition></link></input_control>
			
<input_control bindcontrolid="compUid_31" onetimepopulated="1" name="radio4" id="radio4" multiple="1" inbinding="1" unresolved="0" top="340" left="249" width="60" height="20">
				
<link linktype="default">
					
<condition default="1" name="Default" whattodowithcontrol="0" valuescompareoperator="0" parameterscompareoperator="0" conditionmultiselectoperator="0">
						
<data_info datasource="" displayfield="" datafield="" datatype="0" sourcetype="typeMaster" selectedvalue="ALL" accept="0" addalloption="0" modifiedrequest="1" operation="NONE">
							
<![CDATA[]]>
							
<static_values>
								
<static value="All" display="All" selected="1"></static>
								
<static value="Comp" display="Comp" selected="0"></static>
								
<static value="NonCpmp" display="NonCpmp" selected="0"></static>
								
<static value="Closed" display="Closed" selected="0"></static>
								
<static value="Overhead" display="Overhead Expense" selected="0"></static></static_values></data_info></condition></link></input_control>
			
<input_control bindcontrolid="compUid_32" elementtype="12" requiredfield="0" name="radio3" id="radio3" multiple="0" onetimepopulated="1" inbinding="1">
				
<link linktype="default">
					
<condition default="1" name="Default" whattodowithcontrol="0" valuescompareoperator="0" parameterscompareoperator="0" conditionmultiselectoperator="0">
						
<data_info datatype="0" datasource="" addalloption="0" sourcetype="typeMaster" cacheruntimedata="0" accept="0" selectedvalue="PDF" operation="NONE" modifiedrequest="1">
							
<static_values>
								
<static value="PDF" display="PDF" selected="1"></static>
								
<static value="EXL2K" display="Excel" selected="0"></static></static_values></data_info></condition></link></input_control></input_controls>
		
<other_bound_objects></other_bound_objects>
		
<requests nextrequestsid="10">
			
<request requestid="7" sourcetype="typeHtml" targettype="iframe" targetname="iframe1" ibif_ex="app/odw_com_print_multiple_reports.htm" IBIMR_domain="storeope/storeope.htm" IBIMR_folder="#i6y5avrnq0m1" IBIMR_sub_action="MR_STD_REPORT" activereport="0" reportcolumns="" ibiapp_app="storeoperations"></request>
			
<request requestid="8" sourcetype="typeHtml" targettype="iframe" targetname="iframe1" ibif_ex="app/odw_com_documentation.htm" IBIMR_domain="storeope/storeope.htm" IBIMR_folder="#i6y5avrnq0m1" IBIMR_sub_action="MR_STD_REPORT" activereport="0" reportcolumns="" ibiapp_app="storeoperations"></request>
			
<request requestid="9" sourcetype="typeFex" targettype="iframe" targetname="iframe1" ibif_ex="app/odw_com_store_operations_reports.fex" IBIMR_domain="storeope/storeope.htm" IBIMR_folder="#i6y5avrnq0m1" IBIMR_sub_action="MR_STD_REPORT" activereport="0" reportcolumns="" ibiapp_app="storeoperations"></request>
			
<request requestid="10" sourcetype="typeFex" targettype="window" targetname="_blank" ibif_ex="app/odw_com_store_operations_reports.fex" IBIMR_domain="storeope/storeope.htm" IBIMR_folder="#i6y5avrnq0m1" IBIMR_sub_action="MR_STD_REPORT" activereport="0" reportcolumns="" ibiapp_app="storeoperations"></request></requests></rootxmlnode></script>
</xml></BODY>
<SCRIPT id=IBI_loader type=text/javascript>
doBeforeLoad();
</SCRIPT>
</HTML>




   In FOCUS Since 1983 ~ from FOCUS to WebFOCUS.
   Current: WebFOCUS Administrator at FIS Worldpay | 8204, 8206
 
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005Report This Post
Expert
posted Hide Post
What is interesting is that you have a true reset button.
<INPUT style="Z-INDEX: 36; BORDER-BOTTOM: thin outset; POSITION: absolute; BORDER-LEFT: thin outset; WIDTH: 150px;
FONT-FAMILY: Arial; HEIGHT: 30px; COLOR: black; FONT-SIZE: 10pt; BORDER-TOP: thin outset; TOP: 740px; FONT-WEIGHT: bold;
BORDER-RIGHT: thin outset; LEFT: 40px" id=reset1 tabIndex=38 value=Reset size=60 type=reset name="reset1">


Could this be a browser issue ?, or is IBI's code doing something else behind the scenes.


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!

 
Posts: 6347 | Location: 33°49'23.0"S, 151°11'41.0"E | Registered: October 31, 2006Report This Post
Platinum Member
posted Hide Post
Doug,
What version of webFOCUS are you currently using?? I ran into an issue with a push button (Submit Button) in version 7.6.9 that the necessary javascript that makes the button work was not being placed into the HTML code. IBI stated they had a hot fix (#9 I think) for this issue for this version. Another item mentioned was the Java version could also impact the functionality of webFOCUS since they do not support the latest and greatest Java (1.6.0_17 is currently supported by webFOCUS). My company does a lot of updates and upgrades from the Browser version, Java, webFOCUS, etc. so I am always encountering new issues. If you are on 7.6.9 check for the hot fix #9, check your current Java version against what IBI supports 1.6.0_17, if you are in IE8 make sure your version of webFOCUS is compatible with IE8.

ERIN


WebFOCUS 7.6.9

Reporting client Windows 2003 Service pack 2 using IIS and TomCat 5.5
Reporting Server OS/400 V5R4M0
Outputs: HTML, Excel, PDF, CSV, and Flat Files
 
Posts: 130 | Location: Columbus, Ohio | Registered: February 25, 2009Report This Post
Expert
posted Hide Post
What version of WebFOCUS are you currently using? WebFOCUS 7.6.11.
Java: Java 2 Platform Standard Edition / Version 1.5.0 (build1.5.0_11-b03)

So, the root cause is probably a combo of Java and IE. Not to mention a mix in the WebFOCUS environment: a mix of Unix and Windows.

Other things don't "work as designed" such as the "Waiting message" and animated gif during htm page initialization (just to name one).




   In FOCUS Since 1983 ~ from FOCUS to WebFOCUS.
   Current: WebFOCUS Administrator at FIS Worldpay | 8204, 8206
 
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005Report This Post
Expert
posted Hide Post
Did you install ALL the HotFixes? There are 7... We had to install as the HTML calendar parameter was not passing the delimiter - '/', FYI...

7.6.11 HotFix Info


Tom Flynn
WebFOCUS 8.1.05 - PROD/QA
DB2 - AS400 - Mainframe
 
Posts: 1972 | Location: Centennial, CO | Registered: January 31, 2006Report This Post
Expert
posted Hide Post
Very interesting... And, thanks for bringing that up. I'll check with our Admin...

This message has been edited. Last edited by: Doug,
 
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005Report This Post
Expert
posted Hide Post
Everything is up to date... All hotfixes installed. It's loking like it's more of a Java version issue... I'll close this for now and repost if need be.
 
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005Report This Post
Expert
posted Hide Post
I found this underlying issue causing this problem. The "Composer (Layout)" neglected to add "CHECKED" to the defaulted value for that control (radio button).

I'm posting this so that I can find it the next time I fuhgeddaboudit.

The question still remains: Why?
 
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005Report This Post
Expert
posted Hide Post
Did you let IBI know ?


Waz...

Prod:WebFOCUS 7.6.10/8.1.04Upgrade:WebFOCUS 8.2.07OS:LinuxOutputs:HTML, PDF, Excel, PPT
In Focus since 1984
Pity the lost knowledge of an old programmer!

 
Posts: 6347 | Location: 33°49'23.0"S, 151°11'41.0"E | Registered: October 31, 2006Report This Post
Expert
posted Hide Post
I sure will... Thanks for the reminder... And I changed this from CLOSED to WORKAROUND...
 
Posts: 3132 | Location: Tennessee, Nashville area | Registered: February 23, 2005Report This Post
Member
posted Hide Post
Please let me know if Java 1.7 is compatible with webfocus 7611.Our current version of webfocus and reportcaster is 7611 and we are using java 1.6.0 on our webfocus servers and java 1.632(Version 6 update 32) on our local machine.Everything works fine.Now we are asked to upgrdae for java to version 1.7.I am not able to access Webfocus applet and Reportcaster with this new version.Is this a java version issue...Please help


WebFOCUS 7.6
Windows, All Outputs
 
Posts: 10 | Registered: September 14, 2011Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [WORK AROUND] Reset Buttons blanks out radio buttons

Copyright © 1996-2020 Information Builders