英文:
Can i use Double type in PlutoGrid?
问题
我正在尝试开发一个使用PlutoGrid包的Flutter应用程序。
我需要在列中输入Double值,列的类型是PlutoColumnType.number()。但是PlutoGrid不允许输入浮点值。
是否需要进行任何配置以处理浮点数?
英文:
i'm trying to develop an flutter application with PlutoGrid packegae.
I need to enter Double values in columns that type is PlutoColumnType.number(). but the PlutoGrid don't let to enter float value.
Is there any configuration needed to work with float numbers?
答案1
得分: 1
数字值的格式可通过以下方式配置格式参数:
PlutoColumn(
title: 'weight',
field: 'weight',
type: PlutoColumnType.number(format: "###.###"),
enableEditingMode: true,
width: 100,
),
它使用户能够输入像 545.330 这样的值。
英文:
The format of number value is configurable with format parameter as below:
PlutoColumn(
title: 'weight',
field: 'weight',
type: PlutoColumnType.number(format: "###.###"),
enableEditingMode: true,
width: 100),
it enable user to input the values like 545.330
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论