Anyone know of any good examples of how to get the value contained by a cell in a grid? Or a simpler problem that pertains to my situation: just how to get the value of the first cell when a row is selected?
Thanks!
Anyone know of any good examples of how to get the value contained by a cell in a grid? Or a simpler problem that pertains to my situation: just how to get the value of the first cell when a row is selected?
Thanks!
After creating a new window with window.open(), I want to fill in some values in some dojo TextBoxes.
function createNewForm()
{
var win = window.open('newForm.html', 'New', 'height=775, width=475, status=1');
dijit.byId('theme').setValue("hello"); //doesn't work
}
The html File creates a simple form with dojo Buttons, Comboboxes and Textboxes, where for example one Textbox has the id "theme".
Thank you!