public void setAllColsFormat(OAPageContext paramOAPageContext, OAWebBean paramOAWebBean)
{
OATableBean localOATableBean = (OATableBean)paramOAWebBean.findChildRecursive("BidsTable");
localOATableBean.prepareForRendering(paramOAPageContext);
setColumnFormat(paramOAPageContext, paramOAWebBean, "BidsTable", "Bid", "textFormat");
setColumnFormat(paramOAPageContext, paramOAWebBean, "BidsTable", "BidTotalBidCurrency", "numberFormat");
setColumnFormat(paramOAPageContext, paramOAWebBean, "BidsTable", "PartialQuoteSw", "numberFormat");
setColumnFormat(paramOAPageContext, paramOAWebBean, "BidsTable", "AwardTotal", "numberFormat");
setColumnFormat(paramOAPageContext, paramOAWebBean, "BidsTable", "TotalAgreementAmt", "numberFormat");
setColumnFormat(paramOAPageContext, paramOAWebBean, "BidsTable", "TotalAgreementAmtAucCurr", "numberFormat");
setColumnFormat(paramOAPageContext, paramOAWebBean, "BidsTable", "Score", "numberFormat");
setColumnFormat(paramOAPageContext, paramOAWebBean, "BidsTable", "Shortlist", "iconButtonFormat");
} public void setColumnFormat(OAPageContext paramOAPageContext, OAWebBean paramOAWebBean, String paramString1, String paramString2, String paramString3)
{
OATableBean localOATableBean = (OATableBean)paramOAWebBean.findChildRecursive(paramString1);
DataObjectList localDataObjectList = localOATableBean.getColumnFormats();
if (localDataObjectList != null) {
DictionaryData localDictionaryData = (DictionaryData)localDataObjectList.getItem(paramOAPageContext.findChildIndex(localOATableBean, paramString2));
localDictionaryData.put("columnDataFormat", paramString3);
}
}

OAF 设置右对齐的更多相关文章

  1. Word论文写作如何实现公式居中、编号右对齐

    第一步:插入表格 在公式所在行居中插入一行三列的表格,具体操作为: a.设置行居中,快捷键Ctrl+E: b.插入->表格->3×1的表格: 2 第二步:修改表格属性 新插入的表格三列等宽 ...

  2. Bootstrap3基础 text-right/left/center 设置标题右对齐、左对齐、居中

      内容 参数   OS   Windows 10 x64   browser   Firefox 65.0.2   framework     Bootstrap 3.3.7   editor    ...

  3. a标签设置水平右对齐

      1.情景展示 如上图所示,这其实是一个a标签,如何让它右对齐呢? 2.解决方案 第一步:将行内标签转化成块级元素,即display:block: 第二步:文字右对齐,即text-align:rig ...

  4. 解决LinearLayout中控件不能居右对齐

    转载自:http://lgb168.blog.163.com/blog/static/49674438201172492935235/ 2011-08-24 21:35:25|  分类: Androi ...

  5. 解决statusStrip控件上的项目不能靠右对齐的问题

    在c#中用到了状态栏控件StatusStrip,但当我想把StatusStrip上某个StatusLabel靠右对齐时出了问题. 按照MSDN中的办法,是设置ToolStripStatusLabel的 ...

  6. Telerik 控件事例(鼠标拖动行,拖动列,设置行对齐,行宽,是否显示)

    People.cs using System;using System.Collections.Generic;using System.Data;using System.Linq;using Sy ...

  7. [转]解决LinearLayout中控件不能居右对齐

    在LinearLayout布局时使用右对齐(android:layout_gravity="right")控件对齐方式不生效,需要设置 android:layout_weight= ...

  8. 用C++编一程序,先输出一行sun mon tue wed thu fri fri,接着使用右对齐打印出日期,像日历那样

    用C++编一程序,先输出一行sun mon tue wed thu fri fri,接着使用右对齐打印出日期,像日历那样 先输出一行sun mon tue wed thu fri fri,再提醒用户输 ...

  9. UICollectionView左对齐流水布局、右对齐流水布局

    在平时使用的app中会经常碰到一些规格选择,筛选,标签等页面,这些页面的布局展示通常是左对齐流水布局.实现类似这样的左对齐流水布局有多种方式,如果选项少的话可以直接用UIButton实现.现在我们有一 ...

随机推荐

  1. php中函数preg_match或preg_match_all 第三个参数$match的解释

    理解自:http://www.cnblogs.com/vicenteforever/articles/1623137.html php手册中是这样解释的 matches 如果提供了参数matches, ...

  2. webrtc--stun-turn

    .WebRTC后台服务: 通话的房间服务器(Room Server) 房间服务器是用来创建和管理通话会话的状态维护,是双方通话还是多方通话,加入与离开房间等等,我们暂时沿用Google部署在GAE平台 ...

  3. python pip源配置

    一.Linux版本: linux的文件存放在:~/.pip/pip.conf 二.windows版本: 在用户文件夹下创建pip目录,并在pip目录下创建pip.ini文件(%HOME%\pip\pi ...

  4. 前端 html span标签

    <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8&quo ...

  5. 接口测试之接口api文档的重要性

    接口文档的特点 接口文档,顾名思义就是对接口说明的文档.好的接口文档包含了对接口URL,参数以及输出内容的说明,我们参照接口文档就能编写出一个个的测试用例.而且接口文档详细的话,测试用例编写简单,不会 ...

  6. cocos代码研究(25)Widget子类PageView学习笔记

    基础理论 ListView控件是一个显示滚动项目列表的视图组. 列表项是通过使用addChild或insertDefaultItem插入到列表中的,继承自ScrollView. 代码实践 static ...

  7. VS2010/MFC编程入门之前言

    鸡啄米的C++编程入门系列给大家讲了C++的编程入门知识,大家对C++语言在语法和设计思想上应该有了一定的了解了.但是教程中讲的例子只是一个个简单的例程,并没有可视化窗口.鸡啄米在这套VS2010/M ...

  8. Codeforces Round #526 (Div. 2) Solution

    A. The Fair Nut and Elevator Solved. 签. #include <bits/stdc++.h> using namespace std; #define ...

  9. uva11020 set

    有n个人,每个人有两个属性x,y.如果对于一个人P(x,y) 不存在另外一个人(x',y') 使得x'<x,y'<=y 或者 x'<=x,y'<y 我们说p是有优势的,每次给出 ...

  10. Conductor

    https://netflix.github.io/conductor/ High Level Architecture