Hi,
I am trying to get the intellisense to work with my VS2010 express.
I have followed the instruction from the thread below :
http://www.kendoui.com/forums/kendo-ui-web/general-discussions/kendo-ui-intellisense-support.aspx
Everything is working as shown in the tread.
But I would like to know the "level" of intellisense that it supports. Or how detail the current Intellisense would help us to code.
For example, when I type
$('foo').kendo....
It will list all the available kendo object type available
kendoAutoComplete
kendoCalendar
kendoComboBox, etc......
so if I want to initialize a kendoAutoComplete
I will use
$('#foo').kendoAutoComplete
The question I want to ask is that ...
does the intellisense stops right here ?
for example, after I have type $('#foo').kendoAutoComplete, it does list all the avaialbe options for initalizing the auto complete control
now, let say i want to initiazlie the autocomplete control with a datasource.
the correct syntax is
$('#foo').kendoAutoComplete({ dataSource: data});
but if I then type
$('#foo').kendoAutoComplete({ d
the intellisense won't suggest that there is a dataSource property available such that I can initilize the autoComplete control with the specified datasource.
Is the Intellisense suppose to suggest the dataSource and other properties?
As suggested by Faisal in this thread
http://www.kendoui.com/forums/kendo-ui-web/general-discussions/intellisense-in-visual-studio.aspx
Thank you
I am trying to get the intellisense to work with my VS2010 express.
I have followed the instruction from the thread below :
http://www.kendoui.com/forums/kendo-ui-web/general-discussions/kendo-ui-intellisense-support.aspx
Everything is working as shown in the tread.
But I would like to know the "level" of intellisense that it supports. Or how detail the current Intellisense would help us to code.
For example, when I type
$('foo').kendo....
It will list all the available kendo object type available
kendoAutoComplete
kendoCalendar
kendoComboBox, etc......
so if I want to initialize a kendoAutoComplete
I will use
$('#foo').kendoAutoComplete
The question I want to ask is that ...
does the intellisense stops right here ?
for example, after I have type $('#foo').kendoAutoComplete, it does list all the avaialbe options for initalizing the auto complete control
now, let say i want to initiazlie the autocomplete control with a datasource.
the correct syntax is
$('#foo').kendoAutoComplete({ dataSource: data});
but if I then type
$('#foo').kendoAutoComplete({ d
the intellisense won't suggest that there is a dataSource property available such that I can initilize the autoComplete control with the specified datasource.
Is the Intellisense suppose to suggest the dataSource and other properties?
As suggested by Faisal in this thread
http://www.kendoui.com/forums/kendo-ui-web/general-discussions/intellisense-in-visual-studio.aspx
Thank you