Quantcast
Channel: siebel open ui – Siebel Unleashed
Viewing all articles
Browse latest Browse all 32

MVG Add All Button -Siebel Open UI

$
0
0

This article has been shared by Tirumalesha Dadige a reader of SiebelUnleashed.


Requirement:
You need to show Add All button on the MVG Applet in OpenUI.

Problem:
This feature was removed in OpenUI.

Solution:

Button can be added in the OpenUI by changing the SWT file and the same functionality will work.

  1. Go to WEBTEMPL/OUIWEBTEMPL in Siebsrvr folder.
  2. Open the CCPopupListMvg.swt and Add the following line after –> <div class=”siebui-popup-btm siebui-mvg-btn-modifier”>
    <swe:control id=”3002″><!– Add All, 3002 –><span class=”siebui-popup-button”><swe:this property=”FormattedHtml” hintMapType=”Control” hintText=”Other”/></span></swe:control>
    So this line is added to show the Item Identifier 3002 which is for Add All button.
  3. So now your div tag should look like below:
    <div class=”siebui-popup-btm siebui-mvg-btn-modifier”>
    <swe:control id=”3001″><!– Add, 3001 –><span class=”siebui-popup-button”><swe:this property=”FormattedHtml” hintMapType=”Control” hintText=”Other”/></span></swe:control>
    <swe:control id=”3002″><!– Add All, 3002 –><span class=”siebui-popup-button”><swe:this property=”FormattedHtml” hintMapType=”Control” hintText=”Other”/></span></swe:control>
    <swe:control id=”3003″><!– Delete,3003 –><span class=”siebui-popup-button”><swe:this property=”FormattedHtml” hintMapType=”Control” hintText=”Other”/></span></swe:control>
    <swe:control id=”3004″><!– Delete All, 3004 –><span class=”siebui-popup-button”><swe:this property=”FormattedHtml” hintMapType=”Control” hintText=”Other”/></span></swe:control>
    <swe:include file=”CCButtons_Popup_oui.swt”/>
    </div>
  4. Save the Web Template file and fire up your dedicated client (restart server in case of web client).

You should see Add All button in the MVG Popup now.


Please rate this post and show appreciation to Tirumalesha for sharing this cool information with us!


Viewing all articles
Browse latest Browse all 32

Trending Articles