- 浏览: 245692 次
- 性别:
- 来自: 深圳
文章分类
- 全部博客 (151)
- JSP (18)
- Script (11)
- jsp數據庫操作 (4)
- Excel報表導出 (5)
- JAVA (13)
- 精品文章 (3)
- 网络知识 (1)
- XML (4)
- tomcat (4)
- WebService (2)
- Windchill (39)
- eclipse (1)
- 娱乐休闲 (4)
- 批處理 (7)
- 文件 (1)
- HTTP (3)
- HttpClient (4)
- BIOS (1)
- Socket (6)
- FTP (1)
- HTML (3)
- 人生哲理 (0)
- CSS (1)
- 极品软件 (5)
- 數據庫 (3)
- Mail (1)
- SWT Designer (1)
- 系統優化 (3)
- Ajax (3)
- df (0)
- aaa (0)
最新评论
-
magicyang918:
你上边写得是两种实现方式吗?
applet将服务器上文件下载到本机指定目录下 -
magicyang918:
哥哥,看的不是很明白,能不能说清楚点啊?
applet将服务器上文件下载到本机指定目录下 -
zzh03614:
写的很好啊,楼主,期待更多的内容更新
windchill_jsp_actions -
bspeng922:
没有图片啊……
Windchill 工作流的提示和技巧 -
talin2010:
!
jxl template 写excel
搜索显示能否显示客制化属性 |
搜索后显示是可以选择的,是否可以通过设置显示自定义的属性?
|
在Windchill9中可以通过在页面上自定义表格视图完成,但是在Windchill8中需要修改配置文件。
Here is the information to add a column to configuration files DCA: 1. For the normal search page, you will have to modify <windchill_home>/conf/dca/com/ptc/core/foundation/fc/Persistable.xml: 1.1 add you new column to the definition of “elementGroup.compositeColumns.object.columns”: <!-- SIMPLE SEARCH - results definition --> <Context type="%[:PERSISTABLE]" tablePrefId="compositeTable.default" tableUsageId="compositeTable.searchResults"> <ElementGroup id="elementGroup.compositeColumns.object.columns"> <Insert ref="elementGroup.compositeColumn.thumbnail" /> … <Insert ref=":elementGroup.compositeColumn.organization" /> <Insert ref="patterns:compositeColumn.template" context.property="property.yourProperty"> <Label resource="Your label" /> </Insert> </ElementGroup> 1.2 and to the “elementGroup.compositeColumns.object.columns.order” definition (used to define the order in which the columns will be displayed): <ElementGroup id="elementGroup.compositeColumns.object.columns.order" > <Option theme="order" param="labelArea.tablePattern.icon" /> <!--0--> <Option theme="order" param="hyperlink.object.name.info" /> <!--1--> … <Option theme="order" param="property.thePersistInfo.createStamp" /> <!--11--> <Option theme="order" param="property.yourProperty" /> <!--12--> </ElementGroup> 1.3. finally, create a new paragraph to define your “property.yourProperty” id (for instance, if this is a string attribute): <Context type="wt.fc.Persistable"> <Property id="property.yourProperty" sticky="%[context#sticky]"> <Extend ref=":property.string" /> <Need attribute="yourAttribute" /> <Label resource="Your Label" /> </Property> </Context> 2. For the Advanced Search page, you will need to perform the modification for each kind of object. I will give you an example for a subtype of WTPart, which has a soft attribute "md_attr0190". you will then have to modify <windchill_home>\conf\dca\com\ptc\windchill\enterprise\part\WTPart.xml: 2.1. Add your column to the definition of “elementGroup.compositeColumns.object.columns”: <Context type="%[WTPart]" tablePrefId="compositeTable.default" tableUsageId="compositeTable.searchResults"> <ElementGroup id="elementGroup.compositeColumns.object.columns"> <Insert ref=":elementGroup.compositeColumns.object.columns.cumulative|%[WTPart]" /> <Insert ref=":elementGroup.oemPreference.PropertyRef" context.UIComponent="table" if="%[ifInstalled#all#:setSupplierManagement]==true"/> <Insert ref=":elementGroup.compositeColumn.seeActions" /> <!--Added --> <CompositeColumn show=":property.yourProperty"> <Label resource="Your label"/> </CompositeColumn> </ElementGroup> </Context> 2.2. If the element “property.yourProperty” dosen’t already exist in the configuration files, you will need to define it: <Context type="%[WTPart]"> <Property id="property.yourProperty"> <Extend ref="core:property.string" /> <Need attribute="yourAttribute" /> <label resource="Your Label" /> </Property> </Context> 3. The value in the Need Attribute tag is the logical Identify defined in the attribute manager for the IBAs (I change "yourAttribute" to "md_attr0190"). The columns are added reflected in the preferences of the table. For the IBAs defined WTPart or sub types can be displayed in the natural search (which runs on Persistable), we must add entries in the file <Windchill\home> \codebase\com\ ptc\windchill\enterprise\search\server\SearchableAttributes.properties, such as: yourAttribute=WCTYPE|wt.fc.Persistable~IBA|yourAttribute Finally, you must restart Tomcat and the method servers. |
发表评论
-
Windchill介绍
2011-04-05 23:31 2432Pro/INTRALINK工作组数据管理解决方案利用了已在生产 ... -
MethodServer连接数据库失败解决办法一
2009-08-04 22:39 2856Windchill启动服务时失败,MethodServer报如 ... -
文件格式類型轉換
2008-06-27 10:04 1324文件格式類型轉換Example:1. txt-->> ... -
关于“策略管理器”中对应的对象
2008-06-20 14:40 1497WTProductInstance2 成品实例WTProduc ... -
启动两个MethodServer
2008-06-17 00:04 1760安装指南p165(17-4)上说: xconfmanager ... -
IBA属性存取问题
2008-06-17 00:01 24371)建立IBA属性后,该实例数据库的结构也自动更新么?是否包含 ... -
Windchill怎么进行自动备份
2008-06-16 23:58 20071. back.bat文件內容(備 ... -
控制AutoCAD图纸检入时是否自动创建零件
2008-06-16 23:53 1402在/ptc/Windchill/codebase/wmauto ... -
Windchill_8.0系统自动启动
2008-06-16 23:39 1582方案一、 1、创建一个批处理文件wtStart.bat(名称可 ... -
逐层取得一产品结构下的部件名/编号/层次号
2008-06-16 23:35 1578例如有一产品结构 A下有两个子部件A1和A2,A1下面有A11 ... -
Windchill 工作流的提示和技巧
2008-06-16 00:34 4926Windchill 工作流的提示和技巧 以下提示和技巧汇集了 ... -
生命周期客制化问题
2008-06-16 00:31 1884再次使用enumCustomize进入检查你新添加的状态是否存 ... -
通过对象ID获取指定的软属性
2008-06-16 00:24 1988根据对象ID可获得对象 ... -
只导出产品结构
2008-06-16 00:12 1361不包括文档,只要部件和结构。 默认的导出好像把部件关联的文档也 ... -
EPMDocument文档信息的获取
2008-06-16 00:08 1955You call the nextElement() thre ... -
获取工作流中的核准者这一角色
2008-06-16 00:01 1372获取产品工作流中的进程角色—核准者,假如一个工作流中核准者的参 ... -
BOM结构的更改标记不显示问题
2008-06-15 23:59 1384在PDM与K3的集成中,当整个BOM结构发布到K3上,BOM结 ... -
Windchill 8 安装过程 简述
2008-06-15 23:33 2273以下无特殊说明,都是选择典型 1-在www.java.com ... -
wt.load.LoadFromFile导入权限规则
2008-06-15 22:34 1671<?xml version="1.0" ... -
关于.conf和.properties的问题
2008-06-15 22:25 1222参考site.xconf文件中本来的内容进行定义。 如:< ...
相关推荐
同时,客制化操作应严格按照文档指示进行,避免引起系统不稳定或功能缺失。 综上所述,Android 12.0的Launcher3提供了丰富的客制化选项,让开发者能够深度定制启动器,以满足各种用户需求,同时保持系统的稳定性和...
### Windchill客制化培训-学生练习手册 #### 概述 《Windchill客制化培训-学生练习手册》是一本专为学习Windchill软件客制化技术的学生们设计的教材。该手册主要介绍了如何根据特定需求对Windchill用户界面进行...
分类搜索 带有对结果进行分类的建议的搜索栏。...客制化 在 search.js 的 _search 函数中处理您自己的数据源。 在 search.js 的 _select 函数中处理您自己的单击/选择事件。 随意更改 css 以获得不同的外观。
客制化 您可以在很大程度上自定义SearchWP Live Ajax Search的实现,包括许多开发人员定义的配置。 结果基于模板加载器,允许SearchWP Live Ajax Search远离您,让您像编写其他任何WordPress主题文件一样编写结果...
- **菜单客制化**:根据用户需求客制化菜单,提高系统易用性。 - **右键菜单客制化**:增加右键菜单选项,提供便捷的操作入口。 - **工具栏客制化**:自定义工具栏按钮,快速访问常用功能。 - **日期控件调用**:...
将先进的课堂 PC监视、实时演示和加注工具同创新型客制化测验套件、互联网和应用程序控制、实时音频监听、自动化课程设计、打印机管理、即时通讯控制、内容监控及桌面安全等功能结合起来,可以完全应对和满足当今...
- **可配置性:** 根据企业标准和业务流程,轻松实现客制化。 - **搜索能力:** 支持从Microsoft Word、Excel等环境中搜索PLM系统内的文件。 - **浏览与编辑:** 用户可以直接从Office环境中选择、浏览和编辑PLM系统中...
- **客制化右键菜单**:增加右键菜单中的个性化选项。 - **客制化工具栏**:自定义工具栏以提高工作效率。 - **调用EBS日期控件**:在表单中使用标准日期选择器。 - **查询数据时限定语言环境**:支持多语言环境下的...
- **客制化右键菜单**:扩展右键菜单功能。 - **客制化工具栏**:个性化工具栏布局。 - **调用EBS日期控件**:使用EBS内置的日期选择器。 - **查询数据时限定语言环境**:设置查询的语言环境。 - **实现历史记录查询...
8. **取不重复的记录行** - **方法**: 使用DISTINCT关键字去除重复记录。 - **应用场景**: 数据清洗。 9. **查询具有相同薪水的职工** - **方法**: 使用GROUP BY和HAVING子句筛选相同薪水的员工。 - **应用场景...