Additional Pageflow - JavaScript Questions

I was hoping someone (bea employee???) could answer a couple more JavaScript questions
for me?? First one is how do I (can I) do something similar to what John Rohrlich
(see below) suggested inside a netui-data:grid tag? Among other things that didn't
workI tried this:
<netui-data:anchorColumn action="deleteUsr" title="">
<netui:anchor action="deleteUsr" onClick="return confirmDelete('user', {container.item.usr_nm}
); return false;">
Drop
<netui:parameter name="userToDrop" value="{container.item.usr_nm}" />
</netui:anchor>
</netui-data:anchorColumn>
From this snippet you might be able to guess what my next question is. Is there
a way to render a variable inside the onClick value? I have tried a number of
things to no avail, stuff like:
<netui-data:getData resultId="thisId" value="{container.item.userId}" />
<netui:anchor action="dropUser" onClick="return confirmDelete('user', '<%=(String)pageContext.getAttribute("thisId");%>');
return false;">
BTW this is in a repeater I have else ware in my code. I would really like to
convert everything to grids to get the sorting, filtering and paging capabilities.
I would like to be able to pass the parameter to my JavaScript so the user has
a little more info on what he is dropping - here is the script:
function confirmDelete(){
//arg 1 would be the record type i.e. "user"
//arg 2 would be the key identifier i.e. "Fred"
var question = "Are you sure you want to drop this record?";
var argNum = confirmDelete.arguments.length;
if (argNum == 1){
question = "Are you sure you want to drop this "+confirmDelete.arguments[0]+"?";
else if (argNum == 2){
question = "Are you sure you want to drop the "+confirmDelete.arguments[0]+"
"+confirmDelete.arguments[1]+"?";
return confirm(question);
Thanks,
John
"John Rohrlich" <[email protected]> wrote:
John,
If you want to put up a confirm dialog before calling an action from
an
anchor it is done as follows.
Here is an example from code of mine that deletes a customer order, if
the
user confirms the delete. I pass the order id as a parameter.
- john
Here is the JavaScript -
function confirmDelete() {
if(confirm('Continue with order delete?'))
return true;
else
return false;
Here is a sample anchor tag -
<netui:anchor action="requestToDeleteOrder" onClick="return
confirmDelete(); return false;">
Delete
<netui:parameter name="orderId" value="{container.item.orderId}"/>
</netui:anchor>

Thanks Eddie, I looked at that reply when you gave it but it didn't give me enough
to go on. You suggested:
<netui-data:expressionColumn title="Show Alert" value="<a href='javascript:alert(12345);return
false;> {container.item.customername}</a>" />
I started a new thread after that one - What is the best way to call a pageflow
action from JavaScript? Guess I was sort of beating around the bush on this. Can
you see where I was going? If I use the method you describe above how do I call
my dropUser pageflow action if the user confirms the drop in the java dialog?
Thanks, John
Eddie O'Neil <[email protected]> wrote:
John--
You might check an earlier response about this from a different thread.
"Re: Confirmation dialog w/netui:anchor and netui-data:anchorColumn"
on
1/28/2004.
It's possible to do though not intentional; the 8.1 grid wasn't
really designed to do this.
The NetUI team is certainly aware of the limitations with using this
version of the grid and is working to address said limitations with a
much improved tag set in v9. If you have additional feedback on
features you'd like to see, please feel free to send them along --
including your top 10 (or whatever!) reasons not to use the grid. :)
In the meantime, depending on what you need to do, the repeater may
suit your needs well, though you may need to do some work to implement
sort / filter logic.
Hope that helps.
Eddie
John H wrote:
So what you are telling me is that a cant do somthing as simple aspop up a confirmation
when using a grid? That really stinks if that is the case. I am thinkingI need
to write up "Top ten reasons not to use a grid." Thanks for the repeatercode.
"John Rohrlich" <[email protected]> wrote:
John,
The grid doesn't support event handlers like onClick but I have included
code here to show you how to pass parameters to your javaScript event
handler when using the repeater. Let me know if you have any questions
about
the code.
Most of the code is standard repeater code. The interesting code is
below
(also see my code comments). I have also attached the full jsp fileand
the
jpf file you need to try my example.
- john
<script language="JavaScript">
function confirmDelete(phrase) {
if(confirm(phrase))
return true;
else
return false;
</script>
<netui-data:repeater dataSource="{pageInput.orders}" defaultText="No
orders">
<netui-data:repeaterItem>
<tr valign="top">
<td>
<netui:label value="{container.item.orderId}"
defaultValue=" "></netui:label>
</td>
<!-- You can't bind data to onClick so you need to build
a
string. -->
<!-- The string will be the function call with the
parameters you are passing. -->
<!-- Here is the building of the string -->
<netui-data:getData resultId="orderId"
value="{container.item.orderId}" />
<%
String somePhrase = "Do you want to delete item " +
pageContext.getAttribute("orderId") + "?";
String foo = "return confirmDelete(\'" + somePhrase+
return false";
%>
<td>
<netui:anchor action="requestToDeleteOrder"
onClick="<%=foo%>" >
Delete
<netui:parameter name="orderId"
value="{container.item.orderId}"/>
</netui:anchor>
</td>
</tr>
</netui-data:repeaterItem>
"John H" <[email protected]> wrote in message
news:[email protected]...
I was hoping someone (bea employee???) could answer a couple moreJavaScript questions
for me?? First one is how do I (can I) do something similar to whatJohn
Rohrlich
(see below) suggested inside a netui-data:grid tag? Among other thingsthat didn't
workI tried this:
<netui-data:anchorColumn action="deleteUsr" title="">
<netui:anchor action="deleteUsr" onClick="return confirmDelete('user',{container.item.usr_nm}
); return false;">
Drop
<netui:parameter name="userToDrop" value="{container.item.usr_nm}"/>
</netui:anchor>
</netui-data:anchorColumn>
From this snippet you might be able to guess what my next questionis. Is
there
a way to render a variable inside the onClick value? I have trieda
number of
things to no avail, stuff like:
<netui-data:getData resultId="thisId" value="{container.item.userId}"/>
<netui:anchor action="dropUser" onClick="return confirmDelete('user','<%=(String)pageContext.getAttribute("thisId");%>');
return false;">
BTW this is in a repeater I have else ware in my code. I would reallylike to
convert everything to grids to get the sorting, filtering and pagingcapabilities.
I would like to be able to pass the parameter to my JavaScript sothe
user has
a little more info on what he is dropping - here is the script:
function confirmDelete(){
//arg 1 would be the record type i.e. "user"
//arg 2 would be the key identifier i.e. "Fred"
var question = "Are you sure you want to drop this record?";
var argNum = confirmDelete.arguments.length;
if (argNum == 1){
question = "Are you sure you want to drop this"+confirmDelete.arguments[0]+"?";
else if (argNum == 2){
question = "Are you sure you want to drop the"+confirmDelete.arguments[0]+"
"+confirmDelete.arguments[1]+"?";
return confirm(question);
Thanks,
John
"John Rohrlich" <[email protected]> wrote:
John,
If you want to put up a confirm dialog before calling an action
from
an
anchor it is done as follows.
Here is an example from code of mine that deletes a customer order,if
the
user confirms the delete. I pass the order id as a parameter.
- john
Here is the JavaScript -
function confirmDelete() {
if(confirm('Continue with order delete?'))
return true;
else
return false;
Here is a sample anchor tag -
<netui:anchor action="requestToDeleteOrder" onClick="return
confirmDelete(); return false;">
Delete
<netui:parameter name="orderId" value="{container.item.orderId}"/>
</netui:anchor>

Similar Messages

  • Creating a Survey - Novice Javascript Question

    Hello,
    I am extrememely new to Javascript.  I have been doing some research online and copy/pasting code to create the results I need.  I am trying to create an online survey in Dreamweaver in which users select buttons to answer questions and then the total results appear at the bottom of the survey.  So far this is what I have:
    http://sicolaconsulting.com/SurveyTest4.php
    The problem I have with this is that on each line, a user can select more than one box.  I don't want this so I thought radio buttons would be better.  I then came up with this:
    http://sicolaconsulting.com/SurveyTest3.php
    The problem with this is that with the function I am using, I can only get it to display the value of the first line.  I need it to calculate the sum of all the lines.
    Can you help me revise the script I have to get my desired result.
    Here is my code for the first page, followed by the code for the second page.  THANK YOU!
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <title>Survey</title>
    <style type="text/css">
    body,td,th {
              font-family: Tahoma, Geneva, sans-serif;
    </style>
    <link href="stylesheets/SCG_Styles.css" rel="stylesheet" type="text/css" />
    <title>Survey</title>
    <script type="text/javascript">
              function TotalPart1A() {
                        document.survey.Total1A.value = '';
                        var sum = 0;
                        for (i=0;i<document.survey.Part1A.length;i++) {
                          if (document.survey.Part1A[i].checked) {
                                    sum = sum + parseInt(document.survey.Part1A[i].value);
                        document.survey.Total1A.value = sum;
    </script>
    <link href="stylesheets/SCG_Styles.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="wrapper"><br />
      <div id="survey-header"><strong>Purpose:</strong><br />
        The Learning Style Survey assesses your general approach to learning. <br />
        It does not predict your behavior, but it is a clear indication of your overall style preferences.<br />
        <br />
        <strong>Instructions:</strong><br />
        For each item circle the response that represents your approach. Complete all items. <br />
        There are eleven major activities representing twelve different aspects of your learning style. <br />
        When you read the statements, try to think about what you generally do when learning. <br />
        <br />
        <strong>Time:</strong><br />
        It takes about 30 minutes to complete the survey. Do not spend too much time on any item. Indicate your immediate response (or feeling) and move on to the next item. <br />
        <br />
        <strong>For each item, enter your immediate response:<br />
          0 = Never  1 = Rarely  2 = Sometimes  3 = Often  4 = Always</strong><br />
      </div>
              <div id="survey">
    <form name="survey">
              <div id="survey-section1">
                    <table class="survey-table" cellspacing="0" width="812">
                      <tr>
                        <td height="24" colspan="2" align="left" bgcolor="#CCCCCC"><strong>Part 1: How I Use My Physical Senses</strong></td>
                        <td height="24" align="center" bgcolor="#CCCCCC"><strong>1</strong></td>
                        <td height="24" align="center" bgcolor="#CCCCCC"><strong>2</strong></td>
                        <td height="24" align="center" bgcolor="#CCCCCC"><strong>3</strong></td>
                        <td height="24" align="center" bgcolor="#CCCCCC"><strong>4</strong></td>
                        </tr>
                      <tr>
                        <td width="31" height="27">1</td>
                        <td width="515" align="left">I remember something better if I write it down.</td>
                        <td width="60"><input type="checkbox" name="Part1A" value="1" onchange="TotalPart1A()"/></td>
                        <td width="60"><input type="checkbox" name="Part1A" value="2" onchange="TotalPart1A()"/></td>
                        <td width="60"><input type="checkbox" name="Part1A" value="3" onchange="TotalPart1A()"/></td>
                        <td width="60"><input type="checkbox" name="Part1A" value="4" onchange="TotalPart1A()"/></td>
                        </tr>
                      <tr>
                        <td width="31" bgcolor="#EAEAEA">2</td>
                        <td height="27" align="left" bgcolor="#EAEAEA"> I take detailed notes during lectures.</td>
                        <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="1" onchange="TotalPart1A()"/></td>
                        <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="2" onchange="TotalPart1A()"/></td>
                        <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="3" onchange="TotalPart1A()"/></td>
                        <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="4" onchange="TotalPart1A()"/></td>
                        </tr>
                      <tr>
                        <td>3</td>
                        <td height="27" align="left">When I listen, I visualize pictures, numbers, or words in my head.</td>
                        <td><input type="checkbox" name="Part1A" value="1" onchange="TotalPart1A()"/></td>
                        <td><input type="checkbox" name="Part1A" value="2" onchange="TotalPart1A()"/></td>
                        <td><input type="checkbox" name="Part1A" value="3" onchange="TotalPart1A()"/></td>
                        <td><input type="checkbox" name="Part1A" value="4" onchange="TotalPart1A()"/></td>
                        </tr>
                      <tr>
                        <td bgcolor="#EAEAEA">4</td>
                        <td height="27" align="left" bgcolor="#EAEAEA"> I prefer to learn with TV or video rather than other media. </td>
                        <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="1" onchange="TotalPart1A()"/></td>
                        <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="2" onchange="TotalPart1A()"/></td>
                        <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="3" onchange="TotalPart1A()"/></td>
                        <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="4" onchange="TotalPart1A()"/></td>
                        </tr>
                      <tr>
                        <td>5</td>
                        <td height="27" align="left"> I use color coding to help me as I learn to work.</td>
                        <td><input type="checkbox" name="Part1A" value="1" onchange="TotalPart1A()"/></td>
                        <td><input type="checkbox" name="Part1A" value="2" onchange="TotalPart1A()"/></td>
                        <td><input type="checkbox" name="Part1A" value="3" onchange="TotalPart1A()"/></td>
                        <td><input type="checkbox" name="Part1A" value="4" onchange="TotalPart1A()"/></td>
                        </tr>
                      <tr>
                        <td bgcolor="#EAEAEA">6</td>
                        <td height="27" align="left" bgcolor="#EAEAEA"> I need written directions for tasks.</td>
                        <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="1" onchange="TotalPart1A()"/></td>
                        <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="2" onchange="TotalPart1A()"/></td>
                        <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="3" onchange="TotalPart1A()"/></td>
                        <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="4" onchange="TotalPart1A()"/></td>
                        </tr>
                      <tr>
                        <td>7</td>
                        <td height="27" align="left"> I have to look at people to understand what they say.</td>
                        <td><input type="checkbox" name="Part1A" value="1" onchange="TotalPart1A()"/></td>
                        <td><input type="checkbox" name="Part1A" value="2" onchange="TotalPart1A()"/></td>
                        <td><input type="checkbox" name="Part1A" value="3" onchange="TotalPart1A()"/></td>
                        <td><input type="checkbox" name="Part1A" value="4" onchange="TotalPart1A()"/></td>
                        </tr>
                      <tr>
                        <td bgcolor="#EAEAEA">8</td>
                        <td height="27" align="left" bgcolor="#EAEAEA">I understand lecturers better when they write on the board.</td>
                        <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="1" onchange="TotalPart1A()"/></td>
                        <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="2" onchange="TotalPart1A()"/></td>
                        <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="3" onchange="TotalPart1A()"/></td>
                        <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="4" onchange="TotalPart1A()"/></td>
                        </tr>
                      <tr>
                        <td>9</td>
                        <td height="27" align="left">Charts, diagrams, and maps help me understand what someone says. </td>
                        <td><input type="checkbox" name="Part1A" value="1" onchange="TotalPart1A()"/></td>
                        <td><input type="checkbox" name="Part1A" value="2" onchange="TotalPart1A()"/></td>
                        <td><input type="checkbox" name="Part1A" value="3" onchange="TotalPart1A()"/></td>
                        <td><input type="checkbox" name="Part1A" value="4" onchange="TotalPart1A()"/></td>
                        </tr>
                      <tr>
                        <td bgcolor="#EAEAEA">10</td>
                        <td height="27" align="left" bgcolor="#EAEAEA">I remember people’s faces, but not their names. </td>
                        <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="1" onchange="TotalPart1A()"/></td>
                        <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="2" onchange="TotalPart1A()"/></td>
                        <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="3" onchange="TotalPart1A()"/></td>
                        <td bgcolor="#EAEAEA"><input type="checkbox" name="Part1A" value="4" onchange="TotalPart1A()"/></td>
                        </tr>
                      <tr>
                        <td> </td>
                        <td height="27" align="right">A TOTAL: </td>
                        <td colspan="2"><input type="text" size="10" name="Total1A" value="0"/></td>
                        <td align="right"> </td>
                        <td> </td>
                        </tr>
                      <tr>
                        <td> </td>
                        <td height="27" align="right"> </td>
                        <td> </td>
                        <td> </td>
                        <td align="right"> </td>
                        <td> </td>
                        </tr>
                      </table>
    </form>
                </div>
              </div>
        </body>
        </html>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Untitled Document</title>
    <title>Survey</title>
    <style type="text/css">
    body,td,th {
              font-family: Tahoma, Geneva, sans-serif;
    </style>
    <link href="stylesheets/SCG_Styles.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript">
              function TotalPart1A() {
                        document.survey.Total1A.value = '';
                        var sum = 0;
                        for (i=0;i<document.survey.radiogroup1A.length;i++) {
                          if (document.survey.radiogroup1A[i].checked) {
                                    sum = sum + parseInt(document.survey.radiogroup1A[i].value);
                        document.survey.Total1A.value = sum;
    </script>
    <link href="stylesheets/SCG_Styles.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div id="wrapper"><br />
      <div id="survey-header"><strong>Purpose:</strong><br />
        The Learning Style Survey assesses your general approach to learning. <br />
        It does not predict your behavior, but it is a clear indication of your overall style preferences.<br />
        <br />
        <strong>Instructions:</strong><br />
        For each item circle the response that represents your approach. Complete all items. <br />
        There are eleven major activities representing twelve different aspects of your learning style. <br />
        When you read the statements, try to think about what you generally do when learning. <br />
        <br />
        <strong>Time:</strong><br />
        It takes about 30 minutes to complete the survey. Do not spend too much time on any item. Indicate your immediate response (or feeling) and move on to the next item. <br />
        <br />
        <strong>For each item, enter your immediate response:<br />
          0 = Never  1 = Rarely  2 = Sometimes  3 = Often  4 = Always</strong><br />
      </div>
      <div id="survey">
        <form name="survey" id="survey">
          <div id="survey-section1">
          <table class="survey-table" cellspacing="0" width="812">
            <tr>
              <td height="24" colspan="2" align="left" bgcolor="#CCCCCC"><strong>Part 1: How I Use My Physical Senses</strong></td>
              <td height="24" align="center" bgcolor="#CCCCCC"><strong>1</strong></td>
              <td height="24" align="center" bgcolor="#CCCCCC"><strong>2</strong></td>
              <td height="24" align="center" bgcolor="#CCCCCC"><strong>3</strong></td>
              <td height="24" align="center" bgcolor="#CCCCCC"><strong>4</strong></td>
            </tr>
            <tr>
              <td width="31" height="27">1</td>
              <td width="515" align="left">I remember something better if I write it down.</td>
              <td width="60"><input type="radio" name="radiogroup1A" value="1" onchange="TotalPart1A()"/></td>
              <td width="60"><input type="radio" name="radiogroup1A" value="2" onchange="TotalPart1A()"/></td>
              <td width="60"><input type="radio" name="radiogroup1A" value="3" onchange="TotalPart1A()"/></td>
              <td width="60"><input type="radio" name="radiogroup1A" value="4" onchange="TotalPart1A()"/></td>
            </tr>
            <tr>
              <td width="31" bgcolor="#EAEAEA">2</td>
              <td height="27" align="left" bgcolor="#EAEAEA"> I take detailed notes during lectures.</td>
              <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup2A" value="1" onchange="TotalPart1A()"/></td>
              <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup2A" value="2" onchange="TotalPart1A()"/></td>
              <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup2A" value="3" onchange="TotalPart1A()"/></td>
              <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup2A" value="4" onchange="TotalPart1A()"/></td>
            </tr>
            <tr>
              <td>3</td>
              <td height="27" align="left">When I listen, I visualize pictures, numbers, or words in my head.</td>
              <td><input type="radio" name="radiogroup3A" value="1" onchange="TotalPart1A()"/></td>
              <td><input type="radio" name="radiogroup3A" value="2" onchange="TotalPart1A()"/></td>
              <td><input type="radio" name="radiogroup3A" value="3" onchange="TotalPart1A()"/></td>
              <td><input type="radio" name="radiogroup3A" value="4" onchange="TotalPart1A()"/></td>
            </tr>
            <tr>
              <td bgcolor="#EAEAEA">4</td>
              <td height="27" align="left" bgcolor="#EAEAEA"> I prefer to learn with TV or video rather than other media. </td>
              <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup4A" value="1" onchange="TotalPart1A()"/></td>
              <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup4A" value="2" onchange="TotalPart1A()"/></td>
              <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup4A" value="3" onchange="TotalPart1A()"/></td>
              <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup4A" value="4" onchange="TotalPart1A()"/></td>
            </tr>
            <tr>
              <td>5</td>
              <td height="27" align="left"> I use color coding to help me as I learn to work.</td>
              <td><input type="radio" name="radiogroup5A" value="1" onchange="TotalPart1A()"/></td>
              <td><input type="radio" name="radiogroup5A" value="2" onchange="TotalPart1A()"/></td>
              <td><input type="radio" name="radiogroup5A" value="3" onchange="TotalPart1A()"/></td>
              <td><input type="radio" name="radiogroup5A" value="4" onchange="TotalPart1A()"/></td>
            </tr>
            <tr>
              <td bgcolor="#EAEAEA">6</td>
              <td height="27" align="left" bgcolor="#EAEAEA"> I need written directions for tasks.</td>
              <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup6A" value="1" onchange="TotalPart1A()"/></td>
              <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup6A" value="2" onchange="TotalPart1A()"/></td>
              <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup6A" value="3" onchange="TotalPart1A()"/></td>
              <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup6A" value="4" onchange="TotalPart1A()"/></td>
            </tr>
            <tr>
              <td>7</td>
              <td height="27" align="left"> I have to look at people to understand what they say.</td>
              <td><input type="radio" name="radiogroup7A" value="1" onchange="TotalPart1A()"/></td>
              <td><input type="radio" name="radiogroup7A" value="2" onchange="TotalPart1A()"/></td>
              <td><input type="radio" name="radiogroup7A" value="3" onchange="TotalPart1A()"/></td>
              <td><input type="radio" name="radiogroup7A" value="4" onchange="TotalPart1A()"/></td>
            </tr>
            <tr>
              <td bgcolor="#EAEAEA">8</td>
              <td height="27" align="left" bgcolor="#EAEAEA">I understand lecturers better when they write on the board.</td>
              <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup8A" value="1" onchange="TotalPart1A()"/></td>
              <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup8A" value="2" onchange="TotalPart1A()"/></td>
              <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup8A" value="3" onchange="TotalPart1A()"/></td>
              <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup8A" value="4" onchange="TotalPart1A()"/></td>
            </tr>
            <tr>
              <td>9</td>
              <td height="27" align="left">Charts, diagrams, and maps help me understand what someone says. </td>
              <td><input type="radio" name="radiogroup9A" value="1" onchange="TotalPart1A()"/></td>
              <td><input type="radio" name="radiogroup9A" value="2" onchange="TotalPart1A()"/></td>
              <td><input type="radio" name="radiogroup9A" value="3" onchange="TotalPart1A()"/></td>
              <td><input type="radio" name="radiogroup9A" value="4" onchange="TotalPart1A()"/></td>
            </tr>
            <tr>
              <td bgcolor="#EAEAEA">10</td>
              <td height="27" align="left" bgcolor="#EAEAEA">I remember people’s faces, but not their names. </td>
              <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup10A" value="1" onchange="TotalPart1A()"/></td>
              <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup10A" value="2" onchange="TotalPart1A()"/></td>
              <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup10A" value="3" onchange="TotalPart1A()"/></td>
              <td bgcolor="#EAEAEA"><input type="radio" name="radiogroup10A" value="4" onchange="TotalPart1A()"/></td>
            </tr>
            <tr>
              <td> </td>
              <td height="27" align="right">A TOTAL: </td>
              <td colspan="2"><input type="text" size="10" name="Total1A" value="0"/></td>
              <td align="right"> </td>
              <td> </td>
            </tr>
            <tr>
              <td> </td>
              <td height="27" align="right"> </td>
              <td> </td>
              <td> </td>
              <td align="right"> </td>
              <td> </td>
            </tr>
          </table>
        </form>
      </div>
    </div>
    </body>
    </html>

    Hi Nancy,
    I've been away from this for a while and have picked it back up.  I tried your suggested code and I'm having problems getting it to work.  I created a file using the code you supplied for the survey here:
    view-source:http://www.littlechisel.com/clients/GreenSurvey/GreenSurvey.html
    It doesn't work so I know I'm missing something.  If you could advise me on this, it would be great.  Thanks! Here is the code as I have it:
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <script type="text/javascript">
    function calcscore() {
        var score = 0;
        $(".calc:checked").each(function() {
            score += parseInt($(this).val(), 10);
        $("input[name=sum]").val(score)
    $().ready(function() {
        $(".calc").change(function() {
            calcscore()
    </script>
    <link href="stylesheets/Survey.css" rel="stylesheet" type="text/css">
    </head>
    <body>
    <h1>jQuery Sum of Radio Fields</h1>
    <form action="">
    <h2>HOW GREEN ARE YOU?</h2>
    <p><strong>I walk/bicycle  to work/school. </strong><br>
    Yes
    <input class="calc" type="radio" name="radio1" value="10">
    No
    <input class="calc" type="radio" name="radio1" value="0">
    Sometimes
    <input class="calc" type="radio" name="radio1" value="5"></p>
    <p><strong>I buy  locally grown food. </strong><br>
    Yes
    <input class="calc" type="radio" name="radio2" value="10">
    No
    <input class="calc" type="radio" name="radio2" value="0">
    Sometimes
    <input class="calc" type="radio" name="radio2" value="5"></p>
    <p><strong>I recycle. </strong><br>
    Yes
    <input class="calc" type="radio" name="radio3" value="10">
    No
    <input class="calc" type="radio" name="radio3" value="0">
    Sometimes
    <input class="calc" type="radio" name="radio3" value="5"></p>
    <p><strong>I compost. </strong><br>
    Yes
    <input class="calc" type="radio" name="radio4" value="10">
    No
    <input class="calc" type="radio" name="radio4" value="0">
    Sometimes
    <input class="calc" type="radio" name="radio4" value="5"></p>
    <p>Total Green Score:
    <input type="text" name="sum">
    </p>
    </form>
    </body>
    </html>

  • Please help me...Javascript question

    Hi everyone,
    what i am trying to do is..
    EX:
    TABLE: EMP
    empno empname sal entered_by
    1 john 1000 user1
    I have a form on the table EMP.The users want to enter the same record again(because mutiple users enter the same record) but want an alert message when they hit the create button like.. Eg:
    when user2 is trying to enter this data..
    empno: 2 (generated by sequence)
    empname: john
    sal: 1000
    he wants to see an alert message like: THE Record is Already exists in the database which was entered by USER1 (But he can enter the same record)
    what i did is.. I have a javascript which calls the application process (PL/SQL) where it check whether the data entered is already there in the database and returns back an alert message like this:
    JAVASCRIPT:
    ==========
    <script language=javascript>
    function  f_insert_record()
            var get = new htmldb_Get(null,&APP_ID.,'APPLICATION_PROCESS=INSERT_RECORD',0);
            get.add('P2_EMPNAME',html_GetElement('P2_EMPNAME').value);
            get.add('P2_SAL',html_GetElement('P2_SAL').value);
            gReturn = get.get();
            var a = gReturn.split("|");
            if(gReturn)
                if (a.length > 0) {alert(a[0]);}
            else
                null;
    </script>APPLICATION_PROCESS
    ===================
    DECLARE
       l_error   VARCHAR2 (4000);
       V_NAME VARCHAR2(1000);
       V_MSPR_ID NUMBER(15);
       I NUMBER;
       V_MYNUM STRING_OBJ := STRING_OBJ();
    BEGIN
      FOR C1 IN (SELECT DISTINCT entered_by ENTERED_BY_USER_NM 
    from emp 
    WHERE  
      empname = :P2_EMPNAME
      AND sal  = :P2_SAL
      ) LOOP
        V_MYNUM.EXTEND;
        V_MYNUM(V_MYNUM.COUNT) := C1.ENTERED_BY_USER_NM;
      END LOOP;
      V_NAME := NULL;
      l_error := NULL;
      FOR I IN V_MYNUM.FIRST..V_MYNUM.LAST LOOP
        --dbms_output.put_line(V_MYNUM(I));
        V_NAME := V_NAME || '   ' || V_MYNUM(I);
      END LOOP;
      IF V_NAME IS NOT NULL THEN
        l_error := 'The record already exists in the database which was created by '||V_NAME;
      END IF; 
      HTP.PRN(l_error);
    END;everything works fine...when i have a ONBLUR event on the SALARY field.
    But i want the same thing to be achieved with the ONCLICK event on the CREATE button (Template based button).
    The code i have shown over here is just an example...But the requirement is the same..Multiple Users can enter the same record but they want to see an alert message like this record was entered by USER1,USER2.
    The only think i am not able to figure out is the ONCLICK event on that create button.
    I tried like this Target: URL
    javaScript:(f_insert_record();doSubmit('CREATE');)
    I am not getting the alert message.
    Please help me to solve this
    thanks
    phani

    damn it! Those little quotation marks.....
    I already did figure it out awhile after I posted my question
    Thanks anyway!

  • OT-javascript question

    I'd like to have a javascript image gallery with controls
    that look like that:
    < 1 | 2 | 3 | 4 | 5 >
    All images preload, and clicking on the numbers display the
    corresponding image, without reloading
    the page.
    I have had no problem making the numbers work, but I can't
    figure out how to make the previous and
    next arrows work. I don't want them to be Form buttons, just
    links that call a function that will
    decrement or increment a variable and at the same time change
    the image to the new variable value
    (all my images are called "1.jpg" "2.jpg" "3.jpg" etc. so
    this should be fairly simple...)
    Yet I could not find a simple example of this on the web...
    seb ( [email protected])
    http://webtrans1.com | high-end web
    design
    Downloads: Slide Show, Directory Browser, Mailing List

    > Beyond this, I have a general question: your script is
    so simple, I don't
    > understand why I would ever use Macromedia's set text of
    layer behavior
    > (or swap image behavior for that matter) which are way
    more complicated.
    > My question is why are these behaviors so complicated
    while your script
    > which just changes the source of an image by its id is
    so incredibly
    > simple. Is there a catch?
    Mick's script is optimized for you and your specific
    application. MM's
    scripts are generalized to cover all bases - and to do error
    checking.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "(_seb_)" <[email protected]> wrote in message
    news:[email protected]...
    > Mick White wrote:
    >> (_seb_) wrote:
    >>
    >>> I'd like to have a javascript image gallery with
    controls that look like
    >>> that:
    >>>
    >>> < 1 | 2 | 3 | 4 | 5 >
    >>>
    >>>
    >>> All images preload, and clicking on the numbers
    display the
    >>> corresponding image, without reloading the page.
    >>> I have had no problem making the numbers work,
    but I can't figure out
    >>> how to make the previous and next arrows work. I
    don't want them to be
    >>> Form buttons, just links that call a function
    that will decrement or
    >>> increment a variable and at the same time change
    the image to the new
    >>> variable value
    >>> (all my images are called "1.jpg" "2.jpg"
    "3.jpg" etc. so this should be
    >>> fairly simple...)
    >>>
    >>> Yet I could not find a simple example of this on
    the web...
    >>>
    >>
    >> CURRENT=1 //global
    >> function next(max){
    >> document.images["gallery"].src=CURRENT+".jpg";
    >> CURRENT++;
    >> if(CURRENT>max)CURRENT=1;
    >> }
    >>
    >> Similarly with "previous"
    >> CURRENT--;
    >> if(CURRENT<1)CURRENT=max;
    >>
    >> Mick
    >
    > thanks a lot Mick.
    > I have a few questions.
    > I assume ["gallery"] can refer to the image ID, which in
    my case is
    > "mainImg"
    >
    > So I used:
    > document.images["mainImg"].src=CURRENT+".jpg";
    >
    > and it sort of works, I also tried
    >
    > document.images.mainImg.src=CURRENT+".jpg";
    >
    > and it sort of works too.
    >
    > It works as long as I do not use the numbers in between
    the previous and
    > next arrows. But if I click on the numbers in between,
    which so far use
    > MM_setTextOfLayer() to swap the image, then the previous
    and next arrows
    > stop working, I don't know why.
    >
    > Beyond this, I have a general question: your script is
    so simple, I don't
    > understand why I would ever use Macromedia's set text of
    layer behavior
    > (or swap image behavior for that matter) which are way
    more complicated.
    > My question is why are these behaviors so complicated
    while your script
    > which just changes the source of an image by its id is
    so incredibly
    > simple. Is there a catch?
    >
    > --
    > seb ( [email protected])
    >
    http://webtrans1.com | high-end web
    design
    > Downloads: Slide Show, Directory Browser, Mailing List

  • GoLive Javascript question

    I have some existing code from their previous web coder and wondered on the code below, how can i make some of these links open in a new window?
    Is this Javascript used specifically from GoLive?
    thakns for any help! 
    <script type="text/javascript">
    <!--
    CSAct[/*CMP*/ 'C2B3FE26189'] = new Array(CSGotoLink,/*URL*/ 'main.html','');
    CSAct[/*CMP*/ 'C2B3FE26190'] = new Array(CSGotoLink,/*URL*/ tour/Tour.html','');
    CSAct[/*CMP*/ 'C2B3FE26191'] = new Array(CSGotoLink,/*URL*/ 'members/index.html','');
    CSAct[/*CMP*/ 'C2B3FE26195'] = new Array(CSGotoLink,/*URL*/ 'Join.html','');
    CSAct[/*CMP*/ 'C2B3FE26196'] = new Array(CSGotoLink,/*URL*/ 'FAQs.html','');
    CSAct[/*CMP*/ 'C2B3FE26197'] = new Array(CSGotoLink,/*URL*/ 'links.html','');
    CSAct[/*CMP*/ 'C2B3FE26198'] = new Array(CSGotoLink,/*URL*/ 'Contact.html','');
    CSAct[/*CMP*/ 'C2B3FE26199'] = new Array(CSGotoLink,/*URL*/ 'webmasters.html','');

    selecting the link in layout view takes me to this-
    <a title="free  tour" onclick="CSAction(new Array(/*CMP*/'C2B3FE0E190'));return CSClickReturn()" onmouseover="changeImages('tour','navigation/tour-over.gif');return true" onmouseout="changeImages('tour','navigation/tour.gif');return true" href="#"><img id="tour" src="navigation/tour.gif" alt="tour button" name="tour" width="55" height="45" border="0"></a>
    which seems to call the javascript code i pasted earlier, hence the question.

  • Newbie javascript question

    I have Adobe Acrobat version 8 Professional
    Lets say I have a two page PDF document . On page 1 I have some text
    that says Goto Page 2 for instance. Is it possible using Javascript to
    alter that text to be a sort of hyperlink so that when a user clicks
    it it will indeed take them to page 2? If anyone can provide some
    sample code that would be would be great.

    I need this to be automated, also I was trying to simplify the situation in my question. The reality is I'll ultimately have a header page with approx 50 links to 50 separate data pages. Each of the data pages will itself have a link back to the header page.

  • Unobtrusive Javascript Question

    I have created a template (mysite.dwt), that I then used to create my site. If I use the Dreamweaver selection to make javascript external & unobtrusive, will that affect the template as well as the site pages (.html), or just the site pages?
    I used the spry assets to make the menu bar dynamic. If I later want to add additional pages to the menu bar, will I be able to do that on the template page and have those changes then reflect to all site pages built on that template even though the site pages have had the javascript externalized and made unobtrusive? Then to go a step further, if the menu bar changes to the template do reflect through the site pages, will the added javascript be made external (into the same, previous, externalized file, or a separate file) and unobtrusive, or will I need to run that feature again to accomplish that? Thanks in advance...

    Couple of comments:
    1 - I think it is better to name your frames, rather than use the frame indexes to access them
    2 - location is an attribute of "window", not document. I ihnk you want parent.frames[1].frames[0].location.href = "fenetre2.jsp?x=3
    ie remove the reference to "document"
    Again the art of debugging is seeing what is going on.
    Try
    alert(parent.frames[1]);
    alert(parent.frames[1].location);
    alert(parent.frames[1].document.location);
    alert(parent.frames[1].location.href);
    Or variations on the theme, to see where things start to go wrong.
    Cheers,
    evnafets

  • JSP/javascript question. Guru's please help.

    Need help.
    I know we can assign value of a JSP variable to a javascript variable. e.g. strJScriptvar = <%=strJSPvar%>;
    Is there a way we can go the other way, i.e. assigning a javascript variable value to a JSP variable?
    e.g. will it be valid <%strJSPvar=%>=strJScriptvar;
    If not, is there a direct way of assigning the value.
    Any help will be heavily appreciated.
    Thanks,
    Indrasish.

    Yeah, that's it. Remember that JSPs are compiled into servlets then sent as HTML to your browser. Once the page is sent to your browser, there is nothing else the "JSP" part of it can do. It's already been processed, done it's thing, and sent the results to your browser.
    Make sense?

  • New/Additional phone line question- help please!

    Hi
    I am after some advice, and every time I call BT I get passed around as I am not 100% on what to ask for, or who I should speak to.
    Basically, we have 2 phone lines coming into the house.  One line/number + broadband signal goes via a repeater to the office which is a separate building across the garden (approx 300m but I am not sure on the actual distance).  The signal is not great, for the broadband particularly - often drops out etc.  To solve this we would like a new physical line installed in the office building to give us a separate phone and broadband package to that of the main house, but ideally keeping the same number as we currently use in the office.  The office is used everyday for working from home and so is important to us.
    Does that make sense?  I fully expect that an engineer will need to look at the site, and there will be a (significant) charge for the line to be installed (underground pipe work for cables already exists from house to office building and so this could be utilised).  Do I just place an order for a new line online, and wait for an engineer's visit?  Can I deal with changing the number at a later date if that is easier for the system to deal with?  Last time I rang BT, I was told I needed to speak to the exceptions team, when I was put through to them she told me all I needed to do was speak to customer services, customer services thought I was trying to move home and then didn't seem to understand what I needed (but it was probably how I was explaining it!).
    I would be so grateful if someone could point me in the right direction, or give me tips on what to ask for.  My main worry is keeping the same phone number as it would be so much easier.
    Thanks in advance
    MPA

    this link may help http://www.openreach.co.uk/orpg/home/network/whoar​eyou/selfbuild/selfbuild.do
    If you want to say thanks for a helpful answer,please click on the Ratings star on the left-hand side If the reply answers your question then please mark as ’Mark as Accepted Solution’

  • Javascript Question - How to Insert a Dynamic/Current Date into the Footer of a Scanned Document

    Hi!
    I am looking for help in finding a Javascript that would allow the insertion of a dynamic/current date into the footer of a scanned document at the time the document is printed.
    I am currently using Adobe Acrobat Professional 8.0 at my work and there has arisen a need to have a dynamic/current date in the footer on scanned documents when they are printed out on different days by different people.
    I am new to the Forum and I am also very new to Javascript and what this entails.
    Thank you in advance for your help and input!
    Tracy

    this.addWatermarkFromText({
    cText: util.printd("mmmm dd, yyyy", new Date()),
    nTextAlign: app.constants.align.right,
    nHorizAlign: app.constants.align.right,
    nVertAlign: app.constants.align.bottom,
    nHorizValue: -72, nVertValue: 72
    Will insert the current Monday/Day/Year as a text watermark at the bottom of every page of a document, 1 inch up and 1 inch in from the right corner.

  • Import BW master data javascript question

    Hi experts,
    In BW master datas include "-" symbols. When i use javascript like this, "js:%external%.replace("-";"") its work fine. But when master data is include double "-" symbols ( like TG-43-45) , the result is "TG43-45" . So, dont apply for second "-" symbol.
    What is the true js code?
    Take it easy...

    As well as my conversion file like this :
    EXTERNAL              INTERNAL                                                FORMULA
    *-*                   js:%external%.replace("-";"")                              
    Edited by: BHDRKOCA on Oct 21, 2011 2:50 PM
    Edited by: BHDRKOCA on Oct 21, 2011 2:50 PM

  • Javascript Question - Will backslash work on double quotes

    I think the term is escape
    Will a backslash work on double quotes same as it does on a single quote
    to display the quote marks which are contained within  a javascript?
    For example:  an \"everyman\'s\" process

    yes
    E. Michael Brandt
    www.divahtml.com
    www.divahtml.com/products/scripts_dreamweaver_extensions.php
    Standards-compliant scripts and Dreamweaver Extensions
    www.valleywebdesigns.com/vwd_Vdw.asp
    JustSo PictureWindow
    JustSo PhotoAlbum, et alia

  • JavaScript Question for Novice

    I'm an Adobe novice when it comes to JavaScript. I have a form that has Date of Birth and Date Form Completed and I want to calculate Age based on those two dates. How can I do this?
    thanks
    Anthony

    You need to use Acrobat JavaScript and the JavaScript Date Time object and the extract the full year, month and date from the date objects and compute the age.
    var DOB = this.getField("Date of Birth");
    var EndDate = this.getField("Date Form Completed";
    var cDateFormat = "d-mmm-yyyy"; // format of date fields;
    event.value = "";
    var dobValue = this.getField("Date of Birth").value; // dob value;
    var dateValue = this.getField("Date Form Completed").value; // end date value;
    if (dobValue != "" && dateValue !="") {
    var oDob = util.scand(cDateFormat, dobValue); // dob to date object;
    var oDate = util.scand(cDateFormat, dateValue); // end date to date object;
    var age = now.getFullYear() - dob.getFullYear(); // difference in years;
    // adjustment if date of birth before the end date;
    if ((now.getMonth() * 100) + now.getDate() < (dob.getMonth() * 100) + dob.getDate() ) {
    age--;
    } // end adjustment for dob before end date;
    event.value = age;
    } // end input fields not empty;
    You will have to adjust the field names and date formats as needed to match your form.

  • Javascript Questions Transfering code between docs

    Hello all,
    I am very new to this and I am trying to update a document that a person who is no longer with our company created.  He created an FDF for us that contains some Javascript and I would like to copy the it from his document into this new updated version of the document.  Can you please guide me on how to accomplish this?  Thanks.

    Did that person create an FDF or a PDF?
    In the first case, you simply import it into the new document.
    In the second case, assuming that we are talking about document-level scripts, you simply add the old document to the new one, and then delete the pages again. The document-level scripts remain in the new document. For all other scripts (field, page), you will have to copy them over individually (or, if you are adventurous, you could create for every place you have a script in the old document a dummy script in the new one, and then you use the "Edit all JavaScripts" function to move the actual scripts.
    HTH.
    Max Wyss.

  • Javascript question about objects

    Hi,
    Let's say I've created a new object. One of the properties of my object
    is an array. I would like another property to return the length of that
    array. How do I do this.
    For instance here's some code (and I hope that the email interface
    doesn't screw this up so badly to make it unreadable. I'm going to avoid
    using square brackets as well by using round ones instead even though
    it's a syntax error, since square ones are known not to work with email.)
    function test(){
         this.a = new Array();
         this.b = this.a.length;
    x = new test();
    x.a(0) = 3;
    x.a(1) = 3;
    x.b;
    Returns 0. In other words, just setting this.b = this.a.length doesn't
    not get updated automatically as this.a is added to.
    Now, I tried turning this.b into a method (ie this.b = function(){return
    this.a.length)  and that works, but then to get the length I keep having
    to refer to myObject.b().
    How can I avoid that? How can I have a built-in length property for an
    object.
    Hope this is clear and has come out legibly via email. Apologies in
    advance if it hasn't.
    Thanks,
    Ariel

    Hi all,
    1) About the original question—which doesn't regard prototype inheritance in itself: "How can I have a built-in length property for an object"—I think the most obvious approach is to directly use an Array as the base object. Since any Array is an Object you can append methods and properties to it while keeping benefit from the whole array's API:
    var myData = [];
    myData.myProp = 'foo';
    myData.myMeth = function(){ return [this.myProp, this.length, this.join('|')]; };
    // Usage
    myData[0] = 10;
    myData[1] = 20;
    alert( myData.myMeth() ); // => foo,2,10|20
    // etc.
    2) Now, if for whatever reason you cannot use the previous technique or need to deal with a precustomized Object structure such as:
    var myObj = {
        items: [],
        meth: function(){ alert("Hello World!"); },
        // etc.
    then the challenge is more difficult for the reasons that Jeff mentioned above. You can anyway mimic a kind of 'binding' mechanism this way:
    // The original obj
    var myObj = {
        items: [],
        meth: function(){ alert("Hello World!"); }
    // Adding length as a 'fake property' (getter and setter)
    (myObj.length = function F(n)
        if( !F.root )
            (F.root=this).watch('length', function(_,ov,nv){ F(nv); return ov; });
            F.valueOf = function(){ return F().valueOf(); };
            F.toString = function(){ return F().toString(); };
        if( 'undefined' == typeof n )
            n = F.root.items.length >>> 0;
        else
            F.root.items.length = n;
        return n;
    }).call(myObj);
    // Usage
    myObj.meth(); // => Hello World!
    myObj.items[0] = 10;
    myObj.items[1] = 20;
    alert( myObj.length ); // => 2
    var x = myObj.length-1; // works too, thanks to F.valueOf
    alert( x ); // => 1
    myObj.length = 5; // testing the setter
    alert( myObj.length ); // => 5
    alert( myObj.items ); // => 10,20,,,
    Of course it's totally unreasonable to implement such an artillery just for the convenience of writing myObj.length instead of myObj.length()—and myObj.length=x instead of myObj.length(x)—so I only suggest this for the sake of experimentation.
    @+
    Marc

Maybe you are looking for

  • ITunes audio quickly begins to lag behind during video playback and only gets worse as playing continues.

    I've tried updating my graphics drivers, fiddling with Quicktime, uninstalling, reinstalling, etc. iTunes and my drivers are all as up-to-date as possible. Videos on my computer play in other players without any audio/visual synch problem, but all of

  • SSO Configuration in BO Platform(CMC) & SAP BW 7.0

    HI All, We are using SAP BO Platform 4.0 SP01 and SAP BW 7.1 and developed few BO WEBI  reports on BEX Queries . I want to configure SSO (SINGLE SIGN ON) to enable analysis authorizations of BW. I did all the following steps, but getting OLAP Error w

  • Filtering of documents in KM

    Hi, I have created a repository in km, say, documents/demodocs in which user1 and user2 can add the documents. But the documents added by user1 should not be visible to user2 and vice-versa. How can I achieve this ? Helpful answers will be rewarded.

  • Facebook post doesn't work

    Hello folks. I have a problem with my Mountail Lion Mac OS. Both social options (Twitte and Facebook) doesn't make any actions when I click. I have both configured in System Preferences. Regards, Marcos

  • Error occur during  export

    dear all, os: window 2003 db: oracle 8i when i export on oracle 8i (export owner) , i get a error: EXP-00084: Unexpected DbmsJava error -1031 at step 6661 EXP-00008: ORACLE error 1031 encountered ORA-01031: insufficient privileges EXP-00000: Export t