Checkbox in SALV needs to be disabled

All,
I am using a column in SALV report as checkbox. currently all rows of that column (checkbox) is enabled.. But my requirement to is on the basis of another column value in the output table i need to disable  check box in some rows.
my code for creating check box is
* Get the Editable Checkbox
  DATA: lo_cols_tab TYPE REF TO cl_salv_columns_table,
        lo_col_tab  TYPE REF TO cl_salv_column_table.
*   get Columns object
  lo_cols_tab = o_alv2->get_columns( ).
*   Get VBELN column
  TRY.
      lo_col_tab ?= lo_cols_tab->get_column( 'CHK' ).
    CATCH cx_salv_not_found.
  ENDTRY.
*   Set the HotSpot for VBELN Column
  TRY.
        CALL METHOD LO_COL_TAB->SET_CELL_TYPE
          EXPORTING
            VALUE = IF_SALV_C_CELL_TYPE=>CHECKBOX_HOTSPOT.
  ENDTRY.
Courtesy Naimesh Patel

Hi a®s,
same old SALV story - no standard functionality to make it editable anyway. If you do it as some people recommend  with inherited objects, you are still limited to columns.
Maybe it's time for you to go webdynpro - there are special CL_WD_SALV classes and we have cell objects there making everything possible.
If you got the time you may analyze the WD stuff and start a coding project for this without web dynpro.
Regards,
Clemens

Similar Messages

  • Do In need to manually disable JAVA in LION to protect from FlashBack?

    Do I need to manually disable JAVA in a new installation of LION to protect from FLASHBACK or does it install with JAVA disabled by default?

    It's disabled by default.  But that's assuming a new installation or on a new Mac.
    It's easy enoug to double check in Safari>Preferences>Securtity.
    Also, double check Java prefernces systme wide by launching the Java Preferences from the Utilities folder inside the Applications.
    If it asks you to first install Java then click Not Now.  If it does open prefernes, make sure they are unchecked in the General tab.
    Here's a good overview that OSX Daily published a while back.
    http://osxdaily.com/2012/04/07/tips-secure-mac-from-virus-trojan/
    Matt
    Message was edited by: Matthew Morgan

  • SNMP need ot be disable so the printers can show online

    I have an old question:
    I had to disable SNMP in printer port configurations so the printers can be not offline.
    Why and what caused these issues? We have tons of printer devices , only few are shown offline and need to manually disable SNMP in the tcp port settings to make them online.

    Hi,
    Please make sure that you have the same SNMP configuration on the printer device with what you have on the port used on the print server.
    Also, make sure that the SNMP community name is "public".
    Similar threads:
    Windows 2008 R2 - Printer "Offline" SNMP issue.
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/be2d661d-1595-40d7-bdd1-5372085bf810/windows-2008-r2-printer-offline-snmp-issue?forum=winserverprint
    Printers offline in windows 2008 R2
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/80b06f0d-3b81-4cc6-95ad-aabc781d1eb0/printers-offline-in-windows-2008-r2?forum=winserverprint
    Thanks.
    Jeremy Wu
    TechNet Community Support

  • Need method to disable checkbox

    Hi,
    My alv Grid report contains checkbox at end of each row, when ever user select the checkbox , I am taking the particular line  to internal Table by using below code.
    DATA cl_gui_alv_grid TYPE REF TO cl_gui_alv_grid.
      CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR'
           IMPORTING
                e_grid = cl_gui_alv_grid.
      CALL METHOD cl_gui_alv_grid->check_changed_data.
    My problem is whenever user selects the checkbox the checkbox should go Gray(Disabled).
    Is there any method to do this, If so pls give sample code.
    I tried with SET_VISIBLE, but not working
    I am using version 4.6C
    Thanks
    kar
    Edited by: karthik karthik on Jan 9, 2008 7:52 PM

    hi karthik,
    this may be helpful to u
    You have to have in the Output Table:
    Types: begin of lt_io.
    include structure mara. " Your Structure
    Types: style_table type lvc_t_style.
    Types: end of lt_io.
    data: lt_io type table of lt_io,
    ls_layout type lvc_s_layo,
    lt_fcat type lvc_t_fcat,
    lo_grid type ref to cl_gui_alv_grid.
    field-symbols: <io> type lt_io,
    <fcat> type lvc_s_fcat.
    ... fill your output table ....
    ls_layout-stylefname = 'STYLE_TABLE'.
    loop at lt_io assigning <io>.
    PERFORM set_style USING 'CHECKBOX' "Your Filename
    CHANGING <io>.
    endloop.
    ... Fill Your Field Catalog lt_fcat
    read table lt_fcat assigning <fcat>
    where fieldname = 'CHECKBOX'.
    <fcat>-checkbox = 'X'.
    create grid control lo_grid.
    CALL METHOD lo_grid->set_table_for_first_display
    EXPORTING
    is_layout = ls_layout
    CHANGING
    it_fieldcatalog = lt_fcat
    it_outtab = lt_io[].
    FORM set_style
    USING iv_fieldname TYPE lvc_fname
    CHANGING cs_io TYPE io.
    DATA: ls_style TYPE lvc_s_styl,
    lt_style TYPE lvc_t_styl.
    ls_style-fieldname = iv_fieldname.
    if cs_io-checkbox = ' '.
    ls_style-style = cl_gui_alv_grid=>mc_style_enabled.
    else.
    ls_style-style = cl_gui_alv_grid=>mc_style_disabled.
    endif.
    ls_style-maxlen = 2.
    INSERT ls_style INTO TABLE io-style_table.
    ENDFORM. "set_style
    regards,
    sravanthi

  • Need help to disable input selection-screen - very urgent

    Hi SAP experts,
    I have a requirement where in I need to disable ( Grey out ) the input fileds on the selection screen .
    My problem is as I am using ABAP query I am not able to use any events ( AT SELECTION-SCREEN OUTPUT ).
    My selection screen looks like this
    MATERIAL NUMBER ( SELECT-OPTIONS)
    MATERIAL TYPE ( PARAMETERS )
    Now I want to add one more check box below the above fields on the selection-screen.When I click on the check-box,the MATERIAL NUMBER  must be greyed out and MATERIAL TYPE should remain the same.
    Please let me know the coding for the same. All answers would be rewarded.
    Thanks in Advance,
    Suresh.

    Hi,
    Check out these codes.
    1.
    TABLES : mara, makt.
    parameter: p_matnr type mara-matnr,
               p_maktx type makt-maktx.
    at selection-screen output.
    select single maktx
    from makt
    into p_maktx
    where matnr = p_matnr
    and spras = 'EN'.
    loop at screen.
      if screen-name = 'P_MAKTX'.
        screen-input = 0.
        modify screen.
      endif.
    endloop.
    2.
    TABLES : mara, makt.
    TYPES:BEGIN OF tp_maktx,
          maktx TYPE makt-maktx,
          END OF tp_maktx.
    DATA:t_maktx TYPE STANDARD TABLE OF tp_maktx,
         wa_maktx TYPE tp_maktx.
    SELECT-OPTIONS: s_matnr FOR mara-matnr.
    SELECT-OPTIONS: s_maktx FOR makt-maktx.
    INITIALIZATION.
      REFRESH s_maktx[].
    AT SELECTION-SCREEN OUTPUT.
      LOOP AT SCREEN.
        IF screen-name = 'S_MAKTX-LOW' or screen-name = 'S_MAKTX-HIGH'.
          screen-input = 0.
          MODIFY SCREEN.
        ENDIF.
      ENDLOOP.
      REFRESH s_maktx[].
      if s_matnr[] is not initial.
      SELECT maktx FROM makt
      INTO TABLE t_maktx
      WHERE matnr IN s_matnr
      AND spras = 'EN'.
      endif.
      LOOP AT t_maktx INTO wa_maktx.
        s_maktx-low = wa_maktx-maktx.
        APPEND s_maktx.
        CLEAR:wa_maktx.
      ENDLOOP.
    3.
    TABLES : mara, makt.
    parameter p_cb1 type c as checkbox.
    parameter p_cb2 type c as checkbox.
    parameter p_cb3 type c as checkbox.
    initialization.
    loop at screen.
    if screen-name = 'P_CB3'.
    screen-invisible = 1.
    modify screen.
    endif.
    endloop.
    at selection-screen output.
    *loop at screen.
    *if screen-name = 'P_CB3'.
    *screen-invisible = 1.
    *modify screen.
    *endif.
    *endloop.
    loop at screen.
    if p_cb1 = 'X'.
      if screen-name = 'P_CB2'.
      screen-invisible = 1.
      modify screen.
      endif.
      if screen-name = 'P_CB3'.
      screen-invisible = 0.
      modify screen.
      endif.
    endif.
    if p_cb2 = 'X'.
      if screen-name = 'P_CB3'.
      screen-invisible = 1.
      modify screen.
      endif.
      if screen-name = 'P_CB1'.
      screen-invisible = 0.
      modify screen.
      endif.
    endif.
    if p_cb3 = 'X'.
      if screen-name = 'P_CB1'.
      screen-invisible = 1.
      modify screen.
      endif.
      if screen-name = 'P_CB2'.
      screen-invisible = 0.
      modify screen.
      endif.
    endif.
    endloop.
    Reward if helpful..
    Regards.

  • Need help with disabling fields or hiding rows based on previous field

    Hi,
    I have a report in a region.
    The report has five columns:
    Animal type_ Health Issues* Angel Grant Requested?* Granted?* Grant Response Date*
    Dog Fleas Yes Yes 02/04/2009
    Cat Fleas No
    The first time the screen is displayed only the Animal type_ Health Issues* Angel Grant Requested?* columns will appear.
    The user will make a selection for 'Angel Grant Requested' from the LOV ('YES', 'NO') and then click on the 'Submit' button.
    When the screen returns 'Angel Grant Requested?' will be grayed out so the user cannot change the selection. The user will make a selection for 'Granted?' using LOV ('YES, 'NO') and for 'Grant Response Date' using the calendar.
    {color:#ff0000}{color:#0000ff}Here is what I want to do...
    If the user selects 'NO' for 'Angel Grant Requested?' then I would like to do one of the following (which ever one is easiest to do) when the screen returns:
    1. Disable (gray out) the 'Granted?' and 'Grant Response Date' fields on the screen for the rows that have 'NO' for 'Angel Grant Requested?'
    so that the user cannot make any selection, AND update the HEALTH_ISSUES table to
    set grant_granted = 'N/A'
    grant_response_date = sysdate
    WHERE animal_issue_type_id = AI_ID;
    2. Do not display the rows that have 'NO' for 'Angel Grant Requested?'
    {color}
    Can you please provide code samples to do this?
    {color:#ff0000}*I tried to use javascript to gray out the columns, the problem I have is with the hidden f02 column (Angel Grant Requested) that I created on the report so that javascript could read the value. columns are being disabled as desired but the database table is not updating properly...*
    {color:#ff0000}*For the rows where the user selected 'YES' for 'Angel Grant Requested?' we need to update the table with the 'Granted?' and 'Grant Response Date' values. These values are somehow being put on the row where the user selected 'NO' for 'Angel Grant Requested?'.*
    This happens in the UPDATE_ISSUES PL/SQL after When :P6_DSP_REQUESTED = 'DSPGRANTED'{color}
    Below is the Javascript function that is in HTML HEADER:_
    &lt;/script&gt;
    &lt;script language="JavaScript1.1" type="text/javascript"&gt;
    function checkAngelGrant()
    var col2=document.forms[0].f02; /* angel grant requested */
    var col3=document.forms[0].f03; /* angel grant granted */
    var col4=document.forms[0].f04; /* grant response date */
    for (i=0;i&lt;col2.length;i++)
    var col2Check = col2+.value; /* read the hidden angel grant requested field */+
    +/* checks the hidden angel grant requested field+
    if no then we need to disable the angel grant granted field and the angel response date field.
    if (col2Check == 'NO')
    +{+
    col3.disabled=true; /* angel grant granted (Yes No) */
    col4.disabled=true; /* angel response date
    Below is the UPDATEISSUES PL/SQL process that is run on After Submit:_*
    DECLARE
    ai_id NUMBER;
    vgrant_requested VARCHAR2(3);
    vgrant_grnted VARCHAR2(3);
    vgrant_respdate DATE;
    f01 = Animal Issue Type ID
    f02 = grant requested ('YES','NO')
    F03 = grant granted ('YES','NO')
    F04 = grant response date
    P6_DSP_REQUESTED = DSPGRANTED display region with grant_granted and grant_respdate
    P6_DSP_REQUESTED = DSPREQUESTED display region with grant_requested only
    P6_DSP_REQUESTED = BIFNOCHG cannot change any of the fields that have already been set
    BEGIN
    IF :P6_DSP_BEQUESTED = 'DSPREQUESTED' then -- Allow setting of grant_requested value only
    FOR i IN 1..HTMLDB_APPLICATION.G_F01.COUNT LOOP
    ai_id := HTMLDB_APPLICATION.G_F01(i); -- animal_issue_type_id This is hidden
    vgrant_requested := HTMLDB_APPLICATION.G_F02(i); -- grant_requested (YES or NO)
    UPDATE HEALTH_ISSUE_TYPES
    SET grant_requested = vgrant_requested
    WHERE animal_issue_type_id = AI_ID;
    COMMIT;
    END LOOP;
    elsif :P6_DSP_REQUESTED = 'DSPGRANTED' then -- grant_granted and grant_response_date
    FOR i IN 1..HTMLDB_APPLICATION.G_F01.COUNT LOOP
    ai_id := HTMLDB_APPLICATION.G_F01(i); -- animal_issue_type_id This is hidden
    vgrant_grnted := HTMLDB_APPLICATION.G_F02(i); -- grant_granted (YES or NO)
    vgrant_respdate := to_date(HTMLDB_APPLICATION.G_F03(i),'MM/DD/YYYY');
    UPDATE HEALTH_ISSUE_TYPES
    SET grant_granted = vgrant_grnted,
    grant_response_date = vgrant_respdate
    WHERE animal_issue_type_id = AI_ID;
    COMMIT;
    END LOOP;
    end if;
    END;

    It's actually three reports that get run during different stages of the screen.
    When the user first enters the screen the data is populated from the REQUESTED REPORT sql:
    SELECT hit.animal_issue_type_id, at.animal_type_desc, it.issue_type_desc, hit.grant_requested
    FROM health_issue_types hit, animal_types at,issue_types it
    WHERE hit.animal_type_id = at.animal_type_id
    AND hit.issue_type_id = it.issue_type_id
    AND hit.file_no = :P6_FILE_NO;
    The user will make a selection from the LOV select list (Yes, No) for the grant_requested field and then click on the Submit button.
    {color:#ff0000}*If the user selects 'NO' for this field then I want to disable the grant_granted and grant_response_date fields when the screen is populated from the ISSUES REPORT sql. If this cannot be easily done then I would like to hide the entire row when 'NO' has been selected for the grant_requested field.*{color}
    When the screen returns the data is populated from the ISSUES REPORT sql:
    ISSUES REPORT
    SELECT hit.animal_issue_type_id, at.animal_type_desc, it.issue_type_desc, hit.grant_requested,
    hit.grant_granted, hit.grant_response_date
    FROM health_issue_types hit, animal_types at,issue_types it
    WHERE hit.animal_type_id = at.animal_type_id
    AND hit.issue_type_id = it.issue_type_id
    AND hit.file_no = :P6_FILE_NO;
    At this point the grant_requested field will no longer be available for user modification. The user will make a selection from the LOV select list (Yes, No) for the grant_granted, and the grant_response_date fields and then click on the Submit button again.
    When the screen returns the data is populated from the ANIMAL DISPLAY ONLY REPORT sql:
    ANIMAL DISPLAY ONLY REPORT
    SELECT hit.animal_issue_type_id, at.animal_type_desc, it.issue_type_desc, hit.grant_requested,
    hit.grant_granted, hit.grant_response_date
    FROM health_issue_types hit, animal_types at, issue_types it
    WHERE hit.animal_type_id = at.animal_type_id
    AND hit.issue_type_id = it.issue_type_id
    AND hit.file_no = :P6_FILE_NO;
    At this point the grant_requested, grant_granted, and grant_response_date fields will no longer be available for user modification.
    {color:#0000ff}Thank you for taking the time to look at my problem.{color}

  • Windows 8.1 Pro Need command to disable "Use default gateway on remote network" option on VPN connection"

    Hello!
    I want to create bat script to create several VPN connection.
    There is powershell command to create vpn connection:
    add-vpnconnection -name "Test VPN" -serveraddress "vpn.example.com" -splittunneling -tunneltype "pptp"
    And I need to create VPN connection without the option "Use default gateway on remote network" option on VPN connection"
    Or modify this option on existent VPN connection with command.
    Please help me to find command option or other command to disable "Use default gateway on remote network" option on VPN connection" feature.

    http://technet.microsoft.com/nl-nl/library/ee431701%28v=ws.10%29.aspx RouteIPv4TrafficOverRAS True – Add a default gateway on the VPN connection False – Do not add default gateway on the VPN connection

  • Need an enable/disable Labview VI for SC-2062 relay board using PCI-6503 DAQ Card.

    I am using Labview 6i, and I need to write an enable/disable VI that will enable and disable 6 of the 8 relays at any time while keeping the whole vi running. Therefore one or more positions may be changed at a time, but positions that don't change cannot be interrupted when changing others (no port resets allowed). I was wanting to maybe send a 1 by 6 array of some sort out but I can't figure out how to use the array to communicate with the DAQ card, relay board and SC-2051 adaptor. There also needs to be error handling in and out. Thanks for your help. Any examples would be very helpful.

    Hello;
    The best way to go about that is to disable the data points correspondent to the channels you want to disable. Meaning that you can ignore the datapoints of the channels you want to disable on the fly. That is the only way to disable channels on the fly.
    Regards
    Filipe A.
    Applications Engineer
    National Instruments

  • Need some help disabling/enabling the scrollbar on our website

    Dear Sir/madam,
    I am having some difficulty with our website to disable or hide the scrollbar on our website.
    The thing is that i want to disable/hide the scrollbar when i got a small web page with only one alinea of text.
    And i want to enable the scrollbar when i got more then one alinea of text and my webpage is a lot bigger.
    Can anyone help me out?
    Here is my CSS code file and html file
    HTML:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>Trend installatietechniek BV - Home</title>
    <meta name="Keywords" content="domotica, schakelaar, rookmelder, elektrische apparatuur">
    <meta name="Description" content="Domotica is een verzamelwoord voor het aan elkaar koppelen van verschillende systemen, zoals rookmelder, video-intercom en rookmelder.">
    <meta name="robots" content="index, follow">
    <meta name="revisit-after" content="1 month">
    <meta name="googlebot" content="noodp">
    <meta name="language" content="dutch, nederland, netherlands, nl">
    <meta name="author" content="trenbv.nl, Trend Installatietechniek BV">
    <style type="text/css">
    </style>
    <link href="trendbv2.css" rel="stylesheet" type="text/css" />
    <style type="text/css">
    a:visited {
    color: #666666;
    </style>
    <script type="text/javascript">
    function MM_preloadImages() { //v3.0
      var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
        var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
        if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
    function MM_swapImgRestore() { //v3.0
      var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
    function MM_findObj(n, d) { //v4.01
      var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
        d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
      if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
      for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
      if(!x && d.getElementById) x=d.getElementById(n); return x;
    function MM_swapImage() { //v3.0
      var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
       if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
    </script>
    </head>
    <body onload="MM_preloadImages('Beelden/hoofdnavigatieData.png','Beelden/hoofdnavigatieElektrot echniek.png','Beelden/hoofdnavigatieBeveiliging.png','Beelden/hoofdnavigatieTechnischBeh.p ng')">
    <div id="achtergrondmidden"><img src="Beelden/achtergrond.png" alt="achtergrondTrendbv" width="1024" height="751" border="0" /></div>
    <div id="fotogrootmidden"><img src="Beelden/Groot Home.jpg" width="944" height="360" alt="domoticaTrendbv" /></div>
    <div id="balkmidden"></div>
    <div id="logoTrendonder"></div>
    <div class="broodtekst" id="contactgegevens">
    <strong>Trend Installatietechniek BV</strong><br />
        <br />
      Kazemat 33<br />
      3905 NR  Veenendaal
      <p><strong>E:</strong> <a href="[email protected]:[email protected]">[email protected]</a><br />
      <strong>T:</strong> (0318) 51 63 02</p>
    </div>
    <div class="broodtekst" id="subnavigatie"></div>
    <div class="navigatiebovenaan" id="navigatiebovenaan">home       <a href="Tekenwerk.html">tekenwerk</a>       <a href="klanten.html">klanten</a>       <a href="ons bedrijf.html">ons bedrijf</a>      <a href="contact.html"> contact</a></div>
    <div class="broodtekst" id="tekstkolom">
      <p>Trend Installatietechniek is een specialist op het gebied  van elektrotechniek en bestaat sinds 1998. Inmiddels is Trend uitgegroeid tot  een gerenommeerd elektrotechnisch bedrijf met vestigingen in Veenendaal en  Assen.<br />
        <br />
        Trend Installatietechniek heeft sinds jaar en dag een  reputatie op het gebied van aanleg van datanetwerken en elektrotechnische  installaties.<br />
        U verwacht van een elektrotechnisch installateur vakmanschap  en kwaliteit. Naast kwalitatief hoogstaand werk onderscheiden wij ons door een  klantgerichte houding en korte levertijden. <br />
        <br />
        Wij voeren opdrachten uit voor klanten zoals het ZIGGO,  KNAW, de Universiteit van Amsterdam en KPN. Hierbij wordt veel  verwacht van onze monteurs. Daarom werken wij uitsluitend met ervaren, gediplomeerde  elektrotechnische monteurs. <br />
      </p>
    </div>
    <div id="tekstfoto1"><img src="Beelden/beeldhome2.png" alt="fotodomotica1" width="130" height="130" border="0" /></div>
    <div id="tekstfoto2"></div>
    <div id="hoofdnavigatieDomotica"><a href="Wat is domotica.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Image5','','Beelden/hoofdnavigatieDomotica.png',1)"><img src="Beelden/hoofdnavigatieDomotica-kort.png" alt="Hoofdnavigatie Domotica" name="Image5" width="583" height="65" border="0" id="Image5" /></a></div>
    <div id="hoofdnavigatieData"><a href="Wat is Data.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Image6','','Beelden/hoofdnavigatieData.png',1)"><img src="Beelden/hoofdnavigatieData-kort.png" alt="Hoofdnavigatie Data" name="Image6" width="472" height="65" border="0" id="Image6" /></a></div>
    <div id="hoofdnavigatieElektrotechniek"><a href="Wat is Elektrotechniek.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Image7','','Beelden/hoofdnavigatieElektrotechniek.png',1)"><im g src="Beelden/hoofdnavigatieElektrotechniek-kort.png" alt="Hoofdnavigatie Elektrotechniek" name="Image7" width="356" height="65" border="0" id="Image7" /></a></div>
    <div id="hoofdnavigatieBeveiliging"><a href="Beveiliging en camerasystemen.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Image8','','Beelden/hoofdnavigatieBeveiliging.png',1)"><img src="Beelden/hoofdnavigatieBeveiliging-kort.png" alt="Hoofdnavigatie Beveiliging" name="Image8" width="245" height="65" border="0" id="Image8" /></a></div>
    <div id="hoofdnavigatieTechnischBeheer"><a href="Technisch beheer.html" onmouseout="MM_swapImgRestore()" onmouseover="MM_swapImage('Image9','','Beelden/hoofdnavigatieTechnischBeh.png',1)"><img src="Beelden/hoofdnavigatieTechnischBeh-kort.png" alt="Hoofdnavigatie Technisch Beheer" name="Image9" width="134" height="65" border="0" id="Image9" /></a></div>
    <div id="body"></div>
    <div id="kaderlinks"></div>
    <div id="kaderrechts"></div>
    <div id="hoofdnavigatie"></div>
    <div id="achtergrondvertikaal"></div>
    </body>
    </html>
    CSS file:
    @charset "UTF-8";
    #body {
    position: fixed;
    width: 100%;
    z-index: 1;
    left: 0px;
    top: 0px; 
    background-image: url(Beelden/achtergrondbody.png);
    height: 100%;
    background-repeat: repeat-y
    #kaderlinks {
    position: fixed;
    left: 50%;
    top: 0px;
    width: 5px;
    height: 100%;
    z-index: 21;
    background-image: url(Beelden/kader.png);
    background-repeat: repeat-y;
    margin-left: -512px;
    #fotogrootmidden {
    position:absolute;
    left:50%;
    top:52px;
    width:944px;
    height:360px;
    z-index:2;
    margin-left: -472px;
    #achtergrondmidden {
    position: absolute;
    left: 50%;
    top: 0px;
    width: 1024px;
    height: 751px;
    z-index: 3;
    margin-left: -512px;
    #balkmidden {
    position: absolute;
    left: 50%;
    top: 378px;
    width: 642px;
    height: 49px;
    z-index: 3;
    margin-left: -130px;
    background-image: url(Beelden/blauwebalk.png);
    background-position: left;
    #achtergrondvertikaal {
    position: absolute;
    left: 50%;
    top: 751px;
    width: 1024px;
    height: 100%;
    z-index: 4;
    margin-left: -512px;
    background-image: url(Beelden/achtergrondonder.png);
    #logoTrendonder {
    position: fixed;
    left: 50%;
    height: 100%;
    z-index: 5;
    background-image: url(Beelden/logotrendonder.png);
    background-repeat: no-repeat;
    margin-left: -439px;
    background-position: bottom;
    width: 179px;
    #contactgegevens {
    position:fixed;
    left:50%;
    width:130px;
    z-index:10;
    margin-left: -410px;
    color: #000;
    vertical-align: bottom;
    top: 100%;
    margin-top: -260px;
    #contactgegevens p strong {
    color: #2B79BE;
    #navigatiebovenaan {
    position:absolute;
    left:50%;
    top:25px;
    width:404px;
    height:23px;
    z-index:12;
    text-align: right;
    margin-left: 50px;
    #navigatiebovenaan a:link {
    color: #999;
    #navigatiebovenaan a:hover {
    color: #2B79BE;
    #hoofdnavigatieDomotica {
    position:absolute;
    left:50%;
    top:58px;
    width:596px;
    height:82px;
    z-index:16;
    margin-left: -118px;
    #hoofdnavigatieData {
    position:absolute;
    left:50%;
    top:58px;
    width:467px;
    height:82px;
    z-index:17;
    margin-left: -3px;
    clip: rect(auto,auto,auto,0px);
    #hoofdnavigatieElektrotechniek {
    position:absolute;
    left:50%;
    top:58px;
    width:363px;
    height:82px;
    z-index:18;
    margin-left: 110px;
    #hoofdnavigatieBeveiliging {
    position:absolute;
    left:50%;
    top:58px;
    width:254px;
    height:82px;
    z-index:19;
    margin-left: 220px;
    #hoofdnavigatieTechnischBeheer {
    position:absolute;
    left:50%;
    top:58px;
    width:139px;
    height:84px;
    z-index:20;
    margin-left: 330px;
    #subnavigatie {
    position: absolute;
    left: 50%;
    top: 393px;
    width: 581px;
    height: 19px;
    z-index: 11;
    margin-left: -103px;
    #tekstkolom {
    position: absolute;
    left: 50%;
    top: 458px;
    width: 400px;
    height: 345px;
    z-index: 13;
    margin-left: 50px;
    text-align: left;
    font-size: 12px;
    #tekstfoto1 {
    position: absolute;
    left: 50%;
    top: 470px;
    width: 150px;
    height: 380px;
    z-index: 14;
    margin-left: -116px;
    #tekstfoto2 {
    position: absolute;
    left: 556px;
    top: 620px;
    width: 130;
    height: 130;
    z-index: 15;
    margin-left: -116px;
    #kaderrechts {
    position: fixed;
    left: 50%;
    top: 0px;
    width: 5px;
    height: 100%;
    z-index: 22;
    background-image: url(Beelden/kader.png);
    background-repeat: repeat-y;
    margin-left: 512px;
    .navigatiebovenaan {
    font-family: Arial, Helvetica, sans-serif;
    color: #999;
    font-size: 12px;
    .broodtekst {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 16px;
    a:link {
    text-decoration: none;
    color: #000;
    a:hover {
    color: #2B79BE;
    text-decoration: none;
    .h1 {
    font-family: Arial, Helvetica, sans-serif;
    color: #2B79BE;
    font-size: 17px;
    font-weight: lighter;

    Start by remvoing the code in RED.
    #body {
    position: fixed;
    width: 100%;
    z-index: 1;
    left: 0px;
    top: 0px;
    background-image: url(Beelden/achtergrondbody.png);
    height: 100%;
    background-repeat: repeat-y
    Browser scrollbars appear by default in all pages requiring them.  You don't need to do anything to make them appear.  I don't think you understand Fixed positioning well enough to be using it so much in your CSS.  It has a purpose but probably not what you think.
    See position:fixed sticky text demo.
    http://alt-web.com/DEMOS/CSS2-Sticky-Text.shtml
    Nancy O.

  • Radio interface need to be disabled when antenna is not present?

    I have been informed within a training class that the radio interface of an access point should be disabled when an antenna is not present. The reason given was that it would protect the radio from being adversely affected (potetnial for irreparable conditions). Question: 1) Is this true? 2) If so, where can I find supporting documentation on CCO? (I have not been able to find corroboratory information.)

    Hi Vincent,
    Here is a doc that speaks to this issue ( I don't see this causing irreparable damage but, better safe than sorry :)
    Q. If you operate the radio but do not attach the antenna, can you damage the radio?
    A. Some radio equipment manufacturers specifically warn against the operation of radios without the attachment of the antenna. Operation without the antenna can damage the transmitter. Most pieces of amateur or commercial radio equipment carry this warning because the equipment operates at a much higher transmitter power. A failure to use a proper antenna or load causes a reflected wave standing wave ratio (SWR) that can damage the final amplifier stage. This final amplifier stage is the power amplifier (PA).
    For Cisco Aironet equipment, the transmitter power output is 100 milliwatts (mW) for the 350 Series and 30 mW for the 340 Series. Damage is unlikely, but possible. If you need to run the devices without antennae, turn the transmitter power down to 1.5 mW. Also, you can use a 50/52 ohm dummy load (attenuator) to be safe.
    From this good Q & A doc;
    http://www.cisco.com/en/US/products/hw/wireless/ps441/products_qanda_item09186a0080094d01.shtml#aps
    Hope this helps!
    Rob

  • X220 TouchPad need to keep disabled

    I have a X220.
    I've disabled the TouchPad by 
    Control Panel > Device Manager > Mouse Properties > UltraNav.
    It seems take effect.
    But once I reboot my PC, the TouchPad is enabled again.
    How can I keep it disabled?
    Environment:
    Windows 7 Enterprise SP1 64bit
    ThinkPad UltraNav Driver 16.2.19.2
    ThinkPad UltraNav Utility 2.13.0
    Solved!
    Go to Solution.

    Don't bother messing around with drivers you won't need anymore, and bothering with all of the uninstall this, reinstall this stuff.
    If you want it permanently disabled (like I have done), just disable it in the BIOS.
    Press the "Thinkvantage" button as the system first boots.
    Press "F1" when you see the list of options.
    Go to "Config" in the bios. 
    Go to "Keyboard and mouse".
    Set the touchpad to disabled, and leave the trackpoint enabled.
    Now you can use the "nub", the buttons, the touch screen (if you have one), and never worry about that awful trackpad again. If you decide to use it again, just go into the bios and enable it back on. It only takes a couple seconds to do.
    I would however recommend installing the ultranav drivers directly from synaptics, so that you can adjust any settings you want to change for the trackpoint.
    good luck.

  • MSDN Checkbox in Azure Virtual Machine Gallery disabled

    Dear all,
    In Azure Virtual Machine Gallery the MSDN checkbox remains disabled although I successfully linked a Visual Studio Online account with an active MSDN subscription (VS Premium), both referring to the same login/administrator account.
    So I am not able to add a VS 2013 Premium virtual machine in Azure.
    Have I missed something?
    Thanks for your help,
    Denis

    Hi,
     Thanks for posting.
     Have you tried switching subscription to the VS Premium with MSDN
    Refer to the following thread.
     http://social.msdn.microsoft.com/Forums/en-US/cdb13f71-7aff-4eb2-8265-d85b00d6215e/msdn-gallery-virtual-machines-check-box-grayed-out?forum=windowsazurepurchasing
    Managing multiple subscriptions in Windows Azure
     http://bjorneriksen.blogspot.in/2013/09/managing-multiple-subscriptions-in.html
    Let us know if this helped.
    Regards,
    Nithin.Rathnakar

  • Need to admin disable 802.11a radio from a few light weight access points

    Hi team,
    I need help to admin disable the 802.11a radio interface from a few lightweight APs. The operational status of these radio interfaces is down, so I am getting the following error when I try to disable them from the wireless LAN controller.
    (Cisco Controller) config>802.11a disable wds2.hyd.shaw.net
    This slot is not operational because Regulatory Domain Check has failed! Unable to disable the Cisco AP.
    Could you please let me know how I can administratively disable the 802.11a radios on these APs? Please let me know if you need more details here.
    Regards,
    Swati

    The two previous posts are correct: the regulatory domain is probably not allowing radio a to be enabled.
    To be sure about this you can go to GUI of the wireless LAN controller > Wireless > Country. Here your country (or region) should be selected. Then depending on the access points that you have they may or may not join or turn on the radio. Per example if you have an access point from Europe (like AIR-AP1131AG-E-K9) then you will have a conflict if only the “America” regulatory domain (-A) is selected.
    Here is a link with a list of products and their regulatory domain that might help:
    http://tools.cisco.com/squish/648C8
    What you can do here is to simply allow the regulatory domain that the access point needs and you should not have any problems.
    IMPORTANT NOTE: If you change the regulatory domain and use an access point that transmit at certain channels and frequencies that are not allowed (illegal) in your country (region) you may have legal implications.
    I hope this information helps you with your concern.

  • Need help in Disabling Color Management prior to Printing

    I have PSE 10 on my MAC and need to find out how to disable color management in the printer preference catalog. Can't seem to find it.....

    Click the "More Options" button at the bottom.
    Select "Color Management" from the left side.
    Change the Color Handling setting as desired.

  • Which MSXP Services does FF Need? When Disabling Services; extentions, addons, themes stopped working

    I disabled some Service in MS Windows XP Home SP3 cause my Internet only lagged in Windows.. So i unchecked everything i didnt need or use.. Windows works wonderfull, runs even faster than before.. Only my extentions, Add-Ons, Plugins and Themes stopped working except for one.. The spelling-checker.
    So, my question is which Windows Service Process prob. disabled this when i shut down the services.. (By asking this i want an answer so i only need to enable 1-2 processes and not the dumb-ass answers where you advice to turn everything on again)
    PS.
    Troubleshooting Information included but i didnt find any complaints there

    Disable Photo Stream in the System/iCloud preference pane
    and in iPhoto's Photo Share preference pane.
    Reboot and reenable both respectively. That should jump start Photo Stream.
    OT

Maybe you are looking for

  • Upgrade  from 10.6.7 to 10.6.8 failed on MacBook Pro

    Sometime in the last 24 hours my wife's MacBook Pro (which she bought in December 2010) went through the automatic upgrades for (1) the Mac OS X Update to 10.6.8 and (2) Java for Mac OS X 10.6 update 5. When she tried to boot up her machine this morn

  • Can not user Raw value as NULL return in Select List

    Help me! I recently converted my application to take advantage of the sys_guid() function that oracle offers over the sequence/trigger option. However, I user a hierarchical set up and I need to be able to insert a RAW value of '00' if the user does

  • Reports in Document Currency

    Dear Developer, One of my customer ask me a second time for reports. He wants to see the values in the document currency. It is in the next releases possible, that the user can choose between Local currency, system currency, business partner currency

  • Purchasing for statistical wbs element

    Hello SAP experts, Could you please advise if it is possible to create a purchase requisition with regard to a statistical WBS element? If so, please let me what the assignment category should be used, so both cost center & wbs element number could b

  • Change transferred data to PS (CATS)

    Hello, is it possible to change transferred data to PS (CATS)? Is there maybe a report, which I could use? If not, maybe a few function modules or classes/methods? Thanks a lot. Sergej