asp.net mvc - Telerik MVC Grid edit mode error -
asp.net mvc - Telerik MVC Grid edit mode error -
i have form come in employee's details. in entering employee contact details , address details. address using mvc grid crud operations. selected editing mode "grideditmode.inline". there no javascript error in page loading, clicking add together new row button of grid. when focus of editable fields in row getting next error
"jquery.validate.min.js:19uncaught typeerror: cannot read property 'settings' of undefined"
how can rectify problem?
note: using telerik extensions 2011.2.712. address grid in partial view, can utilize vendor & client address too. using ef in info layer.
thanks & regards kousik
the telerik controls require proper scripts registered or included in page. recommend using script registrar (something following).
@(html.telerik().scriptregistrar().defaultgroup(group => grouping .add("jquery-1.5.1.min.js") .add("jquery.validate.min.js ") .add(<any additional scripts>)) )
you can manually "old" way, api much easier, plus gives benefit of beingness able compress , combine scripts 1 file through api cut down footprint.
you can refer http://www.telerik.com/help/aspnet-mvc/telerik-ui-components-required-javascript-files.html more detailed info on scripts needed specific controls.
asp.net-mvc asp.net-mvc-3 telerik-grid
Comments
Post a Comment