Opened 16 years ago

Closed 16 years ago

#1834 closed New Feature (invalid)

FCKeditor ASP -

Reported by: BlazTer Owned by:
Priority: Normal Milestone:
Component: Server : ASP Version:
Keywords: HasPatch Cc:

Description

fckeditor line 56,57,58 Old:

Public Sub Create( instanceName )
	Response.Write CreateHtml( instanceName )
End Sub

New:

Public Function Create( instanceName )
	Create = CreateHtml( instanceName )
End Function

When creating the FCKeditor:

strMyVariable = oFCKeditor.Create("FCKeditor1")

Now I can do watever i want with the variable. And have more controle of the position and stuff. In this way, the website developer can control the complete editor.

You can think about this feature form template's and stuff.

Greetings, Jeffrey Grune (Keep up the good work :D)

Change History (2)

comment:1 Changed 16 years ago by Wojciech Olchawa

Keywords: HasPatch added; Sub Create to Function Create removed

comment:2 Changed 16 years ago by Alfonso Martínez de Lizarrondo

Resolution: invalid
Status: newclosed

Use

strMyVariable = oFCKeditor.CreateHtml("FCKeditor1")
Note: See TracTickets for help on using tickets.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy