zoukankan      html  css  js  c++  java
  • Default Multicolumn Sort (Proof of Concept)

    from   http://crmentropy.blogspot.com/2009/10/default-multi-column-sort.html

    may be use this mechanism sometimes. so log it.

    Being able to sort by multiple columns in CRM is quite handy, but unfortunately there are no mechanisms for configuring a default multi-column sort. Until now. The following code will illustrate how to accomplish it:
    var stageFrame = document.getElementsByName("stage")[0]; 
    var stageFrameDoc = stageFrame.contentWindow.document;
    crmGrid = stageFrameDoc.all.crmGrid;
    crmGrid.all.divGridProps.children["sortColumns"].value = "statuscode:0;casetypecode:1";
    crmGrid.Refresh()
    I spent some time trying to answer this question: http://social.microsoft.com/Forums/en-US/crmdevelopment/thread/bd082f9d-1288-49ea-a8b4-e2b0beefd1d4. And came up with the solution above.
    Basically, it's implemented as this:
    1. First, get the document that holds the crmGrid;
    2. Then, access the divGridProps collection within it;
    3. Change the value for the "sortColumns" property to "<field name 1>:<sort type>[; <field name x>:<sort type>]" where: <field name> is the name of the sorted column <sort type> is 1 (descending) or 0 (ascending)
    4. Repeat the bracketed block as necessary, being sure to place a semicolon (;) between each field/sort pair.
    There must be NO SPACES. Finally, call a Refresh() on the grid. The downside to this code, is that it does not update the sorting icon on the columns. There's a call being made somewhere, and I think it has to do with analyzing the keypress+click event, that updates the image... whereas my code does not follow that code path.

    UPDATE:  You may have noticed that the code above references a mechanism for changing the sorting of the currently viewed CRM Grid from the main CRM window, but makes no mention of where to put the code.  This is because I have not researched, or located, a way to load custom Javascript into the main CRM window.  This code is proof-of-concept.
  • 相关阅读:
    zookeeper C API
    《accelerated c++》第九章---设计类
    redis memcache 比较
    redis 学习记录
    php memcache 使用学习
    php新手需要注意的高效率编程
    linux常用命令
    curl和file_get_contents 区别以及各自的优劣
    php序列化问题
    socket编程 123
  • 原文地址:https://www.cnblogs.com/janmson/p/1616073.html
Copyright © 2011-2022 走看看