使用django表单创建弹出窗口

时间:2017-07-25 12:13:38

标签: django

创建django表单弹出窗口的最佳方法是什么。我在线搜索但无法提供帮助。请帮忙。

1 个答案:

答案 0 :(得分:0)

有很多选项......最简单的当然是jQuery: https://jqueryui.com/dialog/

Function GetNumberDecimalPlaces(theCell As Range) As Integer

Dim periodPlace as integer, stringLength as integer

periodPlace = InStr(1, theCell.Text, ".")

If periodPlace = 0 Then
    GetNumberDecimalPlaces = 0
Else
    stringLength = Len(theCell.Text)

    GetNumberDecimalPlaces = stringLength - periodPlace
End If

End Function