Notification Menu in Navigation Bar | Oracle APEX 20.1

แชร์
ฝัง
  • เผยแพร่เมื่อ 20 ก.ย. 2024
  • What you will learn in this video:
    1. How to Import Plug-ins your Application
    2. How to Use Plug-ins from Shared Components
    3. How to Create Dynamic Action
    What you will do:
    1. Download the Plug-In
    2. Import the Plug-In in apps Shared Components
    3. Create a Dynamic Action in Global Page
    Name : Notification
    True Action : Select the Plug-Ins
    SQL Source : Customize as you wish
    --=== SourceCode ====
    -- Create a Table and Insert Message
    CREATE TABLE mgmsg(
    xmsgid number NOT NULL,
    xsubject varchar2(100) ,
    xmsg varchar2(1000) ,
    xcatmsg varchar2(100) ,
    xto varchar2(500) ,
    icon_img varchar2(100)
    )
    --SQL Source code of Dynamic Action
    SELECT /* sets the icon of the list item (fa-exclamation-triangle) */
    nvl(icon_img,'fa-exclamation-triangle') AS NOTE_ICON,
    /* sets the color of the list icon */
    'rgb(192,0,15)' AS NOTE_ICON_COLOR,
    /* sets the title of the list item (html possible) */
    xsubject AS NOTE_HEADER,
    /* sets the text of the list item (html possible */
    --'My first Notification ' AS NOTE_TEXT,
    XMSG AS NOTE_TEXT,
    /* set the link when click on list item */
    'javascript:alert("Click on Notification Entry");void(0);' AS NOTE_LINK,
    /* sets the color of the left box shadow */
    'rgb(192,0,15)' AS NOTE_COLOR,
    /* Link or js that is executed when press accept link (if left or null not accept is shown */
    'javascript:alert("Accepted");void(0);' AS NOTE_ACCEPT,
    /* Link or js that is executed when press decline link (if left or null not decline is shown */
    'javascript:alert("Declined");void(0);' AS NOTE_DECLINE,
    /* When enable Browser Notifications in ConfigJSON then you can select which notifications should not be fire browser not. */
    0 AS NO_BROWSER_NOTIFICATION
    FROM
    MGMSG
    For More Videos,
    Please Subscribe our Channel:
    bit.ly/35mJxNL
    Facebook:
    Page : bit.ly/35p45oV
    Group :bit.ly/3db9xOE
    Download Notification Plugin:
    bit.ly/2T8uiTF
    Our Published Video Link :
    How to add Image Slider : • How to add Image Slide...
    Navigation Menu Search : • Oracle APEX Navigation...
    Custom and Dynamic Navigation Menu : • Oracle APEX Custom and...
    Customize Login Page Logo & Background : • Customize Login Page |...
    Dynamically Change Login Page Background Image: • Customize Login Page |...
    Oracle Apex 20.1 New Features : • Oracle Apex 20.1 New F...
    #OracleApex #OracleApexTutorials #pkzaman

ความคิดเห็น • 10

  • @nikoletinabursac9847
    @nikoletinabursac9847 4 ปีที่แล้ว +1

    Hello,
    I watched all your videos related to APEX, every part of what you do. The videos are of good quality and everything is nicely explained.

    • @OracleApexTutorial
      @OracleApexTutorial  4 ปีที่แล้ว +1

      Thanks.... I am not professional TH-camr but try to share my knowledge.

    • @nikoletinabursac9847
      @nikoletinabursac9847 4 ปีที่แล้ว

      @@OracleApexTutorial I think you have knowledge first and foremost. That is more important to me.

  • @MDNannu-fw5mn
    @MDNannu-fw5mn 4 ปีที่แล้ว +1

    Lots of thanks for your great job.

  • @kirankumar-vq1cy
    @kirankumar-vq1cy 2 ปีที่แล้ว

    Thank you for video,
    we are using Arabic application left to right. The notification bell also shows left. however the message pop up window shows right side.
    Please help me to move message pop up window to left side near to bell.

  • @arun7200
    @arun7200 4 ปีที่แล้ว

    Nice presentation, Can we perform a Action while Accepting / Declining the notification

  • @mdabdulrahim5841
    @mdabdulrahim5841 3 ปีที่แล้ว

    how to contact you if i will need any help from you?

  • @oracletube
    @oracletube 4 ปีที่แล้ว

    How enabled browser notification? when insert data in database