How can I load items from a SharePoint list using its InternalName? As far as I know I can get it using either Id or Title like the following:
var clientContext = new SP.ClientContext('/News/');
var web = clientContext.get_web();
var list = web.get_lists().getById("{1DBA9283-0AFA-4FA1-9BBA-70D8D190971F}");
...
I don't know if you mean that, but inside my JavaScript-File I'm able to use Object Model if I declare these three lines first.
/// <reference name="MicrosoftAjax.js" />
/// <reference path="file://C:/Program Files/Common Files/Microsoft Shared/Web Server Extensions/14/TEMPLATE/LAYOUTS/SP.core.debug.js" />
/// <reference path="file://C:/Program Files/Common Files/Microsoft Shared/Web Server Extensions/14/TEMPLATE/LAYOUTS/SP.debug.js" />
This is relevant code, works without call with {SelectedItem} or stuff:
var items = SP.ListOperation.Selection.getSelectedItems();
var listID = SP.ListOperation.Selection.getSelectedList();
This loads (parts) of the Client Object Model, so I guess there you can go on. Because this is supported with IntelliSense.
Edit2: The other way to get and use a list with JavScript only is
This way requires in your Elements.xml, where I defined my buttons, that you call it
Edit3: Be careful using this JavaScript without any security checks. Because for example you have delivered this solution to a site, which has lets say two lists. First one you suggested to have this JavaScript and a second one. If you have custom buttons that appears in both list than you work on second list, but using the buttons fire to the first list as long as it is possible.
Lets say you have a button that clears content and you have in both lists a column called "title". If you are on second list and press button "delete title" than on your first list the title from item with same itemId will be deleted. On your second list happens nothing.
This appears from visibility of your buttons and no check, if designated list is the one you are working on.
Shegit
Edit: Scrolling my tabs I found this one: Retrieve items from a folder with EcmaScript & COM