当然,可以设置 new_xxxx 字段的OnChange 事件,这样就可以通过OnChange事件做更多的事情。 调用时需写入以下代码:fireOnChange 以激活字段OnChange事件。 ...
分类:
其他好文 时间:
2018-11-01 11:55:07
阅读次数:
161
思路是 : 1 创建一个字段“new_xxx”。 2 注册字段 OnChange 事件。 3 OnChange 事件 刷新 IFrame_B子页面。 4 IFrame_A 修改 父页面 “new_xxx”字段 5 “new_xxx”字段 触发 OnChange 事件刷新 IFrame_B子页面。 ...
分类:
其他好文 时间:
2018-11-01 11:39:30
阅读次数:
120
说白了就是一个IFrame页面,执行另一IFrame页面的函数。 var RefreshSelf = function () { App.gridpanel.store.load(); } ...
分类:
Web程序 时间:
2018-11-01 11:32:45
阅读次数:
148
CRM代码: var iframe = Xrm.Page.getControl("IFRAME_xxx").getObject(); iframe.contentWindow.RefreshSelf(); IFrame 代码: var RefreshSelf = function() { // do... ...
分类:
其他好文 时间:
2018-11-01 11:29:39
阅读次数:
176
CRM的例子StepbySteptodebugICinboxworkflowWS14000164C4CCustomrecipientdeterminationinworkflowruledoneonAccountBO)AutomaticallysendanEmailnotificationtolinemanagerviaWorkflowinAccountapplication)HybrisHybr
分类:
其他好文 时间:
2018-10-26 20:38:19
阅读次数:
193
ServiceOrder的状态字段里的这些字段从哪里带出来的?我们可能会想当然的认为是从后台配的Statusprofile里带出来的。事实并非如此。这个transactiontype根本没有分配任何Statusprofile,但是仍然可以在UI上看到三个可选的状态值。Status状态字段里的值并不是我们想象的那样,完全来自systemstatusprofile和userstatusprofile,
分类:
其他好文 时间:
2018-10-26 16:30:16
阅读次数:
174
ABAP740的新语法:上图的代码相当于:DATA:ls_dataLIKELINEOFit_data.READTABLEit_dataINTOls_dataWITHKEYobject_ext=cl_crm_prodil_bo_names=>gc_prod_root.CALLMETHODadd_dataEXPORTINGir_child_object=ir_root_objectis_data
分类:
编程语言 时间:
2018-10-26 16:20:38
阅读次数:
224
随便找一个在CRMWebClientUI里会被频繁调用到的函数,在函数里创建一个隐式增强,打印当前的会话ID。不关闭浏览器,在浏览器里不断做操作,可以观察到不管做任何操作,每次断点出发后,打印出来的会话ID都相同。每次触发打印出的会话ID都相同:00015255FA163EE40FA21ED6A898F0FA67B01B77要获取更多Jerry的原创技术文章,请关注公众号"汪子熙&quo
分类:
Web程序 时间:
2018-10-26 16:19:14
阅读次数:
183
from django.db import models from django.contrib import auth from django.core.exceptions import PermissionDenied from django.contrib.auth.models impor... ...
分类:
其他好文 时间:
2018-10-25 11:12:03
阅读次数:
131