Dynamic Refresh not working

Hello Experts
I have a text box and a select list. As soon as the user enters a value in the text box, the select list should refresh depending on the value that has been entered in the text box. I have a query behind the select list which selects from a table where value = text box value.
To achieve this I created a dynamic refresh on the text box so that it freshes the select list as soon as the focus is lost, but everytime I run the page, a refresh icon appears next to select list but it seems to refresh forever and nothing gets populated in the select list. If I submit the page then the list is populated, but I don't want to submit the page but want to pick up the value from the text box and refresh the select list.
Any help on this is appreciated.
Thanks

Hi,
>
I have a text box and a select list. As soon as the user enters a value in the text box, the select list should refresh depending on the value that has been entered in the text box. I have a query behind the select list which selects from a table where value = text box value.
To achieve this I created a dynamic refresh on the text box so that it freshes the select list as soon as the focus is lost, but everytime I run the page, a refresh icon appears next to select list but it seems to refresh forever and nothing gets populated in the select list. If I submit the page then the list is populated, but I don't want to submit the page but want to pick up the value from the text box and refresh the select list.
>
You cannot use LoV based on SELECT as the SELECT will execute only when the page is loaded, which you have already noticed.
What you need to do is construct the HTML fragment for the select list and push it into your HTML DOM as described in Denes Kubicek's demo.
Cheers,

Similar Messages

  • Why Does Dynamic Link Not Work

    I purchased the CS5 Adobe Production Premium.  I have been working in Premiere and I have been learning about how to use Dynamic Link. I want to be able to alter clips in After Effects and bring them back and forth into Premiere.  When I go to File/ Adobe Dynamic Link/New After Effect Composition, I get this message:
    Adobe Dynamic Link Requires Adobe Production Premium.
    Since I own production premium, I do not know why I am getting this message.  I have reinstalled the CS5 Production Premium Software twice and it still gives me the same message.  What can I do to get Dynamic Link Working.

    Thank you for the tip.  Could you possibly tell me how to deactivate and
    then reactivate the suite.  I am using a Macbook Pro laptop running OS
    10.6.4.  I do not even know where to start.
    From:   Colin Brougham <[email protected]>
    To:     Dan Seanor <[email protected]>
    Date:   03/15/2011 09:55 AM
    Subject:        Why Does Dynamic Link Not Work
    Deactivate the software (not uninstall), and then reactivate the suite.
    This often fixes this. You can opt to leave the serial number on the
    system; no need to clear it and re-enter it.

  • Dynamic action not working

    Hello All,
    I have created a dynamic action for cascading select list.
    I have a select list(List_1) item and and a tabular form containing a select list(List_2), this tabular form List_2 is dependent on List_1.
    So I have created a dynamic action on change of List_1, this is the code I used
    var l_Return = null;
    var get = new htmldb_Get(null,html_GetElement('pFlowId').value,
                  'APPLICATION_PROCESS=SELECT_DRUG_QUANTITY',0);
    var treat_id = document.getElementById('P533_TREATMENT').value;
    //alert(treat_id);
    get.add('TABU_CASCADING_ITEM',treat_id);
    gReturn = get.get('XML');
    var l_Count1 = gReturn.getElementsByTagName("qntity").length;
    var l_Select = html_GetElement('f30_1');
    l_Select.length = 0;
    for(var i=0;i<l_Count1;i++){
      l_Opt_Xml = gReturn.getElementsByTagName("qntity");
    appendToSelect(l_Select, l_Opt_Xml.getAttribute('value'),
    l_Opt_Xml.firstChild.nodeValue);
    If you can see there is a alert in between, if I enable it cascading list is working but when I comment that alert it is not working.
    As I can see we don't have "Page Item to Submit" for Execute javascript Action.
    Please let me know where I am going wrong.
    Thanks
    Tauceef                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Hello Tauceef,
    I am having similar issue.. see following thread.
    Report refresh, Strange behaviour
    The DIRTY work-around I have used is to put some delay using setTimeout function.
    Try to put following code in other JS function and schedule it to run after 30 secs.
    var l_Count1 = gReturn.getElementsByTagName("qntity").length;
    var l_Select = html_GetElement('f30_1');
    l_Select.length = 0;
    for(var i=0;i<l_Count1;i++){
      l_Opt_Xml = gReturn.getElementsByTagName("qntity");
    appendToSelect(l_Select, l_Opt_Xml.getAttribute('value'),
    l_Opt_Xml.firstChild.nodeValue);
    Regards,
    Hari

  • Dynamic configuration not working in Java mapping

    Hi All,
    I have a scenario where i  am using java mapping. In this i am doing following
    1)Read file name from input message header
    2)set file name in output message Header
    3) set Directory name in output message Header
    i  have used following code .. but iit is not working... when i test end  to end...  in reciver communication channel it is failing stating " message failed as "Directory is not set in Header. Also i checked in SXMB_MONI  "dynamic configuration".It is not showing Directory.
    this is code.
    public void transform(TransformationInput transformationInput,TransformationOutput transformationOutput)
                   throws StreamTransformationException {
                   private Map para;
                   String Directory ;
                   String  inputFileName;
                   String var1 = "ABC";
                   para = transformationInput.getInputHeader().getAll();
                   DynamicConfiguration conf = (DynamicConfiguration) para
                             .get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
                   DynamicConfigurationKey keyFileName1 = DynamicConfigurationKey
                   .create("http://sap.com/xi/XI/System/File", "FileName");
                         inputFileName = conf.get(keyFileName1);
                   DynamicConfigurationKey keyFilename = DynamicConfigurationKey
                             .create("http://sap.com/xi/XI/System/File", "FileName");
                   DynamicConfigurationKey keyDirecory = DynamicConfigurationKey
                             .create("http://sap.com/xi/XI/System/File", "Directory");
                   Directory = "tmp/"+var1;
                   conf.put(keyFilename,inputFileName);
                   conf.put(keyDirecory, Directory);
    I am in PI 7.1 ,   and in eclipse its showing warning that Para is not used.
    Can anyone show some lights.
    Also is there any way to debug this?? like is there any function by which i can write the trace for each step to see those in MONI.

    Method name:   public void createDirectory(Resultlist result, Container container)throws StreamTransformationException
    //Use Simple UDF and do the following lines
    String Directory ;
    String  inputFileName;
    String var1 = "ABC";
    DynamicConfiguration conf = container
        .getTransformationParameters()
        .get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
      DynamicConfigurationKey keyFileName1 = DynamicConfigurationKey
                   .create("http://sap.com/xi/XI/System/File", "FileName");
      inputFileName = conf.get(keyFileName1);
    DynamicConfigurationKey keyFilename = DynamicConfigurationKey
                   .create("http://sap.com/xi/XI/System/File", "FileName");
    DynamicConfigurationKey keyDirecory = DynamicConfigurationKey
                   .create("http://sap.com/xi/XI/System/File", "Directory");
    Directory = "tmp/"+var1;
    conf.put(keyFilename,inputFileName);
    conf.put(keyDirecory, Directory);
    and remove these 3 lines
    //private Map para;
    //para = transformationInput.getInputHeader().getAll();
    //DynamicConfiguration conf = (DynamicConfiguration) para.get(StreamTransformationConstants.DYNAMIC_CONFIGURATION
    >>I am in PI 7.1 , and in eclipse its showing warning that Para is not used.Can anyone show some lights.
    You can simply remove declaring Map Para line... The eclipse gives warning because you dont assign values for it and you are trying to use...
    For using the same input file name in output side, you dont need coding ... you need only for the directory...
    Enable ASMA attributes in the channel.
    Edited by: Baskar Gopal on Feb 24, 2011 10:58 AM

  • Dynamic Stamps Not Working in Adobe Acrobat Pro

    Hi everyone, the dynamic stamps on Adobe Simultaneous Review are no longer working for us. I have Adobe Acrobat Pro 9 (it works for me) but it's not working for many other people (they have Adobe Acrobat Pro X). Does anyone know how we can fix this. I think the problem started occurring a few months ago.
    Many Thanks!
    Joy

    You can shutting down Acrobat and then try moving (DO NOT DELETE - you may want put them back afterward if this doesn't work) the Collab and Sync folder out of the User's Acrobat folder and then rejoin the Shared Review to see if the Dynamic Stamps reappear.

  • Adobe Premiere Pro CS5 Dynamic Link not working as part of Production Premium CS5

    I ran into a situation whereby I recently reinstalled my Production Premium CS 5 onto a new computer and when trying to run the Dynamic Link out of Premiere PRO CS 5 to create a new After Effects composition, After Effects tried to start up but then crashed with the error that Production Premium was needed.
    Yet, I had Production Premium CS5.
    (Note:  The crash didn't occur when I simply tried to use Dynamic Link without anything selected in my project or timeline - but the moment I had a clip in my timeline selected to work on it, the dynamic link would not work as covered above.)
    In checking around the forums I found various answers to this problem such as rebooting the computer, reformatting hard drives and/or whatever.  This all may be correct.
    However, as I just went through that nightmare, I was not anxious to do that again.  So, I called Adobe and the following solution solved the matter in 5 minutes:
    1. Close all your other Adobe applications such as After Effects.
    2. Open up Premiere Pro CS5 and then deactivate it by going to HELP>DEACTIVATE and then Permanently Deactivate.
    3.Close the application and restart Premiere Pro CS5.
    4.Then do the same to Activate it.
    5. Have your serial number handy and plug it in when prompted.
    Solved it right away and worked beautifully.
    Not to say there couldn't be more complicated situations, but the above worked and the simpler the better is good for me. And I thought I would post this in case anyone else ran into this problem.

    Thanks for posting your solution.

  • Form in Dynamic page not working when checkbox is used.

    I have created a form using dynamic page. The form most have display fields and a checkbox field. When I check a box, it assigns 'Y' value and when unclick, it assign 'N' to the database field.
    When I submit the form, the procedure which is supposed to save the form data never gets executed. Well, at least it says, page not found HTTP 404 error.
    Interestingly if I make this field a text box and manually enter 'Y' or 'N', and then submit the form, the procedure is executed. Data gets saved.
    Is the checkbox not supposed to be used for a database field because checkbox value can be assigned only using javascript and the procedure never get that value ?
    Can you please tell me how to use a checkbox for a database field using dynamic page ?
    thanks,
    Mainak

    Sharmila,
    When I said, the form does not get submitted, I meant that the procedure does not work. The form gets submitted but the procedure does not work. It gives HTTP 404 error. That is what perplexes me. I am unable to understand why the procedure does not work when I click a checkbox.
    May be you can make this work. I am hopeless about this.
    Here is the code for the procedure sumbit_form:
    NOTE: I ADDED TWO FIELDS CALLED PROMOT VARCHAR2(1), PROMOTID NUMBER(4) TO THE EMP TABLE AND CREATED A NEW TABLE CALLED PROMOTEMP. THIS IS A TEST CASE.
    create or replace procedure sumbit_form
    (p_empno IN portal30.wwv_utl_api_types.vc_arr, p_promot IN portal30.wwv_utl_api_types.vc_arr, p_action IN VARCHAR2)
    is
    begin
    if p_action = 'save' then
    for i in 1..p_empno.count LOOP
    update scott.promotemp
    set promot = p_promot(i)
    where empno = p_empno(i);
    END LOOP;
    end if;
    commit;
    htp.p('<b>Saved Successfully</b>');
    htp.p('<table border=1 bordercolor="red">');
    for c1 in (select * from promotemp where promot='Y')
    LOOP
    htp.p('<tr><td>');
    htp.p(c1.ename);
    htp.p('</td><td>');
    htp.p(c1.job);
    htp.p('</td><td>');
    htp.p(c1.mgr);
    htp.p('</td><td>');
    htp.p(c1.sal);
    htp.p('</td><td>');
    htp.p(c1.deptno);
    htp.p('</td></tr>');
    end loop;
    htp.p('</table>');
    EXCEPTION
    when others then
    raise;
    end;
    Here is the code for the dynamic page.
    <HTML>
    <HEAD>
    <TITLE>Promot Emp</TITLE>
    <script language="JavaScript1.1">
    function include(form) {
    var thisform = form;
    for (var i=0; i<thisform.length; i++) {
         if (thisform.elements.type == 'checkbox') {
              if (thisform.elements[i].checked) {
                   thisform.elements[i].value = 'Y'; }
              else { thisform.elements[i].value = 'N'; }
    form.submit();
    function show(form) {
    var thisform = form;
    for (var i=0; i<thisform.length; i++) {
         if (thisform.elements[i].type == 'checkbox') {
              if (thisform.elements[i].value = 'Y') {
                   thisform.elements[i].checked = true; }
              else { thisform.elements[i].checked = false; }
    </script>
    </HEAD>
    <BODY>
    <FORM action="scott.sumbit_form" method="post">
    <table border=1 bordercolor="red">
    <tr>
    <td> </td>
    <td>Name</td>
    <td>Job</td>
    <td>Manager</td>
    <td>Hire Date</td>
    <td>Commission</td>
    <td>Department#</td>
    <td>Include</td>
    </tr>
    <ORACLE>declare
    i number;
    begin
    i := 0;
    for c1 in (select * from scott.promotemp where promotid = :promotid)
    loop
    htp.p('<tr><td>');
    htp.p('<input type="hidden" name="p_empno" value='||c1.empno||'>');
    htp.p('</td><td>');
    htp.p(c1.ename);
    htp.p('</td><td>');
    htp.p(c1.job);
    htp.p('</td><td>');
    htp.p(c1.mgr);
    htp.p('</td><td>');
    htp.p(c1.hiredate);
    htp.p('</td><td>');
    htp.p(c1.comm);
    htp.p('</td><td>');
    htp.p(c1.deptno);
    htp.p('</td><td>');
    if (c1.promot = 'Y') then
    htp.p('<SELECT NAME="p_promot" SIZE="1">
    <OPTION SELECTED VALUE="'||c1.promot||'">Yes
    <OPTION VALUE="N">No
    </SELECT>');
    else
    htp.p('<SELECT NAME="p_promot" SIZE="1">
    <OPTION SELECTED VALUE="'||c1.promot||'">No
    <OPTION VALUE="Y">Yes
    </SELECT>');
    end if;
    htp.p('</td></tr>');
    end loop;
    htp.p('</table>');
    htp.p('<input type="submit" value="save" name="p_action">');
    end;
    </ORACLE>
    </form>
    </BODY>
    </HTML>
    thanks,
    Mainak

  • Dynamic Configuration not working with Integrated Configuration

    Hi All,
    Dynamic Configuration works fine in PI 7.3 when Classical Configuration is used. However the same does not work using Integrated Configuration.
    Scenario :
    SOAP -->SOAP Synchronous scenario in PI 7.3 (Dual Stack).
    Trying to save a value from Request mapping using dynamic configuration and use the same in response mapping.
    UDF Code :
    Request Mapping :
    DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey Variable = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/SOAP", "Variable1");
    conf.put(Variable, a);
    Response Mapping :
    DynamicConfigurationKey Variable = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/SOAP", "Variable1" );
    string1 = conf.get(Variant);
    Note : Using Integrated Config(AAE Processing) - Response header does not have DynamicConfiguration header node , but Classical Configuration has that.
    Regards,
    Parimala
    Edited by: ParimalaE on Mar 1, 2012 1:33 PM

    For us this is what we had:
    This didn't work (getInputParameters is the newer stuff that doesn't work):
    DynamicConfiguration dc = (DynamicConfiguration)container.getInputParameters().getValue(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey dck = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/SOAP","TServerLocation");
    dc.put(dck,"https://xyz.api-salesforce.com/services/Soap/c/26.0/0DFa00000008jis");
    return "";
    This works for us(we had to remove getInputParameters):
    DynamicConfiguration dc =  (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey dck = DynamicConfigurationKey.create("http://sap.com/xi/XI/System/SOAP","TServerLocation");
    dc.put(dck,"https://xyz.api-salesforce.com/services/Soap/c/26.0/00D3000000001X0");
    return "";

  • Dynamic query not working

    hi
    im using a dynamic query to put in an internal table but its not working
    Can you see whats wrong in that?
    gv_query = ' au~uname AS OTCTUSERNM,'.
    CONCATENATE gv_query  'a1object' '.' 'a1field'  ' AS  0TCTAUTH'  INTO gv_query.
    CONCATENATE gv_query  'au~to_dat AS OTCTADTO, OTCTOBJNM, ' INTO gv_query.
    SELECT DISTINCT (gv_query)
      INTO CORRESPONDING FIELDS OF TABLE gi_ds1
      FROM agr_users AS au INNER JOIN
      agr_1251 AS a1
      ON auagr_name = a1agr_name.

    Hello,
    Following are the observations:
    1. gv_query = ' au~uname AS OTCTUSERNM,'.
    >> In above string i think you want to use uname column as OTCTUSERNM and it is correct
    2. CONCATENATE gv_query 'a1object' '.' 'a1field' ' AS 0TCTAUTH' INTO
        gv_query.
    >> In statement 2 above I am not able to understand whey 'a1object' '.' 'a1field'  this is incorrect.
         Also '.' (dot) in not required in query it will be either '~' or 'AS' as valid chars.
    3. CONCATENATE gv_query 'au~to_dat AS OTCTADTO, OTCTOBJNM, ' INTO gv_query.
    >> In statement 3 above whey OTCTOBJNM is used there is no such column exit in AGR_USERS.
    4. SELECT DISTINCT (gv_query)
        INTO CORRESPONDING FIELDS OF TABLE gi_ds1
        FROM agr_users AS au INNER JOIN
        agr_1251 AS a1
        ON auagr_name = a1agr_name.
    >> In above statement a1 is used as alias for AGR_USERS then why it it not there in statement 3 where instead au is used.
    Normarlly query is like this
    '<alias1><col_name1> as <col_desc1>, <alias2><col_name2> as <col_desc2>......up to n cols
    In this case it is possible that alias1 and alias2 are used for different table in case of joins and for same table in case of self joins.
    Finally, You can only define colums in dynamic query those are available in the table from which we have to select the data.
    Hope this helps.
    Thanks,
    Augustin.

  • Dynamic Link Not Working

    To anyone that can help..
    I am having several issues with adobe at the moment and really need some advice. i have tried adobe themselves, they struggled to help too, but that was mainly down to language issues.
    I have a Canon XHA1S camera with an external shotgun mic Rodeo NGP-2. All of which at some point worked through premiere pro CS5 and encore. i was living the dream.
    Then one day, it all started having issues.
    Problem #1 - Dynamic Link stopped working
    Once my project is done, i would send it to Encore via dynamic link and produce my DVD in either regular or blu ray. Now it doesn't. A box 'import premiere pro sequence' comes up but encore crashes before it can complete the import. sometimes a message telling me "the software thats used to decode the media is not available on this system. installing the correct decodes for the file your working with may help correct the problem" comes up too
    Its strange that i've produced about 20 disks with no issues but now a problem. was told by adobe it could relate to the file/pixel size? but again have no idea why this is now a problem now and not before, in fact i would just be happy to know how to change it so it can work? Can anyone help?
    Problem #2 - Audio
    The only way i am able to make a disk at the moment is to produce it on DVD maker - it's the only way until i get my issues resolved. however my external mic is not coming through, this has something to do with the sound quality to the mic being 44.1 and the DVD maker requiring 48mhz. i can't seem to convert this to work in anything but AVI (would like MPEG-2) but then the picture quality drops to something similar to a tribul rubbing.
    If anyone knows of something or can point me in the right direction i would be very greateful
    Thanks

    Especially for Bluray or DVD that is HD to SD, DL must sometimes be avoided.
    But the type of problem you are having may indicate other problems. If regular projects are not working, see these:
    Troubleshoot damaged projects in Encore on Windows
    http://kb2.adobe.com/cps/406/kb406006.html
    Troubleshoot system errors and freezes | Adobe software on Windows
    http://kb2.adobe.com/cps/822/cpsid_82252.html
    Regarding the audio, can't you just export as 48K?

  • Background app refresh not working mail app

    I have an Iphone 4 with the latest IOS7. Background app refresh is on but it's not working, at least for Mail and Mailbox app. I already tried reseting all settings and restarting.
    This is what I do to test if it's working.
    1) I send myself a test email
    2) I wait to see if I get the badge count update (I get it in mailbox but I dont get it in Mail app)
    3) I put the phone in airplane mode
    4) I open the apps to see If the test email was download while I was on wifi and it's not there.
    Also it's very strange that my mail app badge count doesn't get updated...

    So here is what I ended up doing.
    I did a fresh restore and logged into my icloud. I waited for all my calendars, contacts, reminders, ect. to sync and turned off icloud but selected the option to keep that data on my phone. Then I created a new icloud account and waited for the new data to sync to my new icloud. After that I performed another fresh restore but this time I logged into my new icloud. I downloaded "Newsify" again and waited for it to do the background app refresh and it did :). It turns out that it stopped doing it and it was the app the whole time of just buggy ios 7 so I restored from the backup I did before all of this and end of sotrie.

  • Dynamic conversion not working if SSEnableDirectDelivery is set to true

    hi experts,
    In our site, we have downloadable pdfs,docs,videos etc. So in order to achieve this, we have used following configuration :
    SSEnableDirectDelivery=true
    SSDirectDeliveryExtensions=pdf,doc,ppt,jpg,gif,docx,pptx,gif,png,tif,eps,dot,html,zip,swf,exe,xls,xlsx,flv,mp3,mp4,fla,ppsx
    Now, we have planned to use dynamic converter to convert word douments into HTML and display on site for Press Releases. As we have enabled SSEnableDirectDelivery, Dynamic conversion is not working.
    we have a dynamic list on Primary Layout (hcsp template) that displays list of Press Releases. When we click on Press Release link, the word documents start downloading......
    the steps are as follows :
    1. Added SSEnableDirectDelivery=true and SSDirectDeliveryExtensions=pdf,doc,docx to config.cfg . Restarted the UCM server .
    2. Added Dynamic List Plain fragment to a section of the site . Set the query to retrieve all the contents with extension .doc
    3. Launched the site from a browser and the section where DL was added . This listed the word documents (extension with .doc)
    4. Selected the word doc and see that it is being downloaded .
    I also tired following :
    <!--$xml(dDocTitle)-->
    it is working fine but issue is that URL in browser changed to http://example.com/idcplg?IdcService=GET_DYNAMIC_CONVERSION&RevisionSelectionMethod=LatestReleased&dDocName=id_003461
    I dont want to expose this url, i want to show the friendly URL in Browser
    e.g
    http://exmaple.com/corporate/press-release/P09082010.html
    please help!!!!!!!!!

    help please

  • Dynamic URL not working in email

    I have a question on dynamic URL. In my report I have a help image which has hyperlink (when you click on the image which will take you to a help PDF file on the SharePoint) . This hyperlink is working fine in the browser but when I email the report 
    my Hyperlink is not working as there will be no server name to dynamically pick up in the email. I am using Java Script can any one tell me how can I make my dynamic hyperlink work in the email without hardcoding the URL.
    My current URL:
    =”javascript:void(window.open(‘http://’+window.location.hostname+%20′/Library/Reports/Report%20Test.pdf’,'popup’,'target=_blank,resizable=1,toolbar=0,menubar=0,location=0′))”
    Thanks in advance.

    Hi Ranjith,
    Based on my test, javascript URL cannot work when we email report use MHTML format. However, it is fine when we view the email in a web browser. If we are use original URL, it is work fine no matter which format we are use. Please try to use original URL
    in the report to check if the issue is persist.
    If the issue is persist, please clarify the render format of the subscription. It is benefit for us to do further analysis.
    Regards,
    Alisa Tang
    Alisa Tang
    TechNet Community Support

  • Dynamic spelling not working

    hello forumers.
    ive got dynamic spelling turned on,So on one document its working,but on another it aint.
    so on the document thats its not working i deliberately make mistakes incase the words gets undermarked with red lines but nothing is working.
    what can i do?
    thank you.

    Trash the prefs first: Replace Your Preferences.You may not need to reinstall.
    I asked about the language because that's a character level attribute -- select some text and look in the character panel or the control panel for the language assigned -- and that determines what dictionary is used. If the language is set to no language there will be no spell checking.

  • Dynamic Hyperlink not working in word output

    Hi,
    I am trying to add employee's mail id as a hyperlink in word output file but it is not working. In the link it is appending the path of server directory where file is getting exported. Please help me with this issue as i am not sure where i am making mistake in the code.
    <?variable@incontext:e;.//fields/field[label=’Email’]/value?><fo:basic-link external-destination="{$e}" color="blue" text-decoration="underline"><?$e?></fo:basic-link>
    Thanks and regards,
    Aditya

    ok
    <?variable@incontext:e;VAL?>
    <fo:basic-link external-destination="mailto:{$e}" color="blue" text-decoration="underline"><?$e?></fo:basic-link>works for me
    may be "<?variable@incontext:e;.//fields/field[label=’Email’]/value?>" wrong?
    so post sample xml

Maybe you are looking for