Tuesday 29 August 2017

Siebel Open UI Enhancement : Fixing Text Area using jQuery

Hello All,

In this post i will provide some alternate solution to text area type fields which in Open UI have elastic control property.
In HI mode there used to be an icon on Text Area fields and on click of the icon a new popup opened and we could write and read the text easily which has been replaced by elastic control in open UI.

here, we are calling a jQuery plugin to dispaly the content of text area in a popup.

also, the issue can also be fixed without using 3rd party jquery plugin but that solution is restrictive, you can refer the link http://www.siebelfoundations.com/2015/09/fixing-text-area-issue-in-siebel-using.html

Features 

  • Content of Text Area field displayed in Separate window popup
  • UI is Blocked till we explicitly close the popup
  • We can call the popup in multiple events like mouse hover, Click , Double click
  • We are using lobibox plugin from https://lobianijs.com/site/lobibox


Working demo is as shown below


















Sample Code

$('[aria-label="SR Description"]').click(function(){
Description = pm.ExecuteMethod( "GetFieldValue", cntrl );
Lobibox.window({title: 'Description of Field',
content: Description});
});
here, Lobibox.window({title: 'Description of Field', content: Description}); is calling the popup with title and value of text are as content

Sample Video 




you can email me for the exact PR file. Your comments are suggestion are most welcome.


7 comments:

  1. Please email PR file at rlaxma007@gmail.com

    ReplyDelete
  2. TextAloud3 is a text to speech program is made particularly for Windows OS. text to speech online

    ReplyDelete
  3. Kindle 2 Reader, eBook Reader is now available in the UK and Europe. Kindle 2 reader is a new improved version of the already excellent Kindle Reader, which is a dedicated wireless reading devicetext to audio reader

    ReplyDelete
  4. Speaking Notepad is a convenient program with the powerful text to speech abilities. This software can without much of a stretch undercover TXT, RTF, DOC, HTML and PDF document designs into WAV, MP3, WMA. notevibes

    ReplyDelete
  5. That is really nice to hear. thank you for the update and good luck. kitchenfaucetguides

    ReplyDelete
  6. Thanks for sharing nice information with us. i like your post and all you share with us is uptodate and quite informative, i would like to bookmark the page so i can come here again to read you, as you have done a wonderful job. click here

    ReplyDelete
  7. Your blog has chock-a-block of useful information. I liked your blog's content as well as its look. In my opinion, this is a perfect blog in all aspects. text to speech

    ReplyDelete

Siebel GoTo View - Handling Realtime cases

 Hello All,  We all must have used GoTo view functionality of siebel to navigate to a particular view from current view. What if the require...