在 Xojo WebApp 上,我创建了一个TextFieldClass
带有“必需为布尔值”的属性。
在网页上,我有一些TextFieldClass
对象。
我想做的很简单......我想self.ControlCount
在网页上做一个,并检查所有textFieldClass
具有“true”值的所需属性实际上是否有内容。
简单,对吧?…</p>
Dim i as integer
Dim c As textFieldClass
For i=0 To self.ControlCount
if self.ControlAtIndex(i) isa textFieldClass then
**c=self.ControlAtIndex(i) // i got an error… expected class textFieldClass, but got class webObject…**
End If
Next
如果我尝试:
Dim i as integer
Dim c As WebObject
For i=0 To self.ControlCount
if self.ControlAtIndex(i) isa textFieldClass then
c=self.ControlAtIndex(i)
**if c.required then // I got an error… Type "WebObject" has no member named "required"**
// do something here…
end if
End If
Next
谢谢你的帮助!