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.
  • 相关阅读:
    NOIP模拟测试7
    BigInt类
    bzoj 2733 [HNOI2012]永无乡 并查集+平衡树
    bzoj 2752 [HAOI2012]高速公路(road) 线段树
    bzoj 1584 Cleaning Up 打扫卫生 dp
    201709 半集训
    [SHOI2014]概率充电器 dp
    NOIP2016 天天爱跑步
    [HNOI2011] 数学作业
    [Poi2012]Festival
  • 原文地址:https://www.cnblogs.com/janmson/p/1616073.html
Copyright © 2011-2022 走看看