Hope you guys like my last post, exploring further I got more interesting feature we can have in our Siebel List Applets with a single line of code only. For all new buddies, let me explain here that with Siebel OpenUI upgrade we have a lot of jQuery plugins used as vanilla files in Siebel. JQGrid is one of them…
Category: Siebel Open UI
Siebel OpenUI: Hide column in List Applet using JQGRID methods
This post is related to my last post. Requirement: Hide a column permanently in a List Applet which is mandatory to expose on Applet. Possible Solutions: Check Show in List property in applet list control. By checking this, column will be not be visible but available in Column Displayed option. Check Hidden property in applet list control. Using this, control…
Siebel OpenUI: Hiding a Column in List Applet
It seems to be pretty simple and may be stupid requirement but its a possiblity that you need to expose some Field on applet web layout and in same time you don’t want it to be visible. Well in OpenUI enhancements, we can access only those fields in PM/PR which are mapped in web layout of applet or you can…
How to use LinkedIn API to get its relevant data ??
Up to my last post, we have created our app on LinkedIn and able to authorize it. Now, time to hit APIs and get data. In this post, we will try to understand about LinkedIn PeopleSearch API. This is how it looks like… IN.API.PeopleSearch() .params({“first-name”:”Barack”}) .fields([“firstName”,”headline”]) .result(function(result) { alert JSON.stringify(result)) } fields() (optional) – Array {String}, Argument…
Authorize your connection with LinkedIn using your App
This post is in continuation of my last Siebel Open UI example to integrate LinkedIn in Siebel Open UI, please refer this first. Lets start with actual PM-PR coding, till now we have created our app on LinkedIn to connect with. Now from Presentation Model we need to call AUTH API of LinkedIn to authorize our access by using our…
Siebel Open UI: How to integrate LinkedIn in Siebel ??
One of my blog’s reader asked me, How to integrate Facebook into Siebel ?? I thought what kind of requirement it could be, then I came up with a scenario where we can innovate, and dazzle our Siebel Clients…. But I have never implemented any Social integration using EAI concepts, but with the help of Siebel Open UI we gonna implement LinkedIN…
How to integrate Bootstrap in Siebel ?
I know you guys are eagerly waiting for this post, finally its here !!! Again this post talks only about Siebel Open UI (8.1.11.x) . Integrating Bootstrap is same as of integrating any jQuery plugin in siebel. So, if you have already done such integration, then it will be lot easier for you. In my last post, we disscused about files…
How Bootstrap, a big help for Siebel ?
Now, its a big question in our mind. Bootstrap is a framework dedicated for website development then how it can help our boring gaint Siebel. Well it will help to give an interesting and elegant UI to our Siebel with less code and minimum efforts. With below points, I will try to explain its help… First let me clear one…
Why Bootstrap ?
There can be multiple reasons to use this framework. Lets try to sort it out one by one: Bootstrap is the combination of CSS, jQuery and html. It provides multiple inbuild features which we can use directly in our code. Visit this link It gives its own css for all possible html widgets to make it simple and of single…
Siebel Open UI: How to integrate Bootstrap in Siebel ??
Well its really amazing to know that we can use all latest stuffs in market to modernize our traditional Siebel UI…thanks a ton to Open UI.. 🙂 🙂 Being a Siebel developer, I can never expect of you guys listen this keyword :: Bootstrap. But if you have a UI friend else you are working on Open UI, must listen…