Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to pass array element name?
Message
From
30/11/2015 11:59:52
 
General information
Forum:
Javascript
Category:
Other
Miscellaneous
Thread ID:
01628031
Message ID:
01628087
Views:
25
>>>>comments can be misleading: untested
>>>>
>>>>function MyTest( cCol1Name ) {
>>>>var MyObject = .... object is created
>>>>var Row = MyObject[0].cCol1Name;
>>>>var Col1Val = Row[cCol1Name]
>>>>// var Col1Val = eval( "Row." + cCol1Name)
>>>>}
>>>>>>>
>>>
>>>Thank you.
>>
>>The commented eval() should work as well, but is considered by some to be an anti-pattern. Was a bit short in my explanation ;-)
>
>I am very much a newbie to javascript. So I will look up this function; use, upside and downside. One thing I found so far is that javascript is very unforgiving. If I have ANYTHING wrong in my javacript (like, e.g., missing the ending ";") nothing works in the code. And no error appears when I am running it in ASP.NET. I have to be extra careful.

Best use a debugger on the browser. I favour Chrome but it depends what you're used to.

For Chrome when you've loaded a page hit 'Ctrl-Shift-I'.
The Console tab will show any exceptions.
You can view the JavaScript and set breakpoints in the Source tab.
Check Local Storage content in the Resources tab; see what's going over the wire in the Network tab
Play with styles and layout in the Elements tab
etc. etc.

If you think you are getting exceptions during the page load then just reload the page after opening the Dev Tools.....
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform