netui:form how do i create Action URL in JavaScript

hi,
i want to submit the <netui:form> along with action form data to JPF from the
java script,
i can call the action method from the java script but actionForm is not passing
to JPF....
pls guide me....
vijay

The javascript that you suggested is similar to what we're using. When the onChange
message is fired, both bits of javascript produce the following url;
http://localhost:7001/mpsportal/getVersion.do?product_id=1
This works fine in the weblogic browser but not in portal. If you use an anchor
to fire the action, portal creates the following url;
http://localhost:7001/mpsportal/mpsportal.portal?_nfpb=true&portlet_1_1_actionOverride=/portlets/task/getVersion
So I've tried to put the 'extra bits', namely 'mpsportal.portal?_nfpb=true&portlet_1_1_actionOverride=/portlets/task/'
into the javascript as below;
javascript:window.location='mpsportal.portal?_nfpb=true&portlet_1_1_actionOverride=/portlets/task/getVersion.do?product_id='+document.forms[0][getNetuiTagName('product_id')].value;
When this is run in portal it produces exactly the same url that portal produces
except it has the parameter tagged onto the end;
http://localhost:7001/mpsportal/mpsportal.portal?_nfpb=true&portlet_1_1_actionOverride=/portlets/task/getVersion.do?product_id=1
Unfortunately portal doesn't like the parameter on the end and gives an error
message 'Unable to find action getVersion.do?product_id=1'. The problem is that
the value on the form, the product id in this case is not stored when the javascript
jumps back to the server so it has to be sent in the url.
If we can find a way of sending these values through in the url without portal
complaining OR forcing the form to submit its values then its problem solved.
Thomas Cook <[email protected]> wrote:
Does this work?
onChange="javascript:window.location='getVersion.do?product_id='+document.getElementById(getNetuiTagName('product_id',
this)).value;"
When you say the problem is in the onChange() method in the NetUI tag,
can you elaborate on what you think might be happening?
Thomas
Steve Hicks wrote:
Thomas
We want to get java script to work with a netui:select tag so that whenthe user
selects it, we populate a different netui:select tag (this requiresa call back
to weblogic). Nothing to do with forms in Vijay's post!
Here is a portion of our JSP:
<td>
<netui:select dataSource="{actionForm.product_id}"
optionsDataSource="{pageFlow.taskProduct.taskProductSL}" nullable="false"multiple="false"
onChange="javascript:window.location='getVersion.do?product_id='+document.forms[0][getNetuiTagName('product_id')].value;"
tagId="product_id"></netui:select>
</td>
This works in the workshop debugger but NOT when we use it via portal(where nothing
happens). The problem is in the javascript 'onChange' method in thenetui tag...
Regards
Steve H
Thomas Cook <[email protected]> wrote:
Getting back to Vijay's original post - something like the following
should work (I can't confirm this code works since I'm in the middle
of
a build), but I have done this before. Does this not work? It should
submit the form from javascript, as Vijay requests, passing the field
value to the JPF via the action form.
<netui:form tagId="myForm" action="doSomething">
<netui:textBox dataSource="{actionForm.doSomethingValue}"/>
<netui:button value="Submit" onClick="return doSubmit()"/>
<script language="javascript">
function doSubmit()
var form = document.getElementById( getNetuiTagName( "myForm",
this ) );
form.method = "post";
form.submit();
return true;
</script>
</netui:form>
Steve Hicks wrote:
We have this problem and it seems quite sad that you can not perform
this (typical)
function using portal. Anyone from BEA watching? Could they do something
about
this in sp3?
"Anant Kadiyala" <[email protected]> wrote:
Beware that it is not entirely good idea to have action url in the
Javascript.
I had some problems with it. It works fine when you test it at the
pageflow
level.
But when you pull the pageflow into a portlet, it starts acting strange.
The urls
that the portal generates behind the scenes dynamically, get messed
up
and you
will notice that the new acion opens in a new browser window and
will
not have
the context of the portal.
Although the docs say we could use action urls in Javascript, youmight
want to
make sure it works in the portal context.
Anant
"julie" <[email protected]> wrote:
do you still need help making an action url in javascript?
"vijay patel" <[email protected]> wrote:
hi,
i want to submit the <netui:form> along with action form data to
JPF
from the
java script,
i can call the action method from the java script but actionForm
is
not
passing
to JPF....
pls guide me....
vijay
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
<title></title>
</head>
<body>
Getting back to Vijay's original post - something like the following
should work (I can't confirm this code works since I'm in the middle
of
a build), but I have done this before. Does this not work?
It should
submit the form from javascript, as Vijay requests, passing the field
value to the JPF via the action form.<br>
<br>
<tt><nobr><netui:form tagId="myForm" action="doSomething"></nobr><br>
<nobr> <netui:textBox
dataSource="{actionForm.doSomethingValue}"/></nobr></tt><br>
<tt><nobr> <</nobr><nobr>netui:button value="Submit"
onClick="return doSubmit()"/></nobr><br>
<nobr> <script language="javascript"></nobr><br>
<nobr> function </nobr></tt><tt><nobr>doSubmit</nobr></tt><nobr></nobr><tt><nobr>()</nobr><br>
<nobr> {</nobr><br>
<nobr> var form = document.getElementById(
getNetuiTagName(
"myForm", this ) );<br>
form.method = "post";<br>
form.submit();</nobr><nobr></nobr></tt><tt><nobr></nobr><br>
<nobr> return true;</nobr><br>
<nobr> }</nobr><br>
<nobr> </script></nobr><br>
<nobr></netui:form></nobr></tt><br>
<br>
Steve Hicks wrote:<br>
<blockquote cite="[email protected]" type="cite">
<pre wrap="">We have this problem and it seems quite sad that youcan
not perform this (typical)
function using portal. Anyone from BEA watching? Could they do something
about
this in sp3?
"Anant Kadiyala" <a class="moz-txt-link-rfc2396E" href="mailto:[email protected]"><[email protected]></a>
wrote:
</pre>
<blockquote type="cite">
<pre wrap="">Beware that it is not entirely good idea to have action
url in the Javascript.
I had some problems with it. It works fine when you test it at thepageflow
level.
But when you pull the pageflow into a portlet, it starts acting strange.
The urls
that the portal generates behind the scenes dynamically, get messedup
and you
will notice that the new acion opens in a new browser window and will
not have
the context of the portal.
Although the docs say we could use action urls in Javascript, you might
want to
make sure it works in the portal context.
Anant
"julie" <a class="moz-txt-link-rfc2396E" href="mailto:[email protected]"><[email protected]></a>
wrote:
</pre>
<blockquote type="cite">
<pre wrap="">do you still need help making an action url in javascript?
"vijay patel" <a class="moz-txt-link-rfc2396E" href="mailto:[email protected]"><[email protected]></a>
wrote:
</pre>
<blockquote type="cite">
<pre wrap="">hi,
i want to submit the <netui:form> along with action form data to
JPF
</pre>
</blockquote>
<pre wrap="">>from the
</pre>
<blockquote type="cite">
<pre wrap="">java script,
i can call the action method from the java script but actionForm is
</pre>
</blockquote>
<pre wrap="">not
</pre>
<blockquote type="cite">
<pre wrap="">passing
to JPF....
pls guide me....
vijay
</pre>
</blockquote>
</blockquote>
</blockquote>
<pre wrap=""><!---->
</pre>
</blockquote>
</body>
</html>

Similar Messages

  • How can I create a URL for a PWA for MS Project Server 2010 project file that includes the view?

    Hi, this question has been answered for 2013. The answer here suggests that it can be done in  2010.
    See:
    http://social.technet.microsoft.com/Forums/projectserver/en-US/3affdc4f-36bf-4381-8b75-27c73465efd4/action?threadDisplayName=how-can-i-create-a-url-for-a-pwa-for-ms-project-server-2013-project-file-that-includes-the-view
    Who knows how?
    Regards
    Sander

    Hi Sander,
    As far as I tested it, it is not possible either with PS2010. The URL only contains the PDP name and the projUID.
    Hope this helps,
    Guillaume Rouyre, MBA, MCP, MCTS |

  • How do I create a ".URL" file from a webpage I'm viewing

    How do I create a ".URL" file from a webpage I'm viewing

    The simplest way is to drag the "site identity button" (the padlock, for secure pages, and the globe, for other pages) to the desktop and drop it there. You may need to resize various window in order to be able to see the desktop while also viewing the site.
    There is an add-on for sending a shortcut to Windows without having to use this method. I haven't tried it myself:
    * Page on Add-ons site: https://addons.mozilla.org/firefox/addon/deskcut/
    * Review describing an extra setup step if it's not working: https://addons.mozilla.org/firefox/addon/deskcut/reviews/490684/

  • How do I create individual URL for the pages within an Adobe Muse site?

    Could someone tell me how I can create separate URL addresses for each page within a site? I think it's in Page Properties, but I can't figure out how to do it.

    Your website is actually hosted at http://kcronaphotography.free.fr
    If you visit that URL, clicking on the other pages will change the URL displayed in the browser.
    Your individual pages are available at URLs like: http://kcronaphotography.free.fr/about.html
    www.karincrona.com is just a wrapper page containing a frameset that hosts your real pages in frames.
    It appears that this page was generated by a tool called "ORT - Ovh Redirect Technology".
    Displaying the pages inside a frame will not change the URL displayed in the web browser.
    If you'd like your page to have nice URLs like www.karincrona.com/about.html, you'll need to get rid of the frame wrapper, and move the domain name to the webhost where your pages are being served.
    If you want to keep the wrapper page, you may want to investigate if the ORT tool you're using provides any way of getting a URL to an individual page to show in the browser bar.

  • Oracle Forms - How can I create a Data Block with query

    Dear friends I have a question, I couldn't do this..
    I have a sql query, I want to show the datas of the query.. How can I do this. ?
    Data Block Wizard wants a table, view or stored procedure, but I have a query, how can I create a data block with my query.. I m waiting your helps..? Please...
    Semih

    Hi,
    You have two options
    1. create a view and base the block on the view
    2. create a block with a query Data Source Type of 'FROM clause query'
    Hope this helps
    Neil

  • SSRS Action URL via javascript:void(window.open doesn't work in IE

    Hi,
    I am using the following code to open "google.com.au"
    in a pop-up window through SSRS Report -> Action -> URL 
    ="javascript:void(window.open('"+
    "http://www.google.com.au/" +
    "','_blank','scrollbars=true,status=true'))"
    The script work fine in Chrome and FireFox but not IE ( we are using IE 11.0 ), any idea what's going wrong?
    ( When we click on it ; Nothing appear in IE )
    Thanks.

    Hi Yu,
    1. We are using SQL Server SSRS 2008 R2 in IE 11.0.9600.17501 environment ( Means we already have the latest IE 11 Patch )
    2. Did you try put in Javascript in SSRS Cell -> Placeholder Properties -> Action -> URL?     
        i.e. ="javascript:void(window.open('"+ "http://www.google.com.au/" + "','_blank','scrollbars=true,status=true'))" 
    3. All reports are having the same phenomenon.
    4. I used F12 and tried IE7, IE8, IE9, IE10 all same ( ALL couldn't  POP UP window ).
    5. Please refer to attachment, I found out that when I go to Cell -> Right click -> Inspect Element & change
    target="_top" to
    target="_self" then the problem gone.
        BUT... how to set target="_self" in SSRS? 
    Regards,
    Frank

  • Struts portlet: generating rewritten action URL inside javascript

    I'm migrating a standalone struts application written for WL 8.1 to WL 10.3 portal environment. The idea is to make a portlet out of the struts app. I've got the application almost working, url rewriting works beautifully by using *<html:link action=...>* in jsps with the weblogic struts-adapter taglibs. But now I have a problem with the incorporated javascripts... For example I'm using a script to submit a html:form and in the script I'm trying to call an action like so:
    *function submit() {*
    document.myForm.action = "action_string";
    document.myForm.submit();
    return true;
    The problem is that I can't use the struts action name as usual (action.do) since that would lead to a standalone page instead of the portal desktop view. WL portal has a rewriter that translates the individual application action URLs to portal URLs so that the uniform view remains as the user interact with the applications. Now my question is: Is there a way to invoke this URL rewriter somehow to do the rewriting for action for me or alternatively, is there a way to get all the URL blocks so I can build the line myself?
    The trick is that I need to get this URL dynamically, so that if I rename the struts module or the portlet, I don't have to update all my javascripts as well. The portal URI that I need is of form (dynamic parts with bold):
    / contextPath / portalDescriptionFile.portal ?_nfpb=true& _windowLabel= portlet_x & portlet_x _actionOverride=%2F moduleName %2FactionName& portlet_x method=methodName
    So far I've been able to get the portlet label (portlet_x) with a scriptlet:
    *<%*
    PortletPresentationContext portletPresentationContext = PortletPresentationContext.getPortletPresentationContext(request);
    portletPresentationContext.getInstanceLabel();
    *%>*
    I can also get the moduleName and contextPath, but not the the rest. So at minimum I would need a way to dynamically get the "+path+" before the "+query+" as in "+/contextPath/path?query+". The "+query+" I can construct with the info I have if necessary.
    Can anyone help me with this?
    If someone knows a good API page for WL 10.3 portal/portlets where I could look for more internal objects (like PortletPresentationContext) containing the data I need, that would also be a great help!
    Edited by: karikko84 on 28.8.2009 3:44

    When constructing links, you have to use the pdk-specific struts tags, for example:
    <pdk-struts-html:link href="/portal/menuPage.do">Also, you need to use the pdk struts tag library:
    <%@ taglib uri="/WEB-INF/pdk-struts-html.tld" prefix="pdk-struts-html" %>Peter

  • How do you create action sets in PSE9?

    I'm trying to figure out how to create my own automated action sets in PSE9. When I go into the Action Player section in the right hand panel, there is a "Tip" that states the following:
    "Tip: Photoshop Elements includes some action sets for you. You may also add your own actions. Please consult the Help file for information on creating and adding your own action sets."
    I cannot find any reference in the Help files for how to do this. Can anyone help with this?
    Thanks in advance, Jay

    Read this in the pse 9 help manual:
    http://help.adobe.com/en_US/photoshopelements/using/WS39F39829-C3F4-4c75-BD7C-8D155CC40C5F _WIN.html
    We'd all like to be able to record actions and such in elements. If you want someone
    from adobe to see your request/complaint, use this form and they will read it:
    (the more people complain about or request a feature, the more likely it might be implemented)
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform&product=72
    MTSTUNER

  • How do I create a URL to filter a view when the value I have from list one is the ID that was used by list 2 to pull in the list 1 title?

    My list "Tasks" has an record with Title = "Build SSIS for Duke Energy" and its ID is 1. Then I have a list "Journal" where I have tracked entries related to the progress of the task. When I create the Journal entries I passed
    in the ID of the task 1 which then pulled the title into the Journal's Associated task lookup column. Now I'd like to have a column in the Tasks list that would have a URL to take me to all journal entries related to the Task. But passing in the ID 1 of the
    task does not work. 
    If the lookup column has the actual Title from the task in all the time and it is not dynamically pulled every time the list is queried shouldn't I be able to filter on the Title e.g. "Build
    SSIS for Duke Energy"  

    I ended up going with a workflow to build the URL and sending the title to the look-up column. 
    I tried the script at that site and ran into several problems. It didn't work with views that were grouped, the calculated links did not show on the edit and view forms. I assume those forms would have to be changed to run the script also.
    In addition to, I have to add a CEWP to each view and I was also losing the "Items" and "List" options (next to "Browse") from the ribbon until I clicked around in the list. 
    What are the downfalls of a workflow? I ask because many people default to using a similar TextToHTML script like you mentioned.

  • Contact Form: How do i create a link from an XML file to another domain to read a PHP File

    So i purchased a template from Template Monster and im having a little trouble with the contact form. The server that im uploading it to is a privite server that the company owns. It supports ASP and not PHP. I cant seem to get the ASP form to work so all i want to do it create a link to another one of there servers that supports PHP and have the contact form link to there and read the PHP file (that i will upload to that server) and send the email from there.
    This is the XML that i have to fill in in order to make it work
    Everything in Red is what i needed to fill out in order for the form to work.
    <?xml version="1.0" encoding="utf-8"?>
    <!--
            Please read this information to learn how to set up the contact form integrated
            into the template.
            This readme file explains in details the meaning of the settings that can be
            done in the fcContactFormConfiguration.xml configuration file.
            It is recommended for you to use an XML editor to make changes to this file
             because it’s less possible to make an error in the markup which can cause to
            a not working contact form.
      -->
    <contactFormConfiguration>
        <!--
                An e-mail address which will be used to receive messages from your contact form.
                You can specify several e-mail addresses separating them with a comma.
                For example: [email protected], [email protected], [email protected]
          -->
        <emailTo>[email protected]</emailTo>
        <!--
                A server script type which will process sending e-mails. It depends on your
                hosting and in the current version of the contact form it is allowed to use
                two types:  php (Apache, PHP Hosting); asp (IIS web server, ASP).
          -->
        <serverProcessorType>php</serverProcessorType>
        <!--
                A name of the script file which process sending e-mails on your server (without
                extension). The name contact is used by default.
          -->
        <serverProcessorFileName>contact</serverProcessorFileName>
        <!--
                Set whether to validate only required fields (true/false).  The default value is
                true which means the not required fields of your contact form will not be validated.
                For example if the e-mail field of your form is set as not required (imagine it)
                the form will be processed even if the user types in an incorrect e-mail address.
          -->
        <validateRequiredOnly>false</validateRequiredOnly>
        <!--
                Set whether to submit the form when the Enter key is pressed even if the focus is
                not on the Submit button (true/false).
          -->
        <submitFormOnEnter>false</submitFormOnEnter>
        <!--
                Text showing to the user when the form is submitted without any errors.
          -->
        <messageSentText>Thank you for your message.</messageSentText>
        <!--
                Text showing in case the form is not submitted because of a server error.
          -->
        <messageSentFailedText>Sorry, your message couldn't be sent</messageSentFailedText>
        <!--
                Text your visitor will see while waiting till the processing is over.
          -->
        <formProcessingText>processing...</formProcessingText>
        <!--
                Your SMTP server (for ASP only).
          -->
        <smtpServer>localhost</smtpServer>
        <!--
                Your SMTP port (for ASP only).
          -->
        <smtpPort>25</smtpPort>
        <!--
                Set whether to send the message as a plain text (true) or as HTML (false).
          -->
        <plainText>false</plainText>
        <!--
                ID of the input field (in the structure XML file) to use for the “from: ”
                or email to use instead (for example: [email protected]).
          -->
        <emailFromSource>2</emailFromSource>
        <!--
                Subject of the e-mails that will be sent through this contact form or ID of
                the input field (in the structure XML file) to use for the “subject: ” label
                in your e-mail client.
          -->
        <subjectSource>Contact Form from your site</subjectSource>
        <!--
                Validation error messages that are showing to the user when the form fails to
                validate. The form supports different types of validators. You can change the
                text of the error messages the validators produce here.
                You can use the {LABEL} keyword in these messages. It will replace it with the
                label value of the field where an error occurs.
          -->
        <validationErrorMessages>
            <!--
                    A required field is not filled in.
              -->
            <message type="fieldIsRequired">{LABEL} is required.</message>
            <!--   
                    The specified e-mail address is incorrect.
              -->
            <message type="emailNotValid">{LABEL} - is not valid email address.</message>
            <!--
                    The specified number of characters in a field is less than a required minimum.
              -->
            <message type="minCharsLimitError">{LABEL} - The specified number of characters in a field is less than a required minimum.</message>
            <!--
                    The specified string does not match with the regular expression.
              -->
            <message type="reqExpError">{LABEL} - The specified string does not match with the regular expression.</message>
            <!--
                    The specified number is greater than an acceptable biggest number for this field.
              -->
            <message type="biggerThanMaxError">{LABEL} - The specified number is greater than an acceptable biggest number for this field.</message>
            <!--
                    The specified number is lower than an acceptable lowest number for this field.
              -->
            <message type="lowerThanMinError">{LABEL} - The specified number is lower than an acceptable lowest number for this field.</message>
            <!--
                    The data is not a number.
              -->
            <message type="notANumberError">{LABEL} - The data is not a number.</message>
            <!--
                    The specified number must not be negative.
              -->
            <message type="negativeError">{LABEL} - The specified number must not be negative.</message>
            <!--
                    The minimum number of variants is not selected
              -->
            <message type="minRequirementError">{LABEL} - The minimum number of variants is not selected</message>
            <!--
                    The number of variants selected exceeds the maximum
              -->
            <message type="maxRequirementError">{LABEL} - The number of variants selected exceeds the maximum</message>
            <!--
                    The fields that should be equal do not match
              -->
            <message type="shouldBeEqualError">{LABEL} - values do not match</message>
            <!--
                     The date has wrong format.
              -->
            <message type="dateIsNotValidError">{LABEL} - date has wrong format</message>
        </validationErrorMessages>
    </contactFormConfiguration>
    THIS IS THE ACTUAL CONTACT.PHP Form That i would like to link to.
    <?php
    //-----------------Getting data sent by flash---------------------
    foreach ($_POST as $key => $value){
            if ($key != 'mail_to' && $key != 'smtp_server' && $key != 'smtp_port' && $key != 'mail_from' && $key != 'mail_subject' && $key != 'plain_text'){
                $mail_body .= '<b>'.str_replace('_',' ',$key).'</b>:<br/>';
                $mail_body .= ''.stripslashes($value).'<br/>';
    $message = '<html><body>'.$mail_body.'</body></html>'; //  mail body
    //------------if plain text is set to true removing html tags------
    if ($_POST['plain_text']=='true') {
        $message = str_replace('<br/>',"\r\n", $message);
        $message = strip_tags($message);
    } else {
    //----otherwise composing message headers---------------------------
        $headers  = 'MIME-Version: 1.0' . "\r\n";
        $headers .= 'Content-type: text/html; charset=windows-1251' . "\r\n";
    //------------setting conf data-------------------------------------
    $to = $_POST['mail_to'];
    $from = $_POST['mail_from'];
    $subject = $_POST['mail_subject'];
    $smtp_server = $_POST['smtp_server'];
    $smtp_port = $_POST['smtp_port'];
    //---------setting header info--------------------------------------
    $headers .= 'From:' .$from;
    if (mail($to, $subject, $message, $headers)){ // sending mail
        print('&mail=1');  //succes
    } else {
        print('&mail=0');//failure
    ?>

    You can open both Muse files at once, copy the content of a page on one site, then paste it into a new page on the other site. You might have to redo some of the page styling.

  • How do I create a URL from ID to PDF to Entourage?

    G5 Mac. Tiger. ID CS 4.
    I'm 2/3 of the way there. The last 1/3 id the hassle.
    I type out a URL in ID 4 and follow this path: Type > Hyperlinks & Cross-References > New Hyperlink from URL. Do Save as... , and have a usable URL link that does not work in ID but does not need to.
    If I then save it as a PDF and open the PDF, the hyperlink to the URL works perfectly.
    If I then place that PDF into an Entourage email, the link does not work, and if I send it to someone, of course it still does not work.
    I want to place a PDF into an Entourage email with one or more URLs that do work within the PDF, not as separate email text.
    How can I do that part?
    Thank you.

    Thanks Bob. I think now I have to do it as you say.
    I also found I have to use Mail, not Entourage, if I want to place images,
    PDFs, whatevers, above and below text where I want them. In Ent, they all
    sink like oil to the bottom. Did one Mail test, I had text > PDF > text >
    PDF which looked fine, then I sent it to myself to receive in Entourage, the
    text and images were positioned as I wished, but, in the Entourage window,
    the two PDFs came out rather tiny.
    A step at a time I guess.

  • FM "open form  ; how to craete create SPOOL REQUEST

    Hi.
    I have a Z program n layout . We have used a FM "open form."
    But when I run, i dont get spool      
    In this case I want to create SPOOL REQUEST whenever I run program.Can anyone
    suggest what fields I need to mark in ITCPO and NAST or more than these.

    Hi,
    Check this link :
    http://www.thespot4sap.com/articles/SAPscript_example_code.asp
    Regards
    Appana

  • In oracle forms how to restrict creating new record

    I have a multi record block, I dont want to create new record. If I use the down key after the last record control is moving to next record. I dont want this to happen. I want to scroll between first and last record.
    Can anyone tell me ?

    Look up the Forms Help for 'system.last_record'.
    I'd code the KEY-DOWN trigger on the block as...
    IF :System.Last_Record = 'TRUE' THEN
    Bell;
    Message('You are on the last row');
    ELSE
    down;
    END IF;
    This avoids any processing or validation work being done on leaving the current record or creating the new record.

  • How can I create a URL for a PWA for MS Project Server 2013 project file that includes the view?

    In earlier versions of PWA a URL for a project could include information on the particular view used. This was very handy for emailing people since when they clicked the URL they would see only the particular tasks in that view. In PWA for Project 2013
    the URL contains the info for the project file only and does not include the view or filter or anything else.

    Hi Scott,
    As far as I can see, this is not possible anymore, since the view's list in the PDP (for example schedule PDP) is affecting only the webpart and not the entire webpage, meaning that the URL is not connected anymore to the view and vice-versa.
    Indeed this could be annoying..
    Hope this helps.
    Guillaume Rouyre - MBA, MCP, MCTS

  • How do you create sprite reference in javascript format?

    I am a flash developer who is new to director. I am using
    java script syntax. I have done a bit of looking around with no
    luck, I assume I am missing something obvious.
    I declare a global array and try to add sprite references to
    it. Basically like I used to do in ActionScript in Flash.
    _global.fieldArrayFindAName_G = new Array();
    _global.fieldArrayFindAName_G[0] =
    _movie.sprite["_txtDonorField0"];
    trace(_movie.sprite["_txtDonorField0"]); // Message window
    shows <(sprite 6)>
    trace(_global.fieldArrayFindAName_G[0]); // Message window
    shows <(sprite 6)>
    // Crash here --> script error property not found #text
    _global.fieldArrayFindAName_G[varLoop].text = "";
    Any guidance would be greatly appreciated.
    TIA
    Tim

    I was missing something obvious.
    _global.fieldArrayFindAName_G[0] =
    _movie.sprite["_txtDonorField0"].member;
    And I need a seperate cast member with sprite for each text
    'field' I want to update. How clunky...

Maybe you are looking for

  • Can i sync my old itunes music onto my new ipod?

    I just got a new ipod touch i have my old itunes account with all my music on it but i also have a new icloud account and im not sure if i can sync my already puchesed music from my itunes account to the new ipod, and if so can i select only certain

  • [SOLVED] Diablo 2 wont stop asking for the disks

    No matter how I try to install Diablo 2, it always asks for the disk even when the disk in in my drive. I have tried installing it on a Windows XP machine, updating to the latest patch, and then moving it to my computer, and I have tried installing f

  • Blank row in table....

    Hi all,        I have a serious problem with the table UI. In screen 1 ,I have  a table where I multiselect the table rows and press "next Button" this action leads to the Screen 2, where a summary of the previously selected rows is displayed.. Here

  • Browser links return "Could not load file/URL specified:"

    The JWS application manager works great, but the links in my browser return an error saying "Could not load file/URL specified:" followed by the path to my temporary internet files. Why does JWS, through my browser, always look to my temporary intern

  • Why my reader not beep

    hi friends, i'm working with smart card reader. my problem is i try to make my reader beeping. i just have to send a byte to the reader. but the reader still not working. i dont know either my program is wrong. its communicate used serial port rs232