Oh! For that, you can just use the OnChange event handler (specified in the Help file under EasyListBox->Properties). Cheers, Peter From: "Patrick"...
Peter Brunone (EasyLi...
peter@...
Feb 1, 2005 3:14 pm
202
Thanks. Are there any code snippets out there showing it's use and/or syntax? Patrick...
   I don't know of one, but you can use it in the following way: <ELB:EasyListBox id="myELB" runat="server" OnChange="window.status='blah';"    Perhaps...
Peter Brunone (EasyLi...
peter@...
Feb 1, 2005 10:13 pm
204
Hi, I am having difficulty looping through the item collection of tghe ELB, I know it is different to a normal dropdown and should use the ItemCount property...
Hi Peter, This does seem strange. What version is the DLL you're using? Also, what is your ultimate goal here? There's a good chance you can get what you...
Peter Brunone (EasyLi...
peter@...
Feb 13, 2005 3:47 am
206
Peter, Yes sorry about that, i was using an old DLL. Have replaced it with the 2.4 version and now the problem has been resolved. My goal was or is.. I have a...
i have an ELB instance inside a DIV: <div id="myDiv" style="OVERFLOW-X: scroll; WIDTH: 500px"> when clicking the EasyListBox, the list goes over the scrollbar;...
   I'm not sure I understand exactly what's happening here. Can you post a link (on or off list)? ... From: "matro" <mailing@...> Sent:...
Peter Brunone (EasyLi...
peter@...
Feb 16, 2005 6:13 pm
209
Hi, I am having trouble populating and setting the index value for an ELB. I can poulate the ELB okay manually but cannot seem to set the index to the database...
... property ... has ... value, ... Hi, Managed to get the ELB to poulate using the The SelectQuery property and ConnectionStringSqlServer property, still...
Hi Peter, Are you just trying to set the selected value of the ELB? You can do that with the SelectedValue property; let me know if I've misunderstood the...
Peter Brunone (EasyLi...
peter@...
Feb 20, 2005 12:27 am
212
Peter, I need to get the ELB to show the value from the DataBase as it's selected value, this i am struggling with. I have added the following as the HTML: ...
I'm not sure why ItemCount is returning zero, but you don't need to loop to do this. You can simply set SelectedValue equal to the item value that you want to...
Peter Brunone (EasyLi...
peter@...
Feb 20, 2005 12:38 am
214
Peter, Thanks for that.. it all seems so simple now.. Thanks for your assitance. Regards.. Peter. ... need ... item ... # ... </Code> ... Tracing...
I need to add items on client side with javascript. is it possible? :) my goal is to refresh ELB content through XMLHTTP accesses; I'm ready with the XML part,...
Hi, This may seem a stupid question but how do you get the autopostback feature to work??? I tried setting up a test page and enabled autopostback with the ...
utoPostBack="True" ? ... From: pztydr [mailto:peter.annandale@...] Sent: Monday, February 21, 2005 5:30 AM To: EasyListBox@yahoogroups.com Subject:...
Peter Brunone (EasyLi...
peter@...
Feb 21, 2005 2:38 pm
218
Peter, As I said, maybe a stupid question.. I have set Autopostback="True" but I cannot get it to enter the sub routine. I need to be able to change the...
   Ouch. I didn't get any further than "utoPostback". Thanks for clearing that up :)    You make an interesting point about the documentation,...
Peter Brunone (EasyLi...
peter@...
Feb 22, 2005 2:28 pm
221
Hi Matro, The idea here is to get new data with a client-side callback, correct? This is a planned feature for a future release, although I can see why you'd...
Peter, thank you for your interest. yes, that's the idea. we set up an XMLHTTP communication with the server; whenever an user changes a field, the XMLHTTP...
Hi, Is there any way to add or start with a blank line in a databound dropdown list box. I am using the SelectQuery and the ConnectionStringSqlServer ...
Hi Peter, Currently, with no-code databinding, you would have to include the blank line in your SQL Statement (a simple UNION with blank values should...
Peter Brunone (EasyLi...
peter@...
Mar 4, 2005 2:37 am
225
Peter, My reasoning is that when the Web form first opens to provide data input I would like to present the user with a blank listbox and have them click on...
Peter, I asm having difficulty with databinding to the ELB when using conventional databinding. The following error is presented: <Error> Selected value is ...
Hi Peter You are adding an empty string in RowForDropDown(0) = " "; this column is supposed to be the courseid (I assume int or bigint) Wolfgang ... using ... ...
WolfGang, The CourseID is of type NVarChar, the other dropdown i am using in the footer i had to assign a 0 to. The bigger problem is that it sometimes works...
Hi Peter,    Try setting CookieMemory=False in your ELB tags. If that doesn't correct the problem, clear the cookies in your browser just to be sure (an...
Peter Brunone (EasyLi...
peter@...
Mar 7, 2005 12:54 pm
230
hi there, how can we let ELB to trigger an onChange event (or whatever) whenever the user selects an item in DropDown mode? thank you....