Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CRM 2011 - addCustomView on Google Chrome

I have been on a CRM 2011 project that uses a lot of custom views.

I recently figured it out that all lookup custom views are only working properly in the internet explorer. When I try using google chrome (Version 51.0.2704.84 m) it simple does not work.

I googled without luck.

Is anyone aware about how to solve that issue?

I'm sure many of you have faced the same problem.

Here is my code. I emphasize that it works like a charm in IE.

    var viewId = "{1DFB2B35-B07C-44D1-868D-258DEEAB88E1}";
    var entityName = "tz_tipodefrete";
    var viewDisplayName = "Tipos de Frete Disponíveis";

    var fetchXml =
"<fetch distinct='false' mapping='logical' output-format='xml-platform' version='1.0'>" +
    "<entity name='tz_tipodefrete'>" +
        "<attribute name='tz_name'/>" +
        "<order descending='false' attribute='tz_ordem'/>" +
        "<filter type='and'>";
    if (filtrar)
        fetchXml = fetchXml + "<condition attribute='tz_name' value='Cliente Retira e instala no CT' operator='ne'/>";

    fetchXml = fetchXml +
            "<condition attribute='statecode' value='0' operator='eq'/>" +
        "</filter>" +
    "</entity>" +
"</fetch>";

    // build Grid Layout
    var layoutXml = "<grid name='resultset' object='1' jump='tz_name' select='1' icon='1' preview='1'>" +
                      "<row name='result' id='tz_tipodefreteid'>" +
                        "<cell name='tz_name' width='600' />" +
                      "</row>" +
                    "</grid>";


    Xrm.Page.getControl("tz_tipodefrete").addCustomView(viewId, entityName, viewDisplayName, fetchXml, layoutXml, true);
    //Desabilita a opção do usuário trocar de view. Provável que pare de funcionar na migração para versão 2015
    document.getElementById("tz_tipodefrete").setAttribute("disableViewPicker", "1");
like image 970
Bruno Willian Avatar asked Jun 10 '16 23:06

Bruno Willian


People also ask

Does CRM Work in Chrome?

If the CRM solution you are interested in isn't listed above, you can find a Chrome CRM extension to make it work great in your browser. The installation of an extension takes just a few minutes and saves you from possible issues in the future. You can find all the available options in Chrome Webstore.

Does Dynamics 365 work on Chrome?

Microsoft Edge (recommended: Chromium-based Edge) Chrome. Firefox.


1 Answers

Have you tried taking the brackets off the guid? Ex. var viewId = "1DFB2B35-B07C-44D1-868D-258DEEAB88E1"; In some situations, that helps.

like image 72
Sarah_B Avatar answered Sep 28 '22 06:09

Sarah_B