Edit Display Templates missing controls

Hi,
I'm having problems working with Search Display Templates on SharePoint Online. It started when I uploaded and published two new templates. When I edit the properties of a Search Results Web Part to use these templates, they are not appearing in the Display
Templates dropdowns (Results Control Display Template and Item Display Template).
Going to the Design Manager: Edit Display Templates page, there are no controls displayed at the top to enable me to manage the Display Templates. On other sites there are 'New, Upload, Actions and Settings' actions available.
I'm suspicious that the two issues are linked. I've compared features on the site collection that works and the one that doesn't - both on the same tenancy - and they both have the same features enabled at a site collection and site level. I also have
the same permission level on both sites.
Does anyone know what I'm doing wrong?
Many thanks,
Colin
Best wishes, Colin

Hi Colin,
Please go to Design Manager->Edit Display Templates page, and check whether the
Approval Status of the two all are Approved. If not, please click the ECB menu->Publish a Major Version to  publish them.
Like the screenshot:
Best Regards,
Wendy
Forum Support
Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
[email protected]
Wendy Li
TechNet Community Support

Similar Messages

  • Sharepoint Online - Content Search, some Display Templates missing.

    I'm experimenting Content Search web parts in a number of Site Collections, but appear to be getting different Display Templates available.
    Can anyone explain what controls the availability of the templates please...
    Our Default root site collection.
    http://company.sharepoint.com
    Has Web part controls of
    List & Slideshow
    And Item Templates of
    Large Picture, Picture on left 3 lines, Recommended Items & Video
    All other site collections  http://company.sharepoint.com/sites/Dept1
    Has Web part controls of List
    & Slideshow
    PLUS List with Paging
    And Item Templates of
    Large Picture, Picture on left 3 lines, Recommended Items & Video
    PLUS Diagnostic, Picture on Top 3 Lines bottom, & Two Lines
    I've compared site and collection features and cannot see any features that would appear to control this...
    Any ideas.... Please!
    Cheers
    Russ

    I just had the same issue, I think it was something with broken upgrade code from 2013.
    Anyways, I solved it:
    Go to Master Page Gallery --> Display Templates --> Content Web Parts
    Delete all JavaScript Files in there except the Group_Content.js (!!!), they seem to have messed up metadata (Content Type Reference and Template Level)
    Open up PowerShell and issue this command:
    Get-SPFeature SearchTemplatesandResources | Enable-SPFeature -Url [URLtoBrokenSite] -Force
    This will re-upload the JavaScript files and all controls and templates finally are there again, hopefully ;)
    // Tried and true method for weather forecasting - random numbers. String weather = (new Random()).Next(2)==0?"rainy":"sunny";

  • CSWP Display Template Item - Include Like / Rating SharePoint control

    I'm working with the Content Search Web Part to bring details from Announcements lists up to the home page.  Each of these lists has the Like / Rating Social elements enabled and I would like to surface this on the Item Display Template but can't find
    out how.
    Is there a SharePoint control or JavaScript that I can use to surface this content?
    Thanks

    Ok, after searching I've found a solution for this.  It will be a 2 stage solution, the first simply displaying the rating or number of likes, the second actually updating them.
    So, stage 1:
    1.  You need to login to your Central Administration site and go to your Search Service Application.  Once there, under "Queries and Results", click "Search Schema".  You can apply a filter to help find the relevant managed property, so filter
    on "Like" or "Rating".  In this example I wanted to use the number of likes, so after filtering on "Like" I clicked to edit the "LikesCount" managed property.  From the edit page, located the "Main characteristics" heading and ensure that the "Searchable"
    checkbox is ticked.  Click "Ok" and run a "Full Crawl" on your content source.
    2.  Once this has been done, locate the Display Item Content Template that will be used for the Content Search Web Part.  At the top of this file you will find an <mso:ManagedPropertyMapping /> tag.  In this you want to register the
    LikesCount managed property from earlier.  This can be done by copying something similar to below:
    &#39;Likes Count&#39;{Likes Count}:&#39;LikesCount&#39;
    Further down the template, within the <div> where you can define content you need to setup a variable that reads the LikesCount value.  I also had some trouble reading this value when there were no Likes on an item, == null and isNaN() didn't
    seem to work so I added an if statement to check for 0 items.
    var likesCount = $getItemValue(ctx, "Likes Count");
    if (!(likesCount > 0)) {
        likesCount = 0;
    Finally, you can surface this variable into your content by simply using the normal notation.  i.e.
    _#= likesCount =#_
    I hope this has been of use to some people.  I will be posting an update once I've figured out if it's possible to like the source list item from the CSWP.

  • Can I edit the data already displayed in tree control?

    I'm using a tree control to display some data in front panel. But after running the program, can I edit the data already displayed in tree control by using input control and let it change and display dynamically? In invoke nodes I can only find add or delete items in tree but can't find edit...

    There is no direct editing option available, same can be achieved in two steps by using
    --> Add Item Invoke Node
    --> Delete Item Invoke Node
    I am not allergic to Kudos, in fact I love Kudos.
     Make your LabVIEW experience more CONVENIENT.

  • How to create a Display template for people search results

    Hi,
    I've just installed Sharepoint 2013 and started to play around with it. Seems to be many improvements - among these are the ability to create Display templates.
    On my publishing page there is a default "employee lookup" app which returns prefferred name, title and department as default when I try to search.
    I would love to return mobile number aswell so I have tried to do the following:
    I made a copy of Display _Catalogs/Masterpages/Display Templates/Search/Item_Person.html
    Edited that one with the following:
    1. Added 'MobilePhone':'MobilePhone' to the "Managed Property mapping" in the top of the html   document:
    <mso:ManagedPropertyMapping msdt:dt="string">'AboutMe':'AboutMe','AccountName':'AccountName','BaseOfficeLocation':'BaseOfficeLocation','Department':'Department','HitHighlightedProperties':'HitHighlightedProperties','Interests':'Interests','JobTitle':'JobTitle','LastModifiedTime':'LastModifiedTime','Memberships':'Memberships','MobilePhone':'MobilePhone','PastProjects':'PastProjects','Path':'Path','PictureURL':'PictureURL','PreferredName':'PreferredName','Responsibilities':'Responsibilities','Schools':'Schools','ServiceApplicationID':'ServiceApplicationID','SipAddress':'SipAddress','Skills':'Skills','UserProfile_GUID':'UserProfile_GUID','WorkEmail':'WorkEmail','WorkId':'WorkId','YomiDisplayName':'YomiDisplayName'</mso:ManagedPropertyMapping>
    2. Set a var in the <body> with:
    var has_MobilePhone = !$isEmptyString(ctx.CurrentItem.MobilePhone);
    Created the following based on "DepartmentField":
    if(has_MobilePhone == true) {
    _#-->
    <div id="MobilephoneField">
    <!--#_
    var encodedMobilePhone = $htmlEncode(ctx.CurrentItem.MobilePhone);
    var displayMobilePhone = Srch.U.getSingleHHXMLNodeValue(hhProps, "MobilePhone");
    if ($isEmptyString(displayMobilePhone)) { displayMobilePhone = encodedMobilePhone}
    _#-->
    <div id="MobilePhoneValue" class="ms-srch-ellipsis" title="_#= encodedMobilePhone =#_"> _#= displayMobilePhone =#_ </div>
    </div>
    <!--#_
    Saved the document to the masterpage galary and edited the search result page to (people search core results webpart) to "use a single template to display items" and selected my display template.
    Now the search result is still working but I get no mobile numbers to show up in the user info (only in the details which is default).
    Anyone has some bright ideas of what i'm missing?. I'm not used to code (which might be the cause :-)). If you also have an idea on how to make the value of the number = Mobile: <mobilenumber>. So the "Mobile:" static text is displayed
    aswell.
    Thanks a lot for your time.

    Hello,
    I did the same with my new SharePoint 2013 (I would like to display the mobile phone too) but without any chance. Have you done anything else ?
    This is my User Property "CellPhone" :
    http://www.cladstrife.com/CellPhone_Prop.png
    The ManagedPropertyMapping :
    <mso:ManagedPropertyMapping msdt:dt="string">'AboutMe':'AboutMe','AccountName':'AccountName','BaseOfficeLocation':'BaseOfficeLocation','Department':'Department','HitHighlightedProperties':'HitHighlightedProperties','Interests':'Interests','JobTitle':'JobTitle','LastModifiedTime':'LastModifiedTime','Memberships':'Memberships','PastProjects':'PastProjects','Path':'Path','PictureURL':'PictureURL','PreferredName':'PreferredName','Responsibilities':'Responsibilities','Schools':'Schools','ServiceApplicationID':'ServiceApplicationID','SipAddress':'SipAddress','Skills':'Skills','UserProfile_GUID':'UserProfile_GUID','WorkEmail':'WorkEmail','WorkId':'WorkId','YomiDisplayName':'YomiDisplayName','CellPhone':'CellPhone','HomePhone':'HomePhone'</mso:ManagedPropertyMapping>
    The "if_exist" variable :
    var has_cphone = !$isEmptyString(ctx.CurrentItem.CellPhone);
    And the "display" code :
    <!--#_
    if(has_cphone == true) {
    _#-->
    <div id="CPhoneField">
    <!--#_
    var encodedCPhone = $htmlEncode(ctx.CurrentItem.CellPhone);
    var displayCPhone = Srch.U.getSingleHHXMLNodeValue(hhProps, "CellPhone");
    if ($isEmptyString(displayCPhone)) { displayCPhone = encodedCPhone}
    _#-->
    <div id="CPhoneValue" class="ms-srch-ellipsis" title="_#= encodedCPhone =#_"> Mobile: _#= displayCPhone =#_ </div>
    </div>
    <!--#_
    _#-->
    If I delete the test lines in the display code (if(has_cphone == true) it show "Mobile:" but without any mobile number.
    Thanks for your help if any idea :)
    Best regards
    Gabriel

  • SharePoint 2013 Search Display Template People Search Mobile Phone

    Hello,
    I'd like to customize the people search result page. I already added some custom profile properties without any problem. But, when adding the MobilePhone field nothing is display.
    I've created a new display template based on the "Item_Person.html" file. 
    Added the "MobilePhone" field in the ManagedPropertyMapping section
    <mso:ManagedPropertyMapping msdt:dt="string">&#39;WorkPhone&#39;:&#39;WorkPhone&#39;,&#39;MobilePhone&#39;:&#39;MobilePhone&#39;,&#39;Room&#39;:&#39;Room&#39;,&#39;Werkgebieden&#39;:&#39;Werkgebieden&#39;,&#39;AboutMe&#39;:&#39;AboutMe&#39;,&#39;AccountName&#39;:&#39;AccountName&#39;,&#39;BaseOfficeLocation&#39;:&#39;BaseOfficeLocation&#39;,&#39;Department&#39;:&#39;Department&#39;,&#39;HitHighlightedProperties&#39;:&#39;HitHighlightedProperties&#39;,&#39;Interests&#39;:&#39;Interests&#39;,&#39;JobTitle&#39;:&#39;JobTitle&#39;,&#39;LastModifiedTime&#39;:&#39;LastModifiedTime&#39;,&#39;Memberships&#39;:&#39;Memberships&#39;,&#39;PastProjects&#39;:&#39;PastProjects&#39;,&#39;Path&#39;:&#39;Path&#39;,&#39;PictureURL&#39;:&#39;PictureURL&#39;,&#39;PreferredName&#39;:&#39;PreferredName&#39;,&#39;Responsibilities&#39;:&#39;Responsibilities&#39;,&#39;Schools&#39;:&#39;Schools&#39;,&#39;ServiceApplicationID&#39;:&#39;ServiceApplicationID&#39;,&#39;SipAddress&#39;:&#39;SipAddress&#39;,&#39;Skills&#39;:&#39;Skills&#39;,&#39;UserProfile_GUID&#39;:&#39;UserProfile_GUID&#39;,&#39;WorkEmail&#39;:&#39;WorkEmail&#39;,&#39;WorkId&#39;:&#39;WorkId&#39;,&#39;YomiDisplayName&#39;:&#39;YomiDisplayName&#39;</mso:ManagedPropertyMapping>
    3. Added a variable:
    var has_MobilePhone = !$isEmptyString(ctx.CurrentItem.MobilePhone)
    4. Copied the "WorkPhone" display section and changed the values to MobilePhone
    <!--#_
    if(has_MobilePhone == true) {
    _#-->
    <div id="MobilePhoneField">
    <!--#_
    var encodedMobilePhone = ctx.CurrentItem.MobilePhone;
    var displayMobilePhone = Srch.U.getSingleHHXMLNodeValue(hhProps, "MobilePhone");
    if ($isEmptyString(displayMobilePhone)) { displayMobilePhone = encodedMobilePhone }
    _#-->
    <div id="MobilePhoneValue" class="ms-srch-ellipsis" title="_#= encodedMobilePhone =#_">MobilePhone: _#= displayMobilePhone =#_ </div>
    </div>
    <!--#_
    _#-->
    Unfortunally the mobilephone does not appear in my search results. 
    What did I missed?

    First of all thank you for this quick reply.
    I changed all the properties from MobilePhone to CellPhone, but without result.
    <mso:ManagedPropertyMapping msdt:dt="string">&#39;WorkPhone&#39;:&#39;WorkPhone&#39;,&#39;CellPhone&#39;:&#39;CellPhone&#39;,&#39;Room&#39;:&#39;Room&#39;,&#39;Werkgebieden&#39;:&#39;Werkgebieden&#39;,&#39;AboutMe&#39;:&#39;AboutMe&#39;,&#39;AccountName&#39;:&#39;AccountName&#39;,&#39;BaseOfficeLocation&#39;:&#39;BaseOfficeLocation&#39;,&#39;Department&#39;:&#39;Department&#39;,&#39;HitHighlightedProperties&#39;:&#39;HitHighlightedProperties&#39;,&#39;Interests&#39;:&#39;Interests&#39;,&#39;JobTitle&#39;:&#39;JobTitle&#39;,&#39;LastModifiedTime&#39;:&#39;LastModifiedTime&#39;,&#39;Memberships&#39;:&#39;Memberships&#39;,&#39;PastProjects&#39;:&#39;PastProjects&#39;,&#39;Path&#39;:&#39;Path&#39;,&#39;PictureURL&#39;:&#39;PictureURL&#39;,&#39;PreferredName&#39;:&#39;PreferredName&#39;,&#39;Responsibilities&#39;:&#39;Responsibilities&#39;,&#39;Schools&#39;:&#39;Schools&#39;,&#39;ServiceApplicationID&#39;:&#39;ServiceApplicationID&#39;,&#39;SipAddress&#39;:&#39;SipAddress&#39;,&#39;Skills&#39;:&#39;Skills&#39;,&#39;UserProfile_GUID&#39;:&#39;UserProfile_GUID&#39;,&#39;WorkEmail&#39;:&#39;WorkEmail&#39;,&#39;WorkId&#39;:&#39;WorkId&#39;,&#39;YomiDisplayName&#39;:&#39;YomiDisplayName&#39;</mso:ManagedPropertyMapping>
    var has_CellPhone = !$isEmptyString(ctx.CurrentItem.CellPhone)
    <!--#_
    if(has_CellPhone == true) {
    _#-->
    <div id="CellPhoneField">
    <!--#_
    var encodedCellPhone = ctx.CurrentItem.CellPhone;
    var displayCellPhone = Srch.U.getSingleHHXMLNodeValue(hhProps, "CellPhone");
    if ($isEmptyString(displayCellPhone)) { displayCellPhone = encodedCellPhone }
    _#-->
    <div id="CellPhoneValue" class="ms-srch-ellipsis" title="_#= encodedCellPhone =#_">CellPhone: _#= displayCellPhone =#_ </div>
    </div>
    <!--#_
    _#-->
    Can you please tell me what I need to change?

  • How to edit and update table control into database?

    I am doing table control. Here are my codes:
    *& Report  ZHERA_TABLE2
    REPORT  ZHERA_TABLE2.
    ***&SPWIZARD: DATA DECLARATION FOR TABLECONTROL 'ZTABLE_CONTROL'
    *&SPWIZARD: DEFINITION OF DDIC-TABLE
    TABLES:   ZHERA.
    *&SPWIZARD: TYPE FOR THE DATA OF TABLECONTROL 'ZTABLE_CONTROL'
    TYPES: BEGIN OF T_ZTABLE_CONTROL,
             NAME LIKE ZHERA-NAME,
             AGE LIKE ZHERA-AGE,
           END OF T_ZTABLE_CONTROL.
    *&SPWIZARD: INTERNAL TABLE FOR TABLECONTROL 'ZTABLE_CONTROL'
    DATA:     G_ZTABLE_CONTROL_ITAB   TYPE T_ZTABLE_CONTROL OCCURS 0,
              G_ZTABLE_CONTROL_WA     TYPE T_ZTABLE_CONTROL. "work area
    DATA:     G_ZTABLE_CONTROL_COPIED.           "copy flag
    *&SPWIZARD: DECLARATION OF TABLECONTROL 'ZTABLE_CONTROL' ITSELF
    CONTROLS: ZTABLE_CONTROL TYPE TABLEVIEW USING SCREEN 1000.
    START-OF-SELECTION.
    CALL SCREEN 1000.
    *&SPWIZARD: OUTPUT MODULE FOR TC 'ZTABLE_CONTROL'. DO NOT CHANGE THIS LI
    *&SPWIZARD: COPY DDIC-TABLE TO ITAB
    MODULE ZTABLE_CONTROL_INIT OUTPUT.
      IF G_ZTABLE_CONTROL_COPIED IS INITIAL.
    *&SPWIZARD: COPY DDIC-TABLE 'ZHERA'
    *&SPWIZARD: INTO INTERNAL TABLE 'g_ZTABLE_CONTROL_itab'
        SELECT * FROM ZHERA
           INTO CORRESPONDING FIELDS
           OF TABLE G_ZTABLE_CONTROL_ITAB.
        G_ZTABLE_CONTROL_COPIED = 'X'.
        REFRESH CONTROL 'ZTABLE_CONTROL' FROM SCREEN '1000'.
      ENDIF.
    ENDMODULE.
    *&SPWIZARD: OUTPUT MODULE FOR TC 'ZTABLE_CONTROL'. DO NOT CHANGE THIS LI
    *&SPWIZARD: MOVE ITAB TO DYNPRO
    MODULE ZTABLE_CONTROL_MOVE OUTPUT.
      MOVE-CORRESPONDING G_ZTABLE_CONTROL_WA TO ZHERA.
    ENDMODULE.
    Screen 1000 codes:
    PROCESS BEFORE OUTPUT.
    *&SPWIZARD: PBO FLOW LOGIC FOR TABLECONTROL 'ZTABLE_CONTROL'
      MODULE ZTABLE_CONTROL_INIT.
    *&SPWIZARD: MODULE ZTABLE_CONTROL_CHANGE_TC_ATTR.
    *&SPWIZARD: MODULE ZTABLE_CONTROL_CHANGE_COL_ATTR.
      LOOP AT   G_ZTABLE_CONTROL_ITAB
           INTO G_ZTABLE_CONTROL_WA
           WITH CONTROL ZTABLE_CONTROL
           CURSOR ZTABLE_CONTROL-CURRENT_LINE.
    *&SPWIZARD:   MODULE ZTABLE_CONTROL_CHANGE_FIELD_ATTR
        MODULE ZTABLE_CONTROL_MOVE.
      ENDLOOP.
    MODULE STATUS_1000.
    PROCESS AFTER INPUT.
    *&SPWIZARD: PAI FLOW LOGIC FOR TABLECONTROL 'ZTABLE_CONTROL'
      LOOP AT G_ZTABLE_CONTROL_ITAB.
        CHAIN.
          FIELD ZHERA-NAME.
          FIELD ZHERA-AGE.
        ENDCHAIN.
      ENDLOOP.
    *&SPWIZARD: MODULE ZTABLE_CONTROL_CHANGE_TC_ATTR.
    *&SPWIZARD: MODULE ZTABLE_CONTROL_CHANGE_COL_ATTR.
    MODULE USER_COMMAND_1000.
    Please show me where to put my codes to edit(edit directly on table control fields) and update my table control(using the 'save' button)?

    Hi,
    You have to put the following code in the PBO of screen 1000.This code would make the fields editable to make changes in the table control fields directly.
    Here there are 3 transactions.For create and change transactions, the fields will be in editable mode and for display transaction,they will be non editable mode.
    DESCRIBE TABLE tb_line LINES lin.    " tb_line is the name of the internal table for the table control
      tcl_item-lines = lin.                             '' lin hold the number of lines of the internal table
    CASE sy-tcode.
        WHEN 'ZCREATE09' OR 'ZCHANGE09'.
    ***Checking if the table control is empty or not***
          IF lin NE 0.       
            LOOP AT SCREEN.
    ***To make the screen editable****
              screen-input = 1.
            ENDLOOP.
          ELSE.
            LOOP AT SCREEN.
              IF screen-name CS 'TB_LINE'.
    ****To make the screen non-editable if no values are present in the
    ***table control****
                screen-input = 0.
                MODIFY SCREEN.
              ENDIF.
            ENDLOOP.
          ENDIF.
    Once the fields are edited and the save button is pressed,the entered values have to be populated into the Z tables.The code has to written in the PAI of the screen 1000.Here the values from the work area of the internal table are moved into the Z Table. The code will be.
    LOOP AT tb_line.
        ztm09_ekpo-ebeln = ztm09_ekko-ebeln.  "ztm09_ekko and ztm09_ekpo are the names of the Z Tables.
        ztm09_ekpo-ebelp = tb_line-ebelp.   
        ztm09_ekpo-matnr = tb_line-matnr.
        ztm09_ekpo-menge = tb_line-menge.
        ztm09_ekpo-meins = tb_line-meins.
        ztm09_ekpo-netpr = tb_line-netpr.
        ztm09_ekpo-waers = tb_line-waers.
    *****Update the entries into item table*****
        MODIFY ztm09_ekpo.
      ENDLOOP.
    Reward if helpfull
    Thanks,
    Kashyap

  • Moved: Creation of new iViews not possible because templates missing

    Hello,
    sorry I moved this issue to "Portal Content Development"
    Creation of new iViews not possible because templates missing
    Regards
    Alex
    Message was edited by:
            Alexander Lepka

    Alex,
    I'd be curious to know what SAP says.  We have the same problem.  Not sure how/if we broke it, but we can no longer create iviews using the wizard.  I opened an OSS msg a while ago, but did not get much assistance. 
    We have recently upgraded to 2004s and it did not resolve the issue as I hoped it would. 
    If SAP provides a solution for you, please post it. 
    Thanks,
    Shelly

  • How To edit Display ID/Monitor ID or erase Display ID/Monitor ID Windows 7

    Hi !
    Started a tread in the other "answers microsoft forum" bur got redirected here hence they thought that this was a developer-question...
    My original Thread:
    http://answers.microsoft.com/en-us/windows/forum/windows_7-hardware/how-to-edit-display-idmonitor-id-or-erase-display/62eeace8-358c-4d65-8609-a3df7c3ac216?rtAction=1425277245844
    question:
    Have a problem that appears sometimes.
    Setting up workstations at work with multiple Display-Monitors, its part of my job...
    The Actual ID that the monitors get from Windows is usually not a problem, most programs can adapt to the windows settings and everything is fine.
    BUT some of the systems we run sends commands and stuff to based on the actual number of the display, the number that appears on the screen when clicking the "identify button" in the desktop/display-settings from control-panel.
    Lets call it the HardWare-ID of the Display
    the computer, or windows remember display´s EDID and stores the monitors that has been connected in  a list ?
    If I installed the monitors/displays in correct order everything is good and works like we want it to.
    So it happens that a display brakes or switch place for some reason, or maybe a driver-upgrade resets the display-list and windows now initiates the monitors in the wrong order.
    the monitor that 1 want to have HW-ID 1 now has HW-ID 2, and everything is wrong, messages and commands now end up on the wrong display.
    We have 3 options.
    1 - Fix the display HW-ID
    2 - Re-Configure the system and all that that includes, and hope that it wont change back at the next display-switch or driver-upgrade.
    3 - re-install windows and hope that the displays get the correct ID and the continue with customer applications and so on.
    I have found out that this is being stored somewhere in REG-Edit, but cant find the correct place
    Having talked to HP, they don't support this kind of things... it must be a windows-problem, try with a clean install.....   c-mon I switched a display !!
    Tried clean driver-installs from AMD and Nvidia for the graphics cards, worked one time, until I rebooted the machine, the back to square one...
    Then they ponited at Microsoft.
    Having talked to Microsoft Support they dont support this kind of things....
    I dont have the skills, but I cant se a problem with a scrips that deletes the reg-edit EDID list after a reboot ?
    then it wouldnt be so complicated, simply:
    unplug all but the display that you wan to be number 1
    run script
    reboot
    plug in display 2 and so on ?
    clearification:
    Hi !
    The question remains.
    Not sure you guys understand my problem, doesent seem so...
    I have the need to sweep the computers display-memory
    The Application we are using is sending the commands to to logical screen number, not primary or secondary screen.
    So It is Vital that I can decide or edit the logical numbers of the displays/screens
    It doesent help me at all to switch sides in controlpanel och swtich witch is primary screen for desktop.
    the application still sends the commands to teh logical numbers, and we dont want to reconfigure that if we changed a display that was faulty.
    So:
    I Need to disconnect displays så that I only have one connected
    sweep the display-memory that is on the computer so that the disconnect monitor becomes number 2 when I reconnect it, if I dont get this memory swiped windows remembers the display and gives it the old number again.
    can anyone help me `?
    NOT connected to any Domain.
    I realy cant understand how hard it can be to swipe the hardware ID of the displays and start over without having to to a clead install of windows !!

    Hi Bobbyco57,
    i've deleted my iCloud's mail ID in my iPhone 4 successfully so i've mentioned steps to delete iCould mail ID as below:
    1. Select Settings icon.
    2. Select iColud icon.
    3. Click on Delete Account.
    4. Enter new Apple ID and Password.
    5. Click on Agree.
    Thanks and Regards,
    Suresh Balakrishnan

  • Item display templates office 365 not showing in sharepoint designer

    Hi,
    I have an enterprise search site in O365. I can brows to Masterpage > Display Templates > Search in the browser and see the .html & .js file.  If I brows to the same location in SharePoint designer, the files do not display.  How do I
    see/edit the files in SP designer?
    Thx!

    Hi Lorena,
    Add an image of the path, All Files (and pin button)->_catalogs->masterpage library.
    Thanks
    Daniel Yang
    TechNet Community Support

  • Content Search Web Part - display template Error

    Hi,
    I have an office 365 site, where in I have more than one Content Search Web Part and I have written custom display templates to be used in CSWP.
    Now, the issue is, whenever the page is browsed (intermittent in this case) and the page is edited to edit the CSWP (always in this case), the javascript files corresponding to the display templates are not loaded and because of which its throwing 'Sorry,
    something went wrong' error. 
    Thanks
    Senthil

    Hi Senthu,
    Any updates on this issue?
    Since there are articles describe how to customize template for content search web part, I'd recommend you refer to them and check/debug your script:
    http://blogs.technet.com/b/sharepoint_quick_reads/archive/2013/08/01/sharepoint-2013-customize-display-template-for-content-by-search-web-part-cswp-part-1.aspx
    http://blogs.technet.com/b/sharepoint_quick_reads/archive/2013/08/02/sharepoint-2013-customize-display-template-for-content-by-search-web-part-cswp-part-2.aspx
    If you suspect there is performance issue, you could test it on other browsers or machines.
    If the issue persists on reference in the script, please refer to the articles and try to find one which can meet your requirement.
    http://onlinecoder.blogspot.com/2013/10/localizing-cswp-display-templates-in.html
    Regards,
    Rebecca Tu
    TechNet Community Support

  • Editing a template

    I don't have Contribute on my computer but my client does. I
    created the site in Dreamweaver. I thought he would be able to edit
    a template page because a copy resides on the server. When he tried
    to edit the file he gets a message "This file cannot be displayed
    in the Contribute web browser." I don't have 'enable Contribute
    compaitbility' checked on the site definition because I don't think
    there is much work that I will be doning on the site. Can templates
    be edited in Contribute? And, if so, what do I need to do to allow
    that to happen?

    Before you update a template file there's a few thinsg that
    make the process go smoothly:
    1. Ideally have the user publish all draft or new pages.
    2. Make sure you have synchronized your local copy of the
    website in Dreamweaver with the remote server.
    3. Once you've done the synchronize rebuild Dreamweaver's
    Site Cache.
    4. Update the template file, and allow Dreamweaver to check
    out and update all the pages using the template. If feasible you
    can check out all the pages that use the template first; there 's
    no need to check out the dependent images etc.
    5. Do another synchronize, this time putting all the new
    local files onto the remote server.
    6. Check in all the files that were checked out in step 4.
    The Contribute user should get the latest copy of the
    template when they start up, but make sure they do not have the
    "Don't connect to websites at startup" option checked.

  • Group display templates

    Hi all
    I am implementing a search-driven carousel in SharePoint Online 2013 Preview like this one: http://www.blendmaster.net/blog/2012/11/search-driven-twitter-bootstrap-carousel-in-sharepoint-2013/.
    Unlike that one, I am implementing it using the Search Results web part, not the Content Search web part, because the latter one isn't available in SharePoint Online 2013 Preview.
    It is working, however, as well as customising the control and item display templates, I am wanting to customise the group display template; however, I can't find how to "register" the group display template.
    Does anyone know how to associate a group display template with a control display template or, alternatively, how to associate the group display template with the Search Results web part?
    Regards,
    Chris

    Are group templates even available in the CSWP Display templates? It seems I saw on this blog a reference of OOTB templates and only saw a group template for the Search Results Web Part. I have read other posts where you could actually inject a group template
    into the CSWP. Even with that I do not see any examples of how to build the query rule and result block so that you can group results using the CSWP.
    Am I barking up the wrong tree with trying to roll-up content using the CSWP? It seems that everyone wants to group their results like they did using the CQWP but this seems to be very difficult or not well documented. I, for one, have been struggling with
    this for weeks without any success. This should not be so difficult.
    If we don't use the CSWP for content roll-up then what are my other options for cross site-collection roll-ups?

  • Programaticlly change reference of display template for a CSWP

    I have created a custom display template for one of my CSWP.
    Now, How can I change the CSWP property - Item and Control Template, programmatically.
    - GEM

    Hi,
    According to your post, my understanding is that you want to change the content search web part property.
    To change the web part property, we can override the GetToolParts method and return a CustomPropertyToolPart object along with the base toolparts.
    there is an article about this topic, you can refer to it.
    http://www.lestersconyers.com/extending-search-web-parts/
    More reference:
    http://blogs.msdn.com/b/davidrei/archive/2012/12/27/sharepoint-2013-set-content-search-web-part-querytext-attribute-programmatically.aspx
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • ICommand Display template

    Hey guys
    I ma using Xmii 12.0 - mobving to 12
    I am trying to do a simple query on a web page and grab the result data in javascript
    I dont understand what i am doing wrong.
    I have the wollijg applet
    <APPLET NAME="cmdPeriod" CODEBASE="/XMII/Classes" CODE="iCommand" ARCHIVE="illum8.zip" WIDTH="1" HEIGHT="1" MAYSCRIPT>
    <PARAM NAME="QueryTemplate" VALUE="NIW_MES_Data_Extract/30_Reporting/qry_Period_Get">
    </APPLET>
    And the following javascript :
    document.cmdPeriod.getQueryObject().setParam(1,PeriodDate);
    document.cmdPeriod.getQueryObject().setParam(2,PeriodTypeID);
    document.cmdPeriod.getQueryObject().setParam(3,siteCode);
    document.cmdPeriod.executeCommand();
    showDebug(document.cmdPeriod.getValue(1, 3));
    I know that the query with those parameters returns a single row.
    so why do I always get NOTHING back when i Call getValue()
    Do i need a Display template for my iCommand ???
    If so, how/where do i create it ???

    Hello,
    The code shown by you is correct,
    <APPLET NAME="cmdPeriod" CODEBASE="/XMII/Classes" CODE="iCommand" ARCHIVE="illum8.zip" WIDTH="1" HEIGHT="1" MAYSCRIPT>
    <PARAM NAME="QueryTemplate" VALUE="NIW_MES_Data_Extract/30_Reporting/qry_Period_Get">
    </APPLET>
    document.cmdPeriod.getQueryObject().setParam(1,PeriodDate);
    document.cmdPeriod.getQueryObject().setParam(2,PeriodTypeID);
    document.cmdPeriod.getQueryObject().setParam(3,siteCode);
    document.cmdPeriod.executeCommand();
    showDebug(document.cmdPeriod.getValue(1, 3));
    But if you are trying to return output from an iCommand Applet then in Query Template instead of using Command mode use FixedQuery Mode
    Hope this helps!!
    Another thing, I also noticed that you said
    showDebug(document.cmdPeriod.getValue(1, 3));
    I know that the query with those parameters returns a single row.
    so why do I always get NOTHING back when i Call getValue()
    You are getting only 1 Row and you are referring to third row because  getValue(1,3) represents Column 1 and Row 3 not the other way
    Here's the syntax of getValue
    String getValue(int ColID, int RowID)
    Instead your getValue should be getValue(3,1) this will fetch you data from 3rd column of 1st row.
    Regards,
    Adarsh
    Edited by: Adarsh Sidnoor on Jul 28, 2010 1:08 PM

Maybe you are looking for