jqxGrid 绑定格式化

var cellsrenderer = function(row, columnfield, value, defaulthtml, columnproperties) {
    if ((row == 1) || (row == 3) || (row == 5)) {
        var formattedValue = value;
        if (columnproperties.cellsformat == "yyyy-MM-dd" || columnproperties.columntype == 'datetimeinput') {
            formattedValue = $.jqx.dataFormat.formatdate(formattedValue, columnproperties.cellsformat);
        }
        else if (columnproperties.cellsformat != "") {
            formattedValue = $.jqx.dataFormat.formatnumber(formattedValue, columnproperties.cellsformat);
        }
        return '<div style="height: 100%; background-color: #BBBBBB;"><span style="float: ' + columnproperties.cellsalign + '; position: relative; margin: 4px;">' + formattedValue + '</span></div>';
    };
};
$("#jqxgrid").jqxGrid({
    autoheight: true,
    source: dataAdapter,
    editable: true,
    selectionmode: 'singlecell',
    columns: [
        {
        text: 'First Name',
        datafield: 'firstname',
        width: 90,
        cellbeginedit: beginedit,
        cellsrenderer: cellsrenderer},
    {
        text: 'Ship Date',
        datafield: 'date',
        width: 90,
        cellsalign: 'right',
        cellsformat: 'yyyy-MM-dd',
        cellbeginedit: beginedit,
        cellsrenderer: cellsrenderer,
        }]
});

时间: 2024-10-14 02:14:24

jqxGrid 绑定格式化的相关文章

格式化绑定的数据

原文:格式化绑定的数据 1.数据转换. WPF中,数据绑定有两种方式:字符串格式化和值转换器. 1.1).字符串格式化. 用StringFormat属性属性. 语法:StringFormat = "{}{0:格式字符串}" 其中第一个花括号{}是标识转义序列. <TextBox FontSize="20" Grid.Row="2" Grid.Column="1" Height="30" Text=&q

spring mvc自动日期格式化绑定

在springmvc中,我们会经常用到它的自动绑定参数,绑定日期时时常会报400的错误→Bad Request( 请求出错,由于语法格式有误,服务器无法理解此请求.不作修改,客户程序就无法重复此请求). 废话不多说,直接上代码, 解决方法有很多: 第一种:需要将DateFormatter注册到一个ConversionService中,最后再将ConversionService注册到Spring MVC中: <bean id="conversionService" class=&q

格式化输出IIS绑定格式和批量解析域名

sh name.sh yuming.txt yuming_bak.txt for name in `cat $1` do echo "www.$name||:80:www.$name,:80:$name||d:\wwwroot\www.$name" >> $2 done 注:$1是保存要修改的文件名,$2修改后保存的文件名 [[email protected]_client1 domain]# cat modify.sh #!/usr/bin/bash file_numbe

wpf绑定之格式化日期

只显示年月日: StringFormat='{}{0:yyyy/MM/dd}' 又或者: StringFormat='{}{0:yyyy年MM月dd日 dddd HH:mm:ss}',ConverterCulture=zh-CN

springMVC-数据的格式化

1.配置annotation-driven <mvc:annotation-driven ></mvc:annotation-driven> 2.在实体类上加上@NumberForma这样的注解 @NumberFormat(pattern="#,###,###.#") private Float price; @DateTimeFormat(pattern="yyyy-MM-dd") private Date productionDate;

SpringMVC框架下数据的增删改查,数据类型转换,数据格式化,数据校验,错误输入的消息回显

在eclipse中javaEE环境下: 这儿并没有连接数据库,而是将数据存放在map集合中: 将各种架包导入lib下... web.xml文件配置为 <?xml version="1.0" encoding="UTF-8"?> <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/

WPF多源绑定

将控件绑定到多个数据源,ListBox绑定到一个集合,其中每一项绑定到集合中对象的两个属性,并对绑定进行了格式化. <ListBox ItemsSource="{StaticResource MyData}" IsSynchronizedWithCurrentItem="True"> <ListBox.ItemTemplate> <DataTemplate> <TextBlock> <TextBlock.Text

Windows Store App JavaScript 开发:模板绑定

WinJS库模板提供了一种格式化显示多条数据的便捷方式,通过这种方式可以将模板与ListView或FlipView等控件结合使用以控制数据的显示格式.定义一个WinJS库模板的方法与定义WinJS库控件的方法相似:在页面中添加一个div元素,将div元素的data-win-control属性设置为WinJS.Binding.Template.定义WinJS库模板以后,需要在WinJS库模板内部添加控件以显示绑定的数据,WinJS库模板内部只能有一个根元素,当绑定多条数据时,需要在WinJS库模板

Kendo UI Grid 模型绑定

开篇 接触 Asp.net MVC 时间较长的童鞋可能都会了解过模型绑定(Model Binding),而且在一些做 Web 项目的公司或是Team面试中也经常会被问到.项目中有很多 Action 中都使用了自定义的模型绑定,但是业务逻辑太过复杂不适合做为例子与大家分享,而今天在做一个 Kendo UI 的功能时觉得可以用 Kendo UI 做为例子与大家分享与探讨一个典型的 Model Binding 的过程. 写的比较随性,欢迎大家讨论及拍砖! 背景介绍 Kendo UI: 它是一个非常出名