Information needed on use of Jquery Lightboxes

Hi there.
I have noticed that many web sites use lightboxes for mostly image galleries but also for opening a text box.
Question:
Is this advisable or what do you think?
Question:
I want to use a lightbox like this one: http://www.axxess.co.za/ (click on start) where the background fades out and the box opens. I want to use a lightbox on my site for contact details.
I have played around with this one, http://dev.iceburg.net/jquery/jqModal/ and it works pretty well.
I just need to know what the general feeling is about lightboxes and which one to use.
Regards,
Deon

I think Lightbox is terrific.  There are a number of variations and ultimately, the choice is yours.  Here's a grid that gives a summary, side-by-side comparison.
http://planetozh.com/projects/lightbox-clones/
If you Google this, there's a whole heap of opinion out there.
Martin

Similar Messages

  • Replace Product Poplets lightbox with another jquery lightbox

    Hello,
    My client would like to disable the default lightbox that comes with the additional product poplet images and use a different jquery lightbox. 
    I am just wondering how I can disable the poplet lightbox and use another jquery lightbox. I installed the new jquery code on this page http://www.tovolo.com/table-2/test - but it is still using the poplet lightbox.
    Thank you.
    Lisa

    Hi Mario,
    Thank you for looking into this. I ended up doing something different to get the project finished.
    Regards,
    Lisa

  • Can i use a class for this or do i need to use a type def

    what i am trying to do is have a parent cluster witch has a file name and some free space to put is children's data in with decorations at the bottom.
    i then need to have a child with a graph in the middle blank space of the parent.
    i also need to have another child with a table in the middle blank space.
    can i do this with classes or do i need to use typdefs.
    tks in advance

    Hello vivi,
    I'm not entirely sure what you mean.  The classes that you create in LabVIEW 8.2 are meant to be containers for data and methods, not displayable items.  Even though a class's private data members are defined in a cluster, you can't think of a class and a cluster as the same thing.  A cluster is an object that you can use to bundle different kinds of information together.  You can also design a cluster to be displayed on a front panel.
    If you want to use LabVIEW's object oriented features, I would suggest creating a class which stores your objects data (non displayable).  You could then create a method on your class to convert some of its internal data into a cluster which can be displayed to the user.
    Regards,
    Justin D
    Applications Engineer
    National Instruments

  • In what case, we need to use PI for vendor replication in MM-SUS?

    Dear Experts,
    In what scenarios, we need to use or configure the PI settings for vendor replication between MM and SUS? The SAP configuration guide for SRM 7.01 mentions about the PI settings for vendor replication from ECC to SUS.
    However, we are able to replicate the vendor from ECC to SUS using the program BBPGETVD in SUS client?
    In what circumstances, we need to configure the PI settings for vendor replication when we are able to do so in a much simpler way?
    Thanks in advance,
    Ranjan
    Ranjan Sutradhar

    Hi Ranjan,
    In all circumstances you need to replicate vendors from MM to SUS via PI. BBPGETVD is not the right way to replicate vendors to SUS because the information like vendor class, assignment of this vendor class to an object and the vendor classification cannot be transferred via BBPGETVD.
    Hence you will have to use PI. You can try sending a PO from MM to SUS and the PO will fail in SUS with a message like 'Vendor not present in SUS' if you use BBPGETVD.
    Regards,
    Nikhil

  • Need to use ALV instead of write:/ statement in this perform

    How can I use ALV within this perform instead of using Write:/ in it.
    Scroll the program. At the bottom there is use of write:/ statement.
    How to use ALV in this perform?
    FORM display_logfile .
      TYPES: BEGIN OF lt_openbal,
                bukrs TYPE bukrs,
                hkont TYPE hkont,
                augdt TYPE augdt,
                augbl TYPE augbl,
                zuonr TYPE dzuonr,
                gjahr TYPE gjahr,
                belnr TYPE belnr_d,
                buzei TYPE buzei,
                shkzg TYPE shkzg,
                dmbtr TYPE dmbtr,
             END OF lt_openbal,
             BEGIN OF lt_log2,
                hkont TYPE hkont,
                opbal TYPE dmbtr,
                exp   TYPE dmbtr,
                cap   TYPE dmbtr,
                err   TYPE dmbtr,
             END OF lt_log2,
             BEGIN OF lt_zsct_record,
                kongr TYPE ckml_kongr,
                hkont TYPE hkont,
                zcptp TYPE zdecptp,
                zerrc TYPE zdeerrc,
             END OF lt_zsct_record.
      DATA: lw_zscs_record  TYPE t_zscs_record,
            lw_zsct_record       TYPE lt_zsct_record,
            li_zsct_record         TYPE STANDARD TABLE OF lt_zsct_record,
            li_zsct_record1       TYPE STANDARD TABLE OF lt_zsct_record,
            lw_log1                  TYPE t_zscs_record,
            li_log1                   TYPE STANDARD TABLE OF t_zscs_record,
            li_temp                  TYPE STANDARD TABLE OF t_zsct_autoinv,
            li_openbal              TYPE STANDARD TABLE OF lt_openbal,
            li_openbal_mod      TYPE STANDARD TABLE OF lt_openbal,
            li_log2                   TYPE STANDARD TABLE OF lt_log2,
            li_log2_t                TYPE STANDARD TABLE OF lt_log2,
            lw_log2                 TYPE lt_log2,
            lw_log2_t               TYPE lt_log2,
            lw_openbal_mod    TYPE lt_openbal,
            lw_openbal            TYPE lt_openbal.
      i_zscs_record1 = i_zscs_record.
      DELETE i_zscs_record1 WHERE zerrf NE space.
      SORT i_error_bapi BY recid.
      SORT i_error_bdc BY recid.
      SORT i_suc_bdc BY recid.
      SORT i_suc_bapi BY recid.
      SORT i_zscs_record1 BY recid.
      LOOP AT i_zscs_record1 INTO lw_zscs_record.
        lw_log1-recid = lw_zscs_record-recid.
        lw_log1-kongr = lw_zscs_record-kongr.
        lw_log1-hkont = lw_zscs_record-hkont.
        CALL FUNCTION 'CONVERSION_EXIT_ABPSP_OUTPUT'
          EXPORTING
            input  = lw_zscs_record-projk
          IMPORTING
            output = lw_log1-projk.
        lw_log1-werks = lw_zscs_record-werks.
        lw_log1-matnr = lw_zscs_record-matnr.
        lw_log1-zcptp = lw_zscs_record-zcptp.
        lw_log1-zerrf = lw_zscs_record-zerrf.
    To  Check if the KONGR value is is equal to 'E'
        IF lw_zscs_record-kongr = c_e.
          READ TABLE i_error_bapi INTO w_error_bapi WITH KEY recid = lw_zscs_record-recid BINARY SEARCH.
          IF sy-subrc = 0.
            lw_log1-zerrc = w_error_bapi-number.
            lw_log1-zertx = w_error_bapi-message.
          ENDIF.
        ELSE.
          READ TABLE i_error_bdc INTO w_error_bdc WITH KEY recid = lw_zscs_record-recid BINARY SEARCH.
          IF sy-subrc = 0.
            lw_log1-zerrc = w_error_bdc-number.
            lw_log1-zertx = w_error_bdc-message.
          ENDIF.
        ENDIF.
    *****To Check if the KONGR value is is equal to 'E'
        IF lw_zscs_record-kongr = c_e.
          READ TABLE i_suc_bapi INTO w_suc_bapi WITH KEY recid = lw_zscs_record-recid BINARY SEARCH.
          IF sy-subrc = 0.
            lw_log1-zerrf = c_x.
    *******To check if  lw_log1-zertx = w_error_bapi-message.
          ENDIF.
        ELSE.
          READ TABLE i_suc_bdc INTO w_suc_bdc WITH KEY recid = lw_zscs_record-recid BINARY SEARCH.
          IF sy-subrc = 0.
            lw_log1-zerrf = c_x.
    ********To check if lw_log1-zertx = w_error_bdc-message.
          ENDIF.
        ENDIF.
        APPEND lw_log1 TO li_log1.
    *To clear work areas
        CLEAR: lw_log1,
               w_error_bapi,
               w_suc_bdc,
               w_suc_bapi,
               w_error_bdc,
               lw_zscs_record.
      ENDLOOP.
      IF NOT i_zscs_record1 IS INITIAL.
    *To retrieve required data from the custom table ZSCT_AUTOINV
        SELECT saknr
               fipos
               geber
               saknr_off
               fipos_off
          FROM zsct_autoinv
          INTO TABLE i_autoinv
           FOR ALL ENTRIES IN i_zscs_record1
           WHERE saknr = i_zscs_record1-hkont.
        IF sy-subrc = 0.
          SORT i_autoinv.
        ENDIF.
      ENDIF.
    Assigning I_AUTOINV data into a local internal table for further processing
      li_temp[] = i_autoinv[ ].
    Sort LI_TEMP by SAKNR
      SORT li_temp BY saknr.
    Delete adjacent duplicates from LI_TEMP comparing SAKNR
      DELETE ADJACENT DUPLICATES FROM li_temp COMPARING saknr.
    Check if LI_TEMP is initial
      IF NOT li_temp[] IS INITIAL.
    Retrieve required data from table BSIS for all the G/L accounts
        SELECT  bukrs
                hkont
                augdt
                augbl
                zuonr
                gjahr
                belnr
                buzei
                shkzg
                dmbtr
           FROM bsis
           INTO TABLE li_openbal_mod
           FOR ALL ENTRIES IN li_temp
         WHERE  bukrs = c_wfp
           AND  hkont = li_temp-saknr.
        IF sy-subrc = 0.
        ENDIF.
      ENDIF.
      SORT li_openbal_mod BY hkont.
    ****Retrieve data from table ZSCT_RECORD for further processing for
    ****all entries where ZERRF is equal to space
      IF p_prsall = c_x.
        SELECT kongr
               hkont
               zcptp
               zerrc
          FROM zsct_record                                  "#EC CI_NOFIRST
          INTO TABLE li_zsct_record
          WHERE zerrf = space.
        IF sy-subrc = 0.
    *****Delete records from LI_ZSCT_RECORD where HKONT value is equal to space
          DELETE li_zsct_record WHERE hkont EQ space.
        ENDIF.
      ELSEIF p_cstcpt = c_x.
        SELECT kongr
               hkont
               zcptp
               zerrc
          FROM zsct_record                                  "#EC CI_NOFIRST
          INTO TABLE li_zsct_record
         WHERE zerrf = space
         AND   kongr NE c_e.
        IF sy-subrc = 0.
    ******Delete records from LI_ZSCT_RECORD where HKONT value is equal to space
          DELETE li_zsct_record WHERE hkont EQ space.
        ENDIF.
      ELSEIF p_cstexp = c_x.
        SELECT kongr
               hkont
               zcptp
               zerrc
         FROM  zsct_record                                  "#EC CI_NOFIRST
         INTO TABLE li_zsct_record
         WHERE zerrf = space
         AND   kongr EQ c_e.
        IF sy-subrc = 0.
    ******Delete records from LI_ZSCT_RECORD where HKONT value is equal to space
          DELETE li_zsct_record WHERE hkont EQ space.
        ENDIF.
      ENDIF.
      LOOP AT li_openbal_mod INTO lw_openbal.
        IF lw_openbal-shkzg = c_shkzg1.
          v_todmbtr = v_todmbtr + lw_openbal-dmbtr.
        ELSEIF lw_openbal-shkzg = c_shkzg2.
          v_todmbtr = v_todmbtr - lw_openbal-dmbtr.
        ENDIF.
        AT END OF hkont.
          lw_log2-hkont = lw_openbal-hkont.           "GL account
          lw_log2-opbal = ABS( v_todmbtr ).      "Open item balance
          APPEND lw_log2 TO li_log2.
    *log record appended with GL Account and account open item balance
          CLEAR: v_todmbtr,
                 lw_openbal.
        ENDAT .
      ENDLOOP.
      SORT li_log2 BY hkont.
      LOOP AT li_log2 INTO lw_log2.
        CLEAR v_totexppe.
        CLEAR v_totcapit.
        CLEAR v_toterror.
    *Cost portion to be capitalised calculated
        LOOP AT li_zsct_record INTO lw_zsct_record
                 WHERE hkont = lw_log2-hkont AND
                  kongr NE c_e AND zerrc IS INITIAL.
          v_totcapit = v_totcapit + lw_zsct_record-zcptp.  "CC calculated
        ENDLOOP.
    *Expensed cost portion calculated
        LOOP AT li_zsct_record INTO lw_zsct_record WHERE
                hkont = lw_log2-hkont        AND
                kongr = c_e AND zerrc IS INITIAL .
          v_totexppe = v_totexppe + lw_zsct_record-zcptp.  "ECP calculated
        ENDLOOP.
    *Errors calculated
        LOOP AT li_zsct_record INTO lw_zsct_record WHERE
                hkont = lw_log2-hkont AND
                zerrc IS NOT INITIAL .
          v_toterror = v_toterror + lw_zsct_record-zcptp.  "Errors calculated
        ENDLOOP.
        lw_log2-exp = v_totexppe.           "Expensed cost portion
        lw_log2-cap = v_totcapit.           "Cost capitalised
        lw_log2-err = v_toterror.           "Errors
    *Cost portion capitalised expensed and errors in calculation are
    *trans ported for related GL accont
        MODIFY li_log2 FROM lw_log2
        TRANSPORTING exp cap err.
      ENDLOOP.
      LOOP AT li_log2_t INTO lw_log2_t.
        MODIFY li_log2 FROM lw_log2_t TRANSPORTING opbal WHERE hkont = lw_log2_t-hkont.
        CLEAR : lw_log2_t.
      ENDLOOP.
      WRITE:/1(15) text-018,sy-datum.             "SESSION DATE:
      SKIP 2.
    For printing the hear level of the output log
      WRITE:/1(16)   text-003,                     "Record ID number
             20(11)  text-004,                     "Reason Code
             34(10)  text-005,                     "GL Account
             47(12)  text-006,                     "Project Code
             62(5)   text-007,                     "Plant
             70(9)   text-008,                     "Commodity
             82(25)  text-009,                     "Cost portion To be posted
             110(12) text-010,                     "Success Flag
             125(10) text-011,                     "Error Code
             138(50) text-012.                     "Error TXT
      SKIP.
      LOOP AT li_log1 INTO lw_log1.
        WRITE:/1(16)   lw_log1-recid,
               20(11)  lw_log1-kongr,
               34(10)  lw_log1-hkont,
               47(12)  lw_log1-projk,
               62(5)   lw_log1-werks,
               70(9)   lw_log1-matnr,
               82(25)  lw_log1-zcptp,                       "#EC UOM_IN_MES
               110(12) lw_log1-zerrf,
               125(10) lw_log1-zerrc,
               138(80) lw_log1-zertx.
        CLEAR:lw_log1.
      ENDLOOP.
      SKIP 2.
      IF NOT li_log2 IS INITIAL.
        ULINE.
        WRITE:/1(16)  text-013,                  "GL ACCOUNT CODE
               20(17) text-014,                  "OPEN ITEM BALANCE
               40(21) text-015,                  "EXPENSED COST PORTION
               64(24) text-016,                  "CAPITALIZED COST PORTION
               92(20) text-017.                  "ERRORS.
        LOOP AT li_log2 INTO lw_log2.
          WRITE:/1(16)   lw_log2-hkont,
                 20(17)  lw_log2-opbal,                
                 40(21)  lw_log2-exp,                      
                 64(24)  lw_log2-cap,                     
                 92(20)  lw_log2-err.                     
          CLEAR:lw_log2.
        ENDLOOP.
      ENDIF.
    ENDFORM.                    " DISPLAY_LOGFILE

    hi,
    You need to use FM 'REUSE_ALV_LIST_DISPLAY' for this purpose. For using this FM, you need to create a field catlog which will contain all information about the coloumns you want to display for example their position, their text etc.
    Below there is a small demo for achiving this.
    TYPE-POOLS:slis.
    DATA : i_fieldcat TYPE slis_t_fieldcat_alv.
    TYPES: BEGIN OF ty_itab1,
           vbeln LIKE vbap-vbeln,
           posnr LIKE vbap-posnr,
           werks LIKE vbap-werks,
           lgort LIKE vbap-lgort,
           END OF ty_itab1.
    DATA: itab1 TYPE TABLE OF ty_itab1.
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-t01.
    SELECT-OPTIONS: s_vbeln FOR vbak-vbeln.
    SELECTION-SCREEN END OF  BLOCK b1.
    START-OF-SELECTION.
      PERFORM select_data.
    END-OF-SELECTION.
    PERFORM display.
    FORM select_data .
      SELECT vbeln
         posnr
         werks
         lgort
         INTO CORRESPONDING  FIELDS OF TABLE itab1
         FROM vbap
         WHERE  vbeln IN s_vbeln.
      IF sy-subrc <> 0.
        MESSAGE 'Enter The Valid Sales Document Number'(t04) TYPE 'I'.
        EXIT.
      ENDIF.
    ENDFORM.
      IF alv_list = 'X'.
        PERFORM build_fieldcat TABLES i_fieldcat[]
                               USING :
    *-Output-field Table      Len  Ref fld Ref tab Heading    Col_pos
       'VBELN'       'ITAB1'     10   'VBAP'  'VBELN'    ''            1,
       'POSNR'       'ITAB1'     6    'VBAP'  'POSNR'    ''            2,
       'WERKS'       'ITAB1'     4    'VBAP'  'WERKS'    ''            3,
       'LGORT'       'ITAB1'     4    'VBAP'  'LGORT'    ''            4.
        CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
          EXPORTING
            i_callback_program       = sy-repid
           i_callback_pf_status_set = c_pf_status
            i_callback_user_command  = 'USER_COMMAND '
           it_events                = t_alv_events[]
            it_fieldcat              = i_fieldcat[]
          TABLES
            t_outtab                 = itab1[]
          EXCEPTIONS
            program_error            = 1
            OTHERS                   = 2.
        IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        ENDIF.
      ENDIF.
    FORM build_fieldcat TABLES  fpt_fieldcat TYPE slis_t_fieldcat_alv
                        USING   fp_field     TYPE slis_fieldname
                                fp_table     TYPE slis_tabname
                                fp_length    TYPE dd03p-outputlen
                                fp_ref_tab   TYPE dd03p-tabname
                                fp_ref_fld   TYPE dd03p-fieldname
                                fp_seltext   TYPE dd03p-scrtext_l
                                fp_col_pos   TYPE sy-cucol.
    *-- Local data declaration
      DATA:   wl_fieldcat TYPE slis_fieldcat_alv.
    *-- Clear WorkArea
      wl_fieldcat-fieldname       = fp_field.
      wl_fieldcat-tabname         = fp_table.
      wl_fieldcat-outputlen       = fp_length.
      wl_fieldcat-ref_tabname     = fp_ref_tab.
      wl_fieldcat-ref_fieldname   = fp_ref_fld.
      wl_fieldcat-seltext_l       = fp_seltext.
      wl_fieldcat-col_pos         = fp_col_pos.
    *-- Update Field Catalog Table
      APPEND wl_fieldcat  TO  fpt_fieldcat.
    ENDFORM.

  • Why do I need to use GIMP to batch process?

    Dear Adobe,
    I'm grinding through thousands of display and template images for an online retailer. Photoshop layering and masks came in quite handy when I was making the templates
    but now that it's got down to reusing those templates, I have to look elsewhere.
    1 Why does every other piece of software on the market have a batch processing section, and yet you hide yours?
    2. Why does Image Processor refuse to resize both horizontal and vertical, although it claims to? It actually refuses to distort the image to resize, which I actually want it to do. I had
    to download GIMP to get this capability, as well as to specify the output file and change the dpi. These are all included in GIMP but not Pshop. Thanks for that. And don't tell
    me to go to Actions. THat may be useful for something things, but it's hardly the optimal way to do it, recording your exact actions, and then saving or not saving, and then
    seeing what happens. The way I wanted it was in GIMP, and its pathetic that 20 years in, Pshop still doesnt have a credible batch processor, or tell me where it is now.
    Charge extra for that perhaps?
    3.What has changed in Bridge CS6 since CS4? I see absolutely nothing different, but then output is still limited to PDF and 'WEB GALLERY' a dysfunctional glob
    of code bested easily by jquery, but maybe you've impoved that end. My last experience with web gallery was so dysfunctional that I'll just stick to fixing what's
    under the hood myself. I mean web gallery used to be flash, then something else that's not current. Let's just agree its a hobbyist option. Of course,
    I don't know why 'output' might include other options for the batch processing of files, since batch rename does actually work, but you guys are the deciders.
    4. Its too bad. This job has taught me a lot of new stuff about layering, masks, and the functionality of the pattern section, which I have no great qualms with, though,
    considering how many companies you've bought, you could include tons of patterning capabilities that used to exist in these programs, but that would be too much
    expenditure from MGMT. Maybe let's just fix the window views we broke in CS4, and call it a new version.
    5. Thanks for forcing me to discover GIMP, who dont ask a thing. I dont really like being in there yet, but we'll see if that changes with time. They actually have some
    different filters and rendering options that Adobe could've included years ago for gun, but again, there's just not enough money to go around at Adobe.

    Antinet wrote:
    Thanks for both of you proving both that the function doesnt exist.
    When the Image Processor resizes image it used the Photoshop Plug-in Fit Image to do the resize.  Both height and width are resized and the image aspect ratio is preserved so the image is not distorted.  That means the image will fit within the height and width  used in the dialog.  Only image with the same aspect ratio will fill the area.  It sounds to me like you want the image the size id the height and width you entered in the dialog.  In which case you need to use Photoshop features the can accomplish that.  If you do not care the the image is distorted you use Image size check resample uncheck constrain as set the height and width you want to resize to.  If you do not want to much distortion you can try content aware resize. That will still distort the image some what but try to maintain some areas perspective it finds object in.  You can also help that process by selecting areas.  If You want no distortion you need to resize the image to fill the area and mask off  the excess to virtually crop the image the the areas aspect ratio. To automate that you need to use some Photoshop scripting. Knowledge is required to get the most out of Programs like Gimp and Photoshop.  The function doesn't exist because of your lack of knowledge.

  • Do I need to use lens correction in lightroom 5 if I have it enabled in camera ?

    Do I need to use lens correction in Lightroom 5 develop module it I have it enabled in camera ? (Canon 5D3)

    Thanks very much John, I noticed when I applied it in LR5 it made a difference, but I guess what I was asking was it being applied twice, and as I shoot in raw you have answered my question, thank you so much.
    Phil.
    Date: Tue, 31 Dec 2013 06:23:10 -0800
    From: [email protected]
    To: [email protected]
    Subject: Do I need to use lens correction in lightroom 5 if I have it enabled in camera ?
        Re: Do I need to use lens correction in lightroom 5 if I have it enabled in camera ?
        created by Tooslow2007 in Lightroom for Beginners - View the full discussion
    Your camera will only apply lens correction (if switched on) to JPEGs, not to RAW files. Clearly you do not want to apply it twice.
    John
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5968950#5968950
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5968950#5968950
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5968950#5968950. In the Actions box on the right, click the Stop Email Notifications link.
               Start a new discussion in Lightroom for Beginners at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

  • How can I remotely access files over the internet using iPhone? VPN? Do I need to use Server?

    Please forgive my ignorance here, as I'm a Windows expert but have only been using Mac for two and a half years. Is it possible to securely access predefined directories on my iMac from a remote computer or device over the inernet, be it a MacBook Pro, iPhone or even a Windows computer or Android phone? Is there an advantage to an Apple-only approach (iPhone and Macs)? Do I need to use Server? Is VPN the method of choice, or is there some other method? I'm not looking to do remote desktop control, just remote file access. Right now I'm using DropBox for the things I need most, but I absolutely will not put sensitive information in there, and soon I will need to have access to more than what DropBox can hold. Also it may be worth noting that I'm currently an Android user but will be going back to iPhone soon if it would be advantageous in this regard.
    Thanks!
    Daniel

    If you desire security, you definately want to use VPN so Lion Server will work.  Otherwise, if you have sysadmin experience (or know someone who does), there are free alternatives out there for vpn that can be setup on a cheap linux server and provide the same capabilities. 

  • I have a Macbook Pro (2013) OS 10.8.1.  Moved into a university house and need to use ethernet cable. Bought the Thunderbold connection but when I try to use the ethernet with it a webpage comes up saying Wireless Setup? No idea what to do.

    I have a Macbook Pro (2013) OS 10.8.1.  Moved into a university house and need to use ethernet cable. Bought the Thunderbold connection but when I try to use the ethernet with it a webpage comes up saying Wireless Setup and Router Setup? I have previously used ethernets in similar situations and never had to input information like this?

    I have tried to turn of the wi-fi but that doesn't work either. I think it could be a something to do with the internet provider because virginmedia comes up on the webpage. This is what comes up:
    Wireless Setup
    WGR614V9
    V1.0.11_1.0.1VGUK
    Wireless Setup
    Name (SSID):
    Security Passphrase (WPA-PSK):
    (8-63 characters)
    Channel:
                       01                   06                   11                
    Router Setup
    Router Password:
    (8-63 characters)
    any ideas?!?

  • When using APEX.jQuery() - Syntax...?

    Hi,
    I have migrated to Apex 4.02 and had an old jQuery Version running on 3.2.
    Now I have learned that I can use the build in jQuery Libs which load not all UI functionality but additional UI components can be loaded from the APEX - Lib.
    I have read that APEX renamed its jQuery implementation to APEX.jQuery().
    I have thrown away my old jQuery Libs ( only the standard APEX jQuery Libs are loaded ), but my jQuery invokes are still working with $().
    So when do I have to use the syntax APEX.jQuery() and why is $() still working...?
    Thanks, Juergen

    Hi,
    I also want to add my 2 cents. See it as recommendation from the APEX development team. :-)
    So the question is, when to use jQuery/$ and when to use apex.jQuery? Actually it depends where you use it!
    That might at first hand be confusing, especially because as some of you already know, as long as you don't include your own version of jQuery, the JavaScript variables jQuery, $ and apex.jQuery are all the same. So it looks like that it doesn't matter that much, but actually it's very important if you upgrade your application/plug-in to a newer version of APEX.
    We try to stay up-to-date with the included version of the jQuery library when we release a new version of APEX. So for APEX 4.1 it's very likely that we include jQuery 1.5. As you can see from the change log of the jQuery project they also sometimes make changes which breaks existing functionality. To minimise your risk when you upgrade to a newer version of APEX you should follow the following recommendations.
    JavaScript code in your Application:
    If you want to use jQuery in your own JavaScript code in an application we recommend to use jQuery or the shortcut $.
    Why:
    1) If you upgrade APEX there is the potential that the newer jQuery version breaks your existing code. To avoid intensive testing and rewriting your application to the new jQuery version you can just include the old jQuery library into your page template and you are done. The variables jQuery and $ will point to your own jQuery version and not the one shipped with APEX. No additional code changes necessary. That will help to minimize your risk of upgrading to a newer version of APEX.
    2) You need a newer/older version of jQuery in your application because one of the jQuery plugins which you want to use just works with that version. In that case just include the newer/older jQuery library into your page template and the variables jQuery and $ will point to your own jQuery version. apex.jQuery will still point to the version shipped with APEX.
    JavaScript code in an APEX Plug-In:
    If you want to use jQuery in an APEX plug-in we recommend to use apex.jQuery. You should even go that far to modify the initialization code of an included jQuery plugin to use the apex.jQuery reference.
    What do I mean with that? If you have a look at the JavaScript code of a jQuery plugin you will notice that almost all of them have the following code structure
    (function($) {
    ... plugin code ...
    })(jQuery);Looks wired, right? :-) What this actually does is to declare an anonymous JavaScript function with a parameter $ which is immediately called and as parameter value passes in the current jQuery variable. That will allow the function to use $ as jQuery short cut without having to rely on the fact that $ is still used by jQuery.
    We recommend to copy the jQuery plugin file and prefix it with apex. (example: apex.jquery.maskedinput-1.2.2.js) to make everybody aware that the file has been modified for APEX. Change the jQuery to apex.jQuery in the initialization code.
    (function($) {
    ... plugin code ...
    })(apex.jQuery);Why are we doing all of that?
    As a plug-in developer you want to minimize your testing effort and also want to have an environment where you have full control to give proper support. Let's assume you are not doing the above, what happens if a user of your plug-in is using it's own version of jQuery? He might report strange behavior of you plug-in which you are not able to reproduce because you don't know that your plug-in is actually using a different version of jQuery than in your own environment. Using the apex.jQuery namespace reduces your risk and also the risk of your users, you just have to test your plug-ins with the APEX versions you want to support.
    Hope that has given some more insides when to use what.
    Regards
    Patrick
    My Blog: http://www.inside-oracle-apex.com
    APEX 4.0 Plug-Ins: http://apex.oracle.com/plugins
    Twitter: http://www.twitter.com/patrickwolf

  • Why we need to use webutil

    Hi all
    why we need to use webuti?
    sarah
    Edited by: SarahSarahSarah on Sep 15, 2009 5:36 AM

    Hi Sarah!
    You need webutil for client side integration.
    There are functions to get information about the client
    like read the client name (pc-name), read and write in the registry and so on.
    Without webutil it is not possible to read an imagefile
    on the clients filesystem and save it to the database.
    There is a file-transfer package, to copy files from and to the server
    and to download files from a http-url!
    If you submit a call to the forms host build-in to call
    for example a batch file, this call would be executed on the server, not the client!
    For this Mr. Duncan Mills gave us webutil. Thanks!
    Regards

  • ODI Agent - when do i need to use?

    can anybody explain me the perpose of ODI Agent? and when do i need to use Agent?
    Edited by: knidhi on Oct 5, 2009 3:31 PM
    Edited by: knidhi on Oct 5, 2009 4:07 PM

    If I could finesse your answer slightly, hopefully to help (or confuse):
    There are multiple agent types:
    - the Local (No agent): this opens additional threads in the current GUI process. The agent will just run as additional threads in your current process, using the same settings as your GUI environment.
    - a standalone agent: if you start an agent from the commandline using the agent.sh/bat. This will start a "listener agent". It starts up and passively listens for execution requests. When a request is passed to the agent, it includes all the necessary information to connect to the repository etc. All this information is there in the invocation package. (for more information on what is passed look at the documentation for the invocation API or at the ODIInvoke webservice)
    - a scheduler agent: when you start a scheduler agent from the commandline with the agentscheduler.bat/sh file, it will read from the odiparams.sh/bat file the connectivity paramaters for the repository, where it will "look itself up" based on the agent name passed, to find out what scenarios it should be scheduling. This agent may also take requests, just like the standalone agent described above.
    - a task may also be invoved at the opertaing system command level using startscen.bat/sh. This will start a standlone agent for the duration of this execution only, which not listen for other requests, it reads its parameters from the command line (for which sceenario, version and context) and from the odiparams file for the repository connectivity parameters as to where to find the requested scenario and where the execution will be logged.

  • SCOM2012 Need to use Powershell to reset the RUNAS Configuration account passwords

    I Need to use Powershell to reset the SCOM2012 RUNAS Configuration account passwords... could anyone help me with this?

    Hi BenStu,
    Have you checked the cmdlet
    "Update-SCOMRunAsAccount" to change the RunAs account password.
    This script is for your reference:
    $username = "<domain>/<user>"
    $password = cat C:\temp\securestring.txt | convertto-securestring
    $newcred = new-object System.Management.Automation.PsCredential $userName,$password
    Get-SCOMRunAsAccount –name "OMWindowsRunAsOM" | Update-SCOMRunAsAccount –RunAsCredential $newCred
    Refer to:
    Tracking down where Operations Manager stores information – Part 7               
    If there is anything else regarding this issue, please feel free to post back.
    Best Regards,
    Anna Wang

  • Friend of mine bought movies(ITunesStore)one of the 5 devices that she could use is my Mac.She needs to use the movies on another device and for that I have to erase them,how do I do that?I deleted them but she can't still used them?How delete themsurely?

    Friend of mine bought some movies (ITunesStore) one of the 5 devices that she could use them in is my Mac. She needs to use the movies on another device and ask me for delete the conection in my laptop.  For that I erase them in Itunes, but she can't still used them? How delete the conections between my computer and her account?
    Thank you for your answer.

    Hello there, Ingridvon.
    The following Knowledge Base article provides the information you are looking for:
    iTunes Store: About authorization and deauthorization
    http://support.apple.com/kb/HT1420
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • What do I need to use iphone and macbook air in europe

    What do I need to use iphone 4 and macbook air in europe? 

    Hello Bev23,
    Thank you for posting in the Apple Support Communities.  To charge your devices, you will need adapters for the country you are in.  We sell a Apple World Travel Adapter Kit that will work with several different countries and will work with both your MacBook Air and iPhone:
    Apple World Travel Adapter Kit
    http://store.apple.com/us/product/MB974ZM/B/apple-world-travel-adapter-kit
    You can also find information about wireless carrier support for using your iPhone in the article below.  You may need to contact your wireless carrier for more information about using your iPhone abroad:
    iPhone: Wireless carrier support and features
    http://support.apple.com/kb/HT1937
    Have a safe trip!
    Best,
    Sheila M.

Maybe you are looking for

  • My power button, volume down and up button dont work, and the phone itself is bent. What should I do?

    Ive had my iPhone in a case since I've had the phone, I'm really dissapointed in whats happening to it.  Even with the case on, I very rarely drop it.  Any suggestions or options on how to solve?

  • XML publisher responsibility

    Experts, Through XML publisher responsibility , i am creating a data defintions and when i click the tab apply the next screen displays the error as # oracle.jbo.TooManyObjectsException: JBO-25013: Too many objects match the primary key oracle.jbo.Ke

  • Any information Please ??

    Hi I am trying to convert my jar file to a dll or ocx. But I missed my way !!!!!!! Which Java version is better for doing that ?...I have these 2 versions : j2sdk-1_4_2_02 and j2sdk-1_3_1_08 ; which one is better and easier to use ?? .... then are th

  • HT4623 itunes wont connect to my wifi

    When I try to update my iphone/itunes it keeps saying there is not internet connection but there is ... does anyone know how to fix this problem?

  • Where to apply credential file for ADS Licens in VA?

    Hi,    I got a credential file for ADS License to use it in EP.Can any body guide me where to apply this file in Visual Administration and go further in ADS Configuration. with regards Pradeep.B