在PlutoGrid中可以使用Double类型吗?

huangapple go评论63阅读模式
英文:

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

huangapple
  • 本文由 发表于 2023年6月11日 23:59:34
  • 转载请务必保留本文链接:https://go.coder-hub.com/76451310.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定