populate textbox when radio button selected [message #1063845] |
Fri, 14 June 2013 09:09  |
Eclipse User |
|
|
|
Hi,birt am currently doing report with Radio button and text box i.e
how to populate textbox when radio button selected and i have to pass some text in text box and it have to get result of parameter for charts
for example
i )country is Radio button if i select then TextBox have to populate in that i will pass a "india" so it have to produce a total sale of that country
ii)City is Radio button if i select then TextBox have to populate in that i will pass a "Tamil nadu" so it have to produce a total sale of that City
and then while i enter some text in text box it have to auto search a word in it....
how can i pass parameter for this type Report?
my jsp file:
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<%@ taglib uri="/birt.tld" prefix="birt" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<script type="text/javascript" language="Javascript">
function radioWithText(d)
{
document.getElementById('country').style.display = "none";
document.getElementById('state').style.display = "none";
document.getElementById('city').style.display = "none";
document.getElementById(d).style.display='inline';
}
</script>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body>
<form name="radiowithtexbox">
Country<input type="Radio" name="radio2text" value="Radiobutton1"
onclick="javascript:radioWithText('country')" checked="checked" />
State<input type="Radio" name="radio2text" value="Radiobutton2"
onclick="javascript:radioWithText('state')" unchecked />
City<input type="Radio" name="radio2text" value="Radiobutton2"
onclick="javascript:radioWithText('city')" unchecked />
<div id="country" style="display:visible;">
<br>COUNTRY<input type="Text" name="A">
</div>
<div id="state" style="display:none;">
<br>STATE<input type="Text" name="B">
</div>
<div id="city" style="display:none;">
<br>CITY<input type="Text" name="C">
</div>
</form>
<birt:parameterPage
id="report1"
name="page1"
reportDesign="cascade.rptdesign"
isCustom="true"
pattern="run">
<birt:paramDef id="1" name="geography" style="display:none"/> </br>
Metrics:
<birt:paramDef id="2" name="MeasureToShow" />
</br>
<input type="Submit" value="Run Report" >
</birt:parameterPage>
</body>
</html>
here i attached a birt report
so can u provide a solution for this by correcting my report
thank u in advance
|
|
|
|
|
|
Re: populate textbox when radio button selected [message #1064670 is a reply to message #1064577] |
Thu, 20 June 2013 09:29   |
Eclipse User |
|
|
|
thank u for reply.....sir,i have to customize report as shown in attached image and i attached a jsp and report design in sample db here for u r reference
for example :
one set of radio button and populate a list box or text box
item wise ---->A,B,C,D,E
main type---->A,b,c,d
another set of radio button and populate a list box or text box
country-->A,B,C,D,E
city---->A,B,C,D,E
if i select A From ITEM WISE and then I select B from COUNTRY result will be produced
and then again if i select A From ITEM WISE and then I select B from city result will be produced----
i have thought to pass parameter by url or by on click event but am struggling a lot
my question is how to pass parameter for this report in custom parameter page to hide/show the appropriate one based on the radio button value.
can u provide solution for this by correcting my jsp
thank u in advance
[Updated on: Thu, 20 June 2013 10:04] by Moderator
|
|
|
|
|
|
Re: populate textbox when radio button selected [message #1065869 is a reply to message #1065799] |
Fri, 28 June 2013 01:01   |
Eclipse User |
|
|
|
thank u for reply .....sir if u look at that screenshot they are option like
i)item type, ii)main group, iii)sub group---as first separate parameter group
and then i have
i)Country ii) state iii) city ---> as second separate parameter group
suppose A)if i have to select a Radio button item type and then i can randomly select any Radio button from second separate parameter group result will be produce according to it..
B)if i have to select a Radio button main group and then i can randomly select any Radio button from second separate parameter group result will be produce according to it...
my query is :
SELECT distinct to_char(TRAN_DATE,'mm') as month,
TRAN_DATE,COUNTRY_NAME ,ZONE_NAME,STATE_NAME,CITY_NAME,area_manager,OUTLET_NAME,
GROUP_name,
SUB_GROUP_name,
ITEM_NAME,
sum(qty),sum(AMOUNT)
FROM OUTLET_ITEMWISE_FACT_BACK A,OUTLET_DETAILS B,WEB_ITEM_MASTER C
WHERE
A.OUTLET_ID=B.OUTLET_ID AND
A.ITEM_CODE=C.ITEM_CODE
group by COUNTRY_NAME,ZONE_NAME,STATE_NAME,CITY_NAME,OUTLET_NAME,ITEM_NAME,
SUB_GROUP_name,GROUP_name,area_manager,TRAN_DATE
so my question how can i Design the report and how to pass parameter in report
and how can i call in jsp....am struggling a lot for this report..
kindly provide sample report and jsp for this ..... at least for one option..
thank in advance
[Updated on: Fri, 28 June 2013 09:07] by Moderator
|
|
|
|
|
|
Powered by
FUDForum. Page generated in 0.05189 seconds