New UI layout
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

home.js 800B

12345678910111213141516171819202122
  1. import { getCookie } from "./cookiehelper.js";
  2. import { initListIndex } from "./list.index.js";
  3. initListIndex();
  4. $('#detailBtn').click(function () {
  5. $('.bdy-ul').addClass('d-none');
  6. // Unibase.Themes.Compact.Components.Notification.Instance().loadReminderDetails(105013010001972,105010260000090,'Details','null',6,0,null)
  7. const cookie = getCookie('_idty');
  8. if (cookie) {
  9. const {
  10. unibaseId,
  11. tenantId,
  12. userId
  13. } = JSON.parse(cookie);
  14. debugger;
  15. $('#detailIframe').html(
  16. `<iframe width="100%" style="min-height:746px"  name="srcframe" id="srcframe" class="srcframe" src="http://localhost:1188/#/${unibaseId}/${tenantId}/${userId}/106457720000011/100010270000325/loadDetail"></iframe>`
  17. );
  18. }
  19. });