
UI设计
文章平均质量分 87
besley
十年以上企业信息系统架构设计 SaaS软件架构设计和云计算平台研发团队管理经验 提供信息系统 WEB技术 工作流系统 研发团队管理和项目管理等咨询服务
展开
-
Web Application UI(一):Web List Component: Beyond Simple HTML Table
Web List Component: Beyond Simple HTML TableToday, I am going to share the list component we use in our ERP applications. Web applications UI is a very important topic for web developers. UI转载 2012-11-26 14:58:16 · 1121 阅读 · 0 评论 -
Web Application UI(二):Web Tab Component: Mapping Database Tables Into UI Tabs
Web Tab Component: Mapping Database Tables Into UI TabsIn this second installment of UI posts, I will show the “Tab Component” of our UI library. Tab components are very important part of ri转载 2012-11-26 15:24:21 · 712 阅读 · 0 评论 -
Web Application UI(三):Web Application Input Form: Design Guidelines
Web Application Input Form: Design GuidelinesBefore designing our UI components, we investigated many examples. We researched the samples of many UI design books for a better input form desi转载 2012-11-26 15:25:21 · 847 阅读 · 0 评论 -
Web Application UI(四):Web-based Master-Detail Grid Form Design
Web-based Master-Detail Grid Form DesignMaster-detail forms are a special kind of forms that join some tables into one page view. In this way, it is possible to see and edit some related rec转载 2012-11-26 15:32:03 · 1514 阅读 · 0 评论 -
SlickGrid 插件开发(2):单元格合并功能实现
在SlickGrid官方示例中,给出了同一行单元格合并的示例,主要是使用了colspan的方法,但是对于同一列的不同行的单元格合并,却没有好的实现方法;然而这个功能一般在做数据处理时,又是必须需要的,经过对slickgrid的dataview的功能分析,用formatter加载渲染的方式实现了同一列单元格合并的功能插件,具体使用介绍如下:1) 列定义引用formatter添加了Ve原创 2013-06-22 11:42:29 · 2904 阅读 · 2 评论 -
SlickGrid 插件开发(4) :页脚合计功能实现
前言:在数据处理的Grid控件中,对某一列的数值需要求和统计;业务人员或者财务人员对数据求和比较看重,在SlickGrid的功能实现中,页脚统计作为插件技术来实现。特意对实现过程做以总结说明:1. 初始化方法 function init() { grid.onScroll.subscribe(function (e, args) {原创 2013-08-13 19:16:18 · 2411 阅读 · 0 评论