History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: IDEADEV-17261
Type: New Feature New Feature
Status: Resolved Resolved
Resolution: Fixed
Priority: Normal Normal
Assignee: Maxim Mossienko
Reporter: Johan Lund
Votes: 0
Watchers: 1
Operations

If you were logged in you would be able to see more operations.
IDEA: Development

Live template support for Bindows

Created: 09 May 07 18:58   Updated: 07 Jun 07 18:00
Component/s: JavaScript
Fix Version/s: Selena 7002

Original Estimate: Unknown Remaining Estimate: Unknown Time Spent: Unknown

Build: 6,913
Fixed in build: 6,989


 Description  « Hide
When creating live templates for Bindows;
It would be nice if I could access at least methodName() and className() funtions for live template variables.

 All   Comments   Work Log   Change History      Sort Order:
Maxim Mossienko - 29 May 07 17:02
jsClassName(),jsMethodName()

Johan Lund - 29 May 07 17:19
Thanks.

Johan Lund - 07 Jun 07 13:42
Found a small problem with the implementation.

jsClassName() works fine inside a method but not outside. E.g.:

/**
Add information about class here
*/
function Foo() {
if (_biInPrototype) return;
BiEventTarget.call(this);
}
_p = _biExtend(Foo, BiEventTarget, "Foo");

_p.methodName = function () {
BiLog.out("Foo:methodName: " + ""); // Works here
};

[should say Foo here].addProperty("", Function.READ_WRITE); // Does not work here


Maxim Mossienko - 07 Jun 07 18:00
Added