ASP.net
Awesome
Learn
Forum
Buy
Demos
Sign In
☾
☀
Switch to
Dark
Light
Mode
this site works best with javascript enabled
Ask Question
nest edit grid functionality requirements
Title:
B
I
{code}
?
I am evaluating the grid and popup windows is not presented inside the grid, but is presented like a modal pop up window. Tags are set as "inline" in crud helper methods: .Tag(new { Inline = true, NoTitle = true }) What else is required for nest edit functionality?
Save Changes
Cancel
Leandros Papadopoulos
asked at 23 Sep 2016
you're probably not calling utils.init in _Layout.cshtml like in the demos
at 24 Sep 2016
Omu
Thank you, By using the following order in my code in _Layout.cshtml nest works. Thank you. @Scripts.Render("~/bundle/Scripts/js") <script> var isMobileOrTablet = '@MobileUtils.IsMobileOrTablet()' == "True"; var dateFormat = '@AweUtil.ConvertTojQueryDateFormat(Thread.CurrentThread.CurrentCulture.DateTimeFormat.ShortDatePattern)'; var decimalSep = '@Thread.CurrentThread.CurrentCulture.NumberFormat.NumberDecimalSeparator'; utils.init(dateFormat, isMobileOrTablet, decimalSep); </script>
at 24 Sep 2016
Leandros Papadopoulos
jQuery, AwesomeMvc, awem and utils .js files need to be loaded before you call this inline script
at 24 Sep 2016
Omu
Answers
please
Sign In
to leave an answer
By accessing this site, you agree to store cookies on your device and disclose information in accordance with our
cookie policy
and
privacy policy
.
OK