rajyraman / Levelup-for-Dynamics-CRM

Chrome, Edge Chromium and Firefox Extension for Dynamics CRM/365/Power Apps Power users
MIT License
194 stars 69 forks source link

Lock and Unlock Activity #52

Open Fyrearm opened 7 years ago

Fyrearm commented 7 years ago

Would love to see these two bookmarklets integrated into the tool.

Unlock: javascript: var form = $("iframe").filter(function () { return ($(this).css('visibility') == 'visible') })[0].contentWindow;form.Mscrm.CommandBarActions.activate(form.Xrm.Page.data.entity.getId(), form.Xrm.Page.data.entity.getEntityName());

Lock: javascript: var form = $("iframe").filter(function () { return ($(this).css('visibility') == 'visible') })[0].contentWindow;form.Mscrm.CommandBarActions.changeState("deactivate", form.Xrm.Page.data.entity.getId(), form.Xrm.Page.data.entity.getEntityName());

rajyraman commented 7 years ago

I have to make some changes to fix logical names that is broken in v9. I will look into this as well when I make that change.