Hi, friends am using a code like

function UI(){
}

UI.appendElment = function()
{
   var headers = listBox.appendElement('<listitem/>');
   UI.appendHeader(headers,'College Code','4','left');
}//  second argument as a string in my actual code am passing a
variable with string value

UI.appendHeader = function(div, text, x , align)
{
        var label = div.appendElement('<label/>');
        label.align = align;
        label.bold = true;
        label.color = '#000000';
        label.height = '100%';
        label.innerText = text;
        label.size = 8;
        label.width='100%';
        label.x = x;

 return label;
}

to append elements dynamically to list, and the variable accepting
values entering by user in  a 'text'. Now, here i dont want to accept
similar value entered by user , So how could i iterate list box to
find the values in it..??

-- 
You received this message because you are subscribed to the Google Groups 
"Google Desktop Developer Group" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-desktop-developer?hl=en.

Reply via email to