Siebel Open UI, Tools, Scripting and EAI (MOSC)

MOSC Banner

I have a requirement to show a confirmation with ok and cancel button when user clicks a check box o

edited Nov 30, 2018 12:43AM in Siebel Open UI, Tools, Scripting and EAI (MOSC) 2 commentsAnswered

I have this code on the PM : -

//run the code only if class does not exist

if(typeof(SiebelAppFacade.QuoteFormAppletPM) === "undefined")

{

  SiebelJS.Namespace("SiebelAppFacade.QuoteFormAppletPM"); // Add class to the name space

  define("siebel/custom/QuoteFormAppletPM", ["siebel/pmodel"], function(){

  //Class Constructor function

  SiebelAppFacade.QuoteFormAppletPM = ( function()

  {

  function QuoteFormAppletPM(p) //call super class constructor

  {

  SiebelAppFacade.QuoteFormAppletPM.superclass.constructor.call(this,p);

  }

  //extend the standerd framework (Usually Presentation Model or Physical Renderer)

  SiebelJS.Extend(QuoteFormAppletPM,SiebelAppFacade.PresentationModel);

  //init function for Presentation Model

  QuoteFormAppletPM.prototype.Init = function()

  {

  SiebelAppFacade.QuoteFormAppletPM.superclass.Init.call(this); //Call super class Init function first

  this.AddMethod("InvokeMethod",MarkedForDelete,{sequence:true, scope:this});

Howdy, Stranger!

Log In

To view full details, sign in to My Oracle Support Community.

Register

Don't have a My Oracle Support Community account? Click here to get started.

Category Leaderboard

Top contributors this month

New to My Oracle Support Community? Visit our Welcome Center

MOSC Help Center