mengthao
9 years agoNew Contributor
Status:
New Idea
Editory - Autocomplete object methods (something like ctrl+space in Eclipse)
In Jscript say I have an object with multiple methods ie:
var username = function(uname) {
this.uname = uname;
this.objectName = 'Textbox("j_username")';
username.prototype.selectText = function() {
code to select the text from this textbox.....
};
username.prototype.deleteText = function() {
code to delete text from this textbox.....
};
username.prototype.setText = function(uname) {
code to set text in this textbox.....
};
};
I'm wondering if there is a way to autocomplete when I call this object and it's methods.
Like:
function Main(){
username.after the dot editor shows the methods of this object[selectText,deleteText,setText]
}