Form Select with additional menus on call

I'm trying to figure out if Spry does this example where you
start with a drop down menu for a topic and if you want to add
another version of the same menu, you just click a '+' button and
it adds another field like a repeat region and keeps doing so as
long as you want to add more fields. I've seen it done in Ajax but
not in Spry. Anyone do this yet?
The idea is that I have a client who is a photographer and
he's got an order form with 25 of the exact same field with two
text input area on the left and a pull down on the right and it
would be so much cleaner to just have one and if the person making
the order wants to add more of the same areas or div's he can just
click a button and add more of the same fields.

very helpful....
I saw that maybe my code wasn't java.... hence the posting in "new to java!" :)
Here is the code where my problem originated
original
<script type="text/javascript">
          coded = "[email protected]"
               cipher = "aZbYcXdWeVfUgThSiRjQkPlOmNnMoLpKqJrIsHtGuFvEwDxCyBzA1234567890"
               shift=coded.length
               link=""
               for (i=0; i<coded.length; i++){
                    if (cipher.indexOf(coded.charAt(i))==-1){
                         ltr=coded.charAt(i)
                         link+=(ltr)
                    else {    
                         ltr = (cipher.indexOf(coded.charAt(i))-shift+cipher.length) % cipher.length
                         link+=(cipher.charAt(ltr))
function get2(id) {
               proj = document.getElementById(id).value;
               if (proj == 'contact')
                    location.href = 'mail\u0074o\u003a'+link;
               else
                    location.href = proj;
     </script>+
<select name="url" class="sel" id="select" onChange="get2('select')">
           <option value="image-1" >1</option>
        <option value="image-2" >2</option>
        <option value="image-3" >3</option>
    </select>

Similar Messages

  • How can I store a form name with path and then call form from a table

    Is it possible that any form that I built I store that form in some table in DB and then call that form from table, if yes, then how can i get this functionality. I am not very experience in form and do not know if it can be done because i think if it is possible then this can be a good security for application and easy to handle as well.
    Thanks in advance
    Maz

    If you have a Forms block based on this table:
    declare
      module varchar2(100);
    begin
      module := :block.column;
      call_form ( module ) ;
    end;If you don't have any blok based on that table
    declare
      module varchar2(100);
    begin
      select  module_name
      into module
      from ...
      where ...
      call_form ( module ) ;
    end;Francois

  • Safari 5.1 disables form select with @font-face

    If I add css @font-face AND background-color to <select> it wont show options instead it reloads the page. It works just fine in Safari 5.05, FF, Chrome and Opera but not safari 5.1. Is it a bug in Safari or is it the code? Tested on iMac and Macbook Air.
    Example: www.mindwerk.dk/admin.php
    <style type="text/css">
    @font-face {
              font-family:Century_Gothic;
              font-weight:normal;
              src:url(fonts/Century_Gothic.otf);
    select {
              font-family: Century_Gothic, Verdana, Geneva, sans-serif;
              background-color:#e0e0e0;
    </style>
    <form action="index.php" method=post>
        <ul>
            <li>
                <label>Choose:</label>
                <select name=remember>
                    <option value=yes>yes</option>
                    <option value=no>no</option>
                </select>
            </li>
        </ul>
    </form>
    Anyone experience the same?

    I am getting the same thing on certain site site. Such as abduzeedo.com
    KJ

  • Form Select with Data

    URL:
    http://www.imemories.com/support/index.htm
    Spry region in question is in the top left box, under
    "Technical Support Online".
    Issue: after selecting "Product" and "Topic", and hitting
    "Reset", "Product" gets cleared, but not the "Topic".
    How to clear both?
    Any help will be much appreciated.

    Exactly so! Thanks Scott for setting me straight. For the benefit of other readers, the value in the Source Used column had been set to "Always, replacing any existing value in session state" and should have been set to "Only when current value in session state is null".

  • Javascrip call sqldatasource select with parameters

    It is possible call sqldatasource select with setting parameters in javascript function?

    Hello JoneCunha,
    It is much better for you to post javescript related question to ASP.NET forum or other related forum, this forum topic is C# language not for JaveScript.
    Best regards,
    Barry
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • What FM is called on click of "To Form Selection" button in team viewer

    Hi experts,
         I am working in team viewer in MSS portal and need to cutomize some code in any FM that gets called when you click on button "to form selection" after selecting employee. I rsearched everywhere in portal and all documentation in company and SDN but could not find any information. Could you please share this information if you happen to know the answer?
    Thanks.
    Mithun

    Hello All,
    Can some one please help me out to find a place where we can write our code on click of Login button in EP 7.4.
    Regards,
    Rajesh

  • Calling web service from oracle forms fails with ORA_JAVA.JAVA_ERROR

    Problem Description:
    I'm following the steps as per the doc:
    http://www.oracle.com/technology/products/forms/htdocs/10gr2/howto/webservicefromforms/ws_10_1_3_from_forms.html
    to create a java stub to call external web service and then use java importer in oracle forms to call this web service from oracle forms.
    WSDL for external web service used is http://www.webservicex.net/CurrencyConverter.asmx?wsdl
    Calling the web service using JDeveloper works fine but from Oracle Forms returns ORA_JAVA.JAVA_ERROR; Unable to call out to Java, Invalid object type for argument 1
    The code from oracle form to call web service is as below:
    DECLARE
    jo ora_java.jobject;
    rv ora_java.jobject;
    ex ora_java.jobject;
    outString varchar2(2000);
    BEGIN
    jo:= CurrencyConvertorStub.new;
    --This will get the exchange rate from US Dollars to UK Sterling.
    rv:= CurrencyConvertorStub.ConversionRate(jo,'CAD','USD');
    message (float_.floatValue(RV));
    EXCEPTION
    WHEN ORA_JAVA.JAVA_ERROR then
    message('Unable to call out to Java, ' ||ORA_JAVA.LAST_ERROR);
    WHEN ORA_JAVA.EXCEPTION_THROWN then
    ex := ORA_JAVA.LAST_EXCEPTION;
    outString := Exception_.toString(ex);
    message(outString);
    END;
    Any help/ideas on this is greatly appreciated. Thanks.

    Yes, it is the message line - so basically this call fails => rv:= CurrencyConvertorStub.ConversionRate(jo,'CAD','USD'); and control goes in the exception block
    WHEN ORA_JAVA.JAVA_ERROR then
    message('Unable to call out to Java, ' ||ORA_JAVA.LAST_ERROR);
    Below is the code from java stub that was generated using JDeveloper by using web services stub/skeleton and associating the WSDL
    public Double ConversionRate(String FromCurrency, String ToCurrency) throws Exception
    URL endpointURL = new URL(endpoint);
    Envelope requestEnv = new Envelope();
    Body requestBody = new Body();
    Vector requestBodyEntries = new Vector();
    String wrappingName = "ConversionRate";
    String targetNamespace = "http://www.webserviceX.NET/";
    Vector requestData = new Vector();
    requestData.add(new Object[] {"FromCurrency", FromCurrency});
    requestData.add(new Object[] {"ToCurrency", ToCurrency});
    requestBodyEntries.addElement(toElement(wrappingName, targetNamespace, requestData));
    requestBody.setBodyEntries(requestBodyEntries);
    requestEnv.setBody(requestBody);
    Message msg = new Message();
    msg.setSOAPTransport(m_httpConnection);
    msg.send(endpointURL, "http://www.webserviceX.NET/ConversionRate", requestEnv);
    Envelope responseEnv = msg.receiveEnvelope();
    Body responseBody = responseEnv.getBody();
    Vector responseData = responseBody.getBodyEntries();
    return (Double)fromElement((Element)responseData.elementAt(0), java.lang.Double.class);
    }

  • Text Area steals Focus from Text Field when selected with mouse

    I have created a very simple form with 4 spry validation elements here :: http://octopusdesign.net/contactus.html
    When I attempt to select the 'Your Email' text field using the mouse, focus is grabbed by the text area above it.
    It is only possible to get focus on the 'Your Email' text field by using tab.
    My best guess is that this is a bug in the framework.
    In addition to updating my spry libraries to 1.6 from 1.4 I've tried the following things::
    Reordering the elements in the form.
    Creating the elements in a different order.
    Replacing the validation elements with ordinary elements.
    None of these fixed the problem.
    Strangely, if I remove the validation text area there is no problem.
    If anyone can shed some light on this I would really appreciate it.
    Wisdom gratefully received.
    Chris

    Furthermore ::
    I've tried to reconstruct the form from scratch and discovered that if you have a validation text field and a validation text area in any order on the form, selecting the 2nd element with the mouse always results in the first element stealing the focus.

  • Dynamic select with field symbols

    Hi guys,
    I have 2 tables.
    First table is the popup fields using fm popup_get_values:
    tab1-tabname
    tab1-fieldname
    tab1-value
    Second table is the input fields to be displayed in the popup box:
    tab2-transactno
    tab2-docno
    tab2-customer
    tab2-postdate
    etc... (it has many fields)
    Let's say currently i loop at tab2 and assign each value of the individual fields to a variable each:
    loop at tab2
    v_transactno = tab2-transactno
    v_docno = tab2-docno
    etc...
    endloop.
    My question is how do i assign each variable to the popup fields according to the fieldname so that it can get its corresponding value correctly?
    How can this be done dynamically?
    Can the loop above be done dynamically as well coz it has alot of fields to cater for?
    Please help me solve this problem. Futher similar examples would be much appreciated as well.
    Thank you very much!

    Hi
    see the concept of field sysmbols and do accordingly
    Field Symbols
    Field symbols are placeholders or symbolic names for other fields. They do not physically reserve space for a field, but point to its contents. A field symbol cam point to any data object. The data object to which a field symbol points is assigned to it after it has been declared in the program.
    Whenever you address a field symbol in a program, you are addressing the field that is assigned to the field symbol. After successful assignment, there is no difference in ABAP whether you reference the field symbol or the field itself. You must assign a field to each field symbol before you can address the latter in programs.
    Field symbols are similar to dereferenced pointers in C (that is, pointers to which the content operator * is applied). However, the only real equivalent of pointers in ABAP, that is, variables that contain a memory address (reference) and that can be used without the contents operator, are reference variables in ABAP Objects.
    All operations programmed with field symbols are applied to the field assigned to it. For example, a MOVE statement between two field symbols moves the contents of the field assigned to the first field symbol to the field assigned to the second field symbol. The field symbols themselves point to the same fields after the MOVE statement as they did before.
    You can create field symbols either without or with type specifications. If you do not specify a type, the field symbol inherits all of the technical attributes of the field assigned to it. If you do specify a type, the system checks the compatibility of the field symbol and the field you are assigning to it during the ASSIGN statement.
    Field symbols provide greater flexibility when you address data objects:
    If you want to process sections of fields, you can specify the offset and length of the field dynamically.
    You can assign one field symbol to another, which allows you to address parts of fields.
    Assignments to field symbols may extend beyond field boundaries. This allows you to address regular sequences of fields in memory efficiently.
    You can also force a field symbol to take different technical attributes from those of the field assigned to it.
    The flexibility of field symbols provides elegant solutions to certain problems. On the other hand, it does mean that errors can easily occur. Since fields are not assigned to field symbols until runtime, the effectiveness of syntax and security checks is very limited for operations involving field symbols. This can lead to runtime errors or incorrect data assignments.
    While runtime errors indicate an obvious problem, incorrect data assignments are dangerous because they can be very difficult to detect. For this reason, you should only use field symbols if you cannot achieve the same result using other ABAP statements.
    For example, you may want to process part of a string where the offset and length depend on the contents of the field. You could use field symbols in this case. However, since the MOVE statement also supports variable offset and length specifications, you should use it instead. The MOVE statement (with your own auxiliary variables if required) is much safer than using field symbols, since it cannot address memory beyond the boundary of a field. However, field symbols may improve performance in some cases.
    check the below links u will get the answers for your questions
    http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3860358411d1829f0000e829fbfe/content.htm
    http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/field_sy.htm
    http://searchsap.techtarget.com/tip/1,289483,sid21_gci920484,00.html
    Syntax Diagram
    FIELD-SYMBOLS
    Basic form
    FIELD-SYMBOLS <fs>.
    Extras:
    1. ... TYPE type
    2. ... TYPE REF TO cif
    3. ... TYPE REF TO DATA
    4. ... TYPE LINE OF type
    5. ... LIKE s
    6. ... LIKE LINE OF s
    7. ... TYPE tabkind
    8. ... STRUCTURE s DEFAULT wa
    The syntax check performed in an ABAP Objects context is stricter than in other ABAP areas. See Cannot Use Untyped Field Symbols ad Cannot Use Field Symbols as Components of Classes.
    Effect
    This statement declares a symbolic field called <fs>. At runtime, you can assign a concrete field to the field symbol using ASSIGN. All operations performed with the field symbol then directly affect the field assigned to it.
    You can only use one of the additions.
    Example
    Output aircraft type from the table SFLIGHT using a field symbol:
    FIELD-SYMBOLS <PT> TYPE ANY.
    DATA SFLIGHT_WA TYPE SFLIGHT.
    ASSIGN SFLIGHT_WA-PLANETYPE TO <PT>.
    WRITE <PT>.
    Addition 1
    ... TYPE type
    Addition 2
    ... TYPE REF TO cif
    Addition 3
    ... TYPE REF TO DATA
    Addition 4
    ... TYPE LINE OF type
    Addition 5
    ... LIKE s
    Addition 6
    ... LIKE LINE OF s
    Addition 7
    ... TYPE tabkind
    Effect
    You can define the type of the field symbol using additions 2 to 7 (just as you can for FORM parameters (compare Defining the Type of Subroutine Parameters). When you use the ASSIGN statement, the system carries out the same type checks as for USING parameters of FORMs.
    This addition is not allowed in an ABAP Objects context. See Cannot Use Obsolete Casting for FIELD SYMBOLS.
    In some cases, the syntax rules that apply to Unicode programs are different than those for non-Unicode programs. See Defining Types Using STRUCTURE.
    Effect
    Assigns any (internal) field string or structure to the field symbol from the ABAP Dictionary (s). All fields of the structure can be addressed by name: <fs>-fieldname. The structured field symbol points initially to the work area wa specified after DEFAULT.
    The work area wa must be at least as long as the structure s. If s contains fields of the type I or F, wa should have the structure s or at least begin in that way, since otherwise alignment problems may occur.
    Example
    Address components of the flight bookings table SBOOK using a field symbol:
    DATA SBOOK_WA LIKE SBOOK.
    FIELD-SYMBOLS <SB> STRUCTURE SBOOK
    DEFAULT SBOOK_WA.
    WRITE: <SB>-BOOKID, <SB>-FLDATE.
    Regards
    Anji

  • CPO XSL Transform for CPSC Form data with Grid

    Does anyone have an XSL Transform worked out that conveniently parses the CPSC Form output from Service Link when it has a grid in it?
    For example the data from CPSC Service Link might look like:
    <root>
       <Common>
          <Action ClassID="">Some Action</Action>
          <RequisitionID>123</RequisitionID>
       </Common>
       <Attributes/>
       <FormData>
          <Dictionary.Field>Some Data</Dictionary.Field>
          <DictionaryWithGrid-1.Field1>somevalue</DictionaryWithGrid-1.Field1>
          <DictionaryWithGrid-1.Field2>someothervalue</DictionaryWithGrid-1.Field2>
          <DictionaryWithGrid-1.Field3>yetanothervalue</DictionaryWithGrid-1.Field3>
          <DictionaryWithGrid-2.Field1>somevalue2</DictionaryWithGrid-2.Field1>
          <DictionaryWithGrid-2.Field2>someothervalue2</DictionaryWithGrid-2.Field2>
          <DictionaryWithGrid-2.Field3>yetanothervalue2</DictionaryWithGrid-2.Field3>
       </FormData>
    </root>
    So the desired output would be
    <Row>
       <Field1>somevalue</Field1>
       <Field2>someothervalue</Field2>
       <Field3>yetanothervalue</Field3>
    </Row>
    <Row>
       <Field1>somevalue2</Field1>
       <Field2>someothervalue2</Field2>
       <Field3>yetanothervalue2</Field3>
    </Row>
    I'm having difficulty getting the right XSL select when the tag is something like 'DictionaryWithGrid-#.Field'.
    Thanks!

    That worked great, Svetlana!  Thank you very much for the help.
    I made some slight mods to make it even more portable and intuitive for XSL/XML beginners.
    <?xml version="1.0"?>
    <xsl:stylesheet version="1.0"
          xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
          xmlns:msxsl="urn:schemas-microsoft-com:xslt">
    <!-- Replace CHANGEME below with the name of the CPSC Form Dictionary to transform -->
    <xsl:variable name="Dictionary">CHANGEME</xsl:variable>
    <xsl:template match="root">
      <Table>
          <xsl:call-template name="ProcessOne">
            <xsl:with-param name="pos" select="1" />
          </xsl:call-template>
      </Table>
    </xsl:template>
      <xsl:template name="ProcessOne">
        <xsl:param name="pos" />
        <xsl:variable name="RowName" select="concat($Dictionary, '-', $pos)" />
        <xsl:if test="FormData/*[starts-with(name(), $RowName)] != ''">
          <Row>
            <xsl:for-each select="FormData/*[starts-with(name(), $RowName)]">
              <xsl:if test="starts-with(name(.), $RowName)">
                <xsl:variable name="FieldName" select="substring-after(name(.), '.')"/>
                <xsl:element name="{$FieldName}">
                  <xsl:value-of select="."/>
                </xsl:element>
              </xsl:if>
            </xsl:for-each>
          </Row>
          <xsl:call-template name="ProcessOne">
            <xsl:with-param name="pos" select="number($pos+1)" />
          </xsl:call-template>
        </xsl:if>
      </xsl:template>
    </xsl:stylesheet>

  • DW CS3 Form Select crash

    I upgraded from 8 to CS3 a while ago (Clean install, 9.0
    Build 3481). There is something that has been annoying me for a
    while and I was waiting on an update that might fix it. Been
    waiting a while and no updates so I thought I'd post the details
    and see if anyone has any ideas.
    I have a coldfusion page with a form select on it and I have
    some dynamic information on it. If I select any text anywhere on
    the page in code view, DW crashes. If I change the select to static
    info it is fine!
    Attached is code for dynamic select which crashes and non
    dynamic which is fine.
    Debug info is Unhandled exception at 0x00adab57 in
    Dreamweaver.exe: 0xC0000005: Access violation reading location
    0x00000436.

    Hi again.
    I should have added the crash log.
    Problem signature:
    Problem Event Name: APPCRASH
    Application Name: Dreamweaver.exe
    Application Version: 9.0.0.3481
    Application Timestamp: 4600622f
    Fault Module Name: Dreamweaver.exe
    Fault Module Version: 9.0.0.3481
    Fault Module Timestamp: 4600622f
    Exception Code: c0000005
    Exception Offset: 002dab57
    OS Version: 6.0.6000.2.0.0.768.3
    Locale ID: 2057
    Additional Information 1: f150
    Additional Information 2: 112d33ddab86c076fa96123810cc4032
    Additional Information 3: 7287
    Additional Information 4: 6413fc23cc8b338dc85422963dbec2cd
    many thanks
    Dereck

  • Reload page with additional parameter?

    Hi!
    I'm writing a site with the following simple structure: JSP using taglibs is for page structure, and taglibs are for applying XSLT to XML. Model uses XPath to extract needed XML , and there is no controller. Typical JSP is like that news.jsp:
    <my:page>
    <my:header title="News" />
    <my:news show="10">
    <my:rangeSelector />
    </my:news>
    </my:page>This displays a page with 10 news list and a range selector string like that:
    1..10 | 11..20 | 21..25
    Tag my:rangeSelector asks its parent tag my:news (which implements IHasRange, so as my:photos for photogallery thumbnails grid, etc.) about the total number of news to form that range selection string. The idea is the following: after the user clicks for example on 11..20, there goes a request, the same as the previous one, but with additional parameter, something like rangeStart=11. The question is HOW TO ACHIEVE THIS keeping in mind that my:rangeSelector knows nothing about its parent, but that it should implement IHasRange. In other words, how to reload the current page with the same set of parameters, and one more additional parameter, without explicit specifying the page, i. e. without that:
    <my:rangeSelector target="news.jsp" />Maybe Struts as a controller can help? I have no idea about it...
    Thanks a lot! :)
    Constantine Kulak
    FAMI BSU, IBA BY

    I have the same problem: I had used F5 to make text smaller (zoom out). F6 to Zoom In still works, but F5 doesn't. It worked under Safari 4 BETA, but not the release version. I've tried this on several machines.

  • Odd behaviour - Select with Submit

    Hi,
    I have some strange behaviour to report, more as a warning than anything else. Beware of impatient users of your HTML DB application!!
    Let me try and describe a strange scenario that has been occuring with our application.
    The piece of interest is that we have a form that creates a record in a database table.
    The user has to choose a STATUS for this record - either Implemented or Unimplemented.
    This is a select list with submit so that context-specific fields can be shown depending on the status value.
    e.g. if Implemented they have to enter an Actual Implementation Date
    or if Unimplemented they enter a Planned Implementation Date.
    Also, if its implemented, the "Implemented By" field is displayed (its a "Display as Text (saves state)" item)
    This field is defined to have a default value of &APP_USER.
    There is an After Submit Computation to set the field to null if the STATUS != 'IMPLEMENTED'
    In the majority of cases this all works fine.
    However, please follow this carefuly:
    1) The user selects Unimplemented as the STATUS.
    2) The user changes their mind and selects "Implemented"...BUT...before the screen can be refreshed they press the SAVE button!!
    3) At this point they see an error message as they haven't filled in the Actual Implementation Date which has a validation check. However, the "Implemented By" field is now null! This means the status was still "Unimplemented" when the form was submitted, but is "Implemented" at the point of re-drawing the screen.
    4) The user now enters the Actual Implementation date and hits the SAVE button. The record is created, but the value for the "Implemented By" field is null which is incorrect.
    This is a warning to make sure you consider that users might try do do something like this. We ended up coding an additional After Submit Computation to explicitly set that field to the user name if the status was Implemented.
    Jon.

    I will try changing the SELECT with a Popup and do it as mentioned in this document:
    http://www.oracle.com/technology/products/database/htmldb/howtos/how_to_create_custom_popups.html
    Not sure if we can do this for a Tabular form ?

  • Database selection with invalid cursor !

    hi experts,
        When  execute SAP BW processchar, it occur some system error: (sm21)
    Database selection with invalid cursor
    The database interface was called by a cursor (in a FETCH or CLOSE
    cursor operation) that is not flagged as opened. This can occur if a
    COMMIT or ROLLBACK was executed within a SELECT loop (which closes all
    opened cursors), followed by another attempt to access the cursor (for
    example, the next time the loop is executed).
    this error occur when apply bw support package 19.
    sap notes 1118584 Solution is: Import Support Package 17 . but my support package is 19.
    how can i solve this error?
    thanks,
    xwu.

    I am only assuming things, but it might be worth to look closely if you were experiencing an ORA- error during the execution. This could have caused a rollback and thus closed the cursor. Please check the job log, the workprocess trace (dev_wX file) and the system log SM21 and ST22 as well.
    Besides that check the oracle alertlog and the usertrace destination.
    Best regards, Michael

  • Database selection with invalid cursor with MaxDB database

    Hi Experts,
    I encountered the this error:
    "Database selection with invalid cursor
    The database interface was called by a cursor (in a FETCH or CLOSE
    cursor operation) that is not flagged as opened. This can occur if a
    COMMIT or ROLLBACK was executed within a SELECT loop (which closes all
    opened cursors), followed by another attempt to access the cursor (for
    example, the next time the loop is executed)."
    We are using bw support package 19 early this month. Previously is working fine but this problem occured from the last 2 days.
    We are using MaxDB database.
    Really appreciate any speedy responds.

    Hi,
    We finally resolved the issue.
    The solution:
    We check the RFC connection test in SM59. There are connection error.
    There is an error that related J2EE_ADMIN user.
    SO we reset the J2EE_ADMIN id in SU01.
    The problem goes away.
    Many thanks

Maybe you are looking for

  • FCP Memory issue on a new MBP

    I just bought a new 17" macbook pro with 4gb of ram. It's only a few days old. I'm having an issue with final cut pro 6 while trying to render or compress a file. Over the course of a few minutes, It transfers all of my memory from free to inactive m

  • MBAM 2.5 Certificate Requirements

    I am upgrading from MBAM 1.0 to 2.5 and trying to finish the installation on the application server but the MBAM configuration is telling me that I do not have any valid certificates installed despite the fact there is indeed an SSL certificate in II

  • Loader component with scrollbar

    Hello, I'm trying to attach a scroll bar to a loader component and it's not working. i don't want to use the scrollpane because its shows the outline around the box. is it possible to get a UIscrollbar attached to a loader component?

  • New lync 2013 , 2 subdomains ,ad one domain in foreign country

    As you can see in the picture below, I have the main AD called main.prod and two child1 and child2 subdomains. What is more  I have AD called international.prod placed in foreign country.  I have mbox, cas  using child1.main.prod domain and lync 2010

  • Privilege(s) on package body

    How can I allow other users to view a package body stored in my schema? What privileges I need to grant?