Skip to main content

Featured

[XrmToolBox] Use FetchXML Builder

FetchXML Installation : XrmToolBox 1. Open XrmToolBox And Find FetchXML Builder 2. Start FetchXML Builder 3. Click the fetch from node 사용은 Top 또는 Paging 둘 중 하나만 가능 Paging size : 한 페이지에 보여줄 레코드 개수 Dstinct : 페이지에 보여지는 레코드 중복 제거 No-lock : 테이블 lock 거는 것을 풀어줌 (조회 할 때 퍼블리시되지 않은 값도 들어올 수 있음) Page : 페이지 (미입력시 1 페이지) 4. Click entity form node 조회할 Entity Name을 선택 후, Select Attributes 클릭 조회할 Entity의 Attirbute를 선택하여 확인 link-entity 클릭 Relationship을 클릭하여 링크할 관계 선택 후 결과

XRM Section setVisible not work issue

i found some issue while customization crm site using xrm. it is doesn't work section visible to false.

my code works if some optionset value set 100000001, section will hide and some field also hide. The problem was that there were fields within hidden sections.

section(hide) -> field in section(hide) -- don't work
field in section(hide) -> section(hide) -- work

i just add condition on field hide code.

1
2
if(Xrm.Page.getControl("new_l_loaner").getParent().getVisible())
    Xrm.Page.getControl("new_l_loaner").setVisible(false);
cs
than my process doesn't changed. field hide after section hide.

Comments

Popular Posts