[GB.WEB.FORM]
* BUG: WebControl.Name is now writable, so that the Group virtual property can be used in the IDE. git-svn-id: svn://localhost/gambas/trunk@7948 867c0c6c-44f3-4631-809d-bfa615b0a4ec
This commit is contained in:
parent
c9085d0e27
commit
5b3ea07d1d
@ -494,10 +494,10 @@ i
|
||||
|
||||
'Return the server control identifier.
|
||||
Name
|
||||
r
|
||||
p
|
||||
s
|
||||
|
||||
'Return the name of the control, used as an identifier on the client side.
|
||||
'Return or set the name of the control, used as an identifier on the client side.
|
||||
Tag
|
||||
p
|
||||
v
|
||||
|
@ -17,8 +17,8 @@ Event Dialog(Dialog As WebForm, Result As Variant)
|
||||
'' Return the server control identifier.
|
||||
Property Read Id As Integer
|
||||
|
||||
'' Return the name of the control, used as an identifier on the client side.
|
||||
Property Read Name As String
|
||||
'' Return or set the name of the control, used as an identifier on the client side.
|
||||
Property Name As String
|
||||
|
||||
'' Returns or sets the control tag.
|
||||
''
|
||||
@ -884,3 +884,9 @@ Public Sub _GetImageLink(sImage As String) As String
|
||||
|
||||
End
|
||||
|
||||
|
||||
Private Sub Name_Write(Value As String)
|
||||
|
||||
SetName(Value)
|
||||
|
||||
End
|
||||
|
Loading…
x
Reference in New Issue
Block a user