i have created 2 ELB's-ELB1,ELB2 Both are binding to the datasource. ELB2 is child of ELB1. Let say ELB2 have bound 3 items.It work fine if do selection on...
We'll probably need more information to solve this, but it sounds like the list may not be getting its items correctly. Are you making the selection in code,...
Peter Brunone (EasyLi...
peter@...
Oct 12, 2006 2:05 pm
817
i attach here the coding
--- In EasyListBox@yahoogroups.com, "Peter Brunone (EasyListBox.com)" <peter@...> wrote:
>
> > > We'll probably need more...
well i found why system hit an error, because i additem to the datasource. in elb trial version i noticed that there is easylistbox's url on the first item of...
Technically, the ELB banner in the demo version is not a list item; it's displayed before the items. If all you're trying to do is to show some text when...
Peter Brunone (EasyLi...
peter@...
Oct 18, 2006 4:45 pm
820
I have an easylistbox in a page web. When I want to simulate that two users are connected, I open two instances of the browser, in the same machine. In one...
I think the problem is that opening two instances of Internet Explorer doesn't necessarily simulate two different users. The cookies, for example, may be...
Peter Brunone (EasyLi...
peter@...
Oct 19, 2006 2:31 am
822
What versions of easy list box work with IE 7? Patrick...
Hi Patrick, Good question! Versions 3 and up should function well in IE7, with one exception: ajax. There is a new Javascript file -- that will be available...
Peter Brunone (EasyLi...
peter@...
Oct 19, 2006 9:46 pm
824
With the introduction of IE7, a couple of changes are required, but conveniently enough, they're all in the client script area. This means that instead of...
Hi I have copied this very basic example off your website and i get this error: Error 6 Cannot switch views: Content is not allowed between the opening and...
Hello Peter I'm getting this error again. :( I did not buy ELB for my last website as I was unable to get rid of this error. Now I have got it again on another...
Hi Andrea, Shame on me for neglecting to follow up on this. What happens if you set the DisplayMode in codebehind instead of in markup? Peter From: "andieje"...
Peter Brunone (EasyLi...
peter@...
Oct 29, 2006 1:49 am
828
Also, I noticed that in the example you sent last time, the ID of the combobox was "ELB", which also happens to be the parent namespace. Might that be causing...
Peter Brunone (EasyLi...
peter@...
Oct 29, 2006 1:51 am
829
Hi again... We seem to have a design mode problem with ELB's ListItem class (apparently nobody hard-codes list items anymore since this only came up last...
Peter Brunone (EasyLi...
peter@...
Oct 29, 2006 2:00 am
830
Hi I don't often need to use static items, it was just a test ... _________________________________________________________________ Windows Live™ Messenger...
Well, that's good to know :) Be sure to let us know how the suggestion(s) work out for the other problem. Peter ... From: "Andrea Edwards"...
Peter Brunone (EasyLi...
peter@...
Oct 29, 2006 10:33 pm
832
Hi It's not that because it works ok in a blank solution. Something in my project must be stopping it from working. as i said, i tested elb before i started to...
Okay... well if you still have time, feel free to send that project (off-list) and I'll run it through its paces. Peter From: "Andrea Edwards"...
Peter Brunone (EasyLi...
peter@...
Oct 29, 2006 11:11 pm
834
Hi Peter, I have 3 EasylistBox controls on a page. Oneof them uses the Ajax function while the other two are simple dropdowns that are databound on page load...
Hi Nikhil, Two thoughts on that situation. 1) EasyListBox does some caching the first time around, including creating a DataTable for use in the application...
Peter Brunone (EasyLi...
peter@...
Nov 4, 2006 3:06 am
836
Hi All, I'm new to this easylistbox control but it seems to have great potencial. Have a few listboxes on one page (about 6) Most of them are small with about...
Welcome to the group! It looks like you need to specify the provider in your connection string; EasyListBox doesn't make any assumptions about which one you...
Peter Brunone (EasyLi...
peter@...
Nov 9, 2006 6:18 pm
838
Thanks Peter, I tried the provider as suggested and received this error when any part of my app tries to reterive data. "Keyword not supported: 'provider'. " ...
Ah, so you need a provider for standard (ELB) data access, but the Oracle Data Access Client doesn't want it! It looks like you have two choices: you can keep...
Peter Brunone (EasyLi...
peter@...
Nov 9, 2006 7:15 pm
840
When you mean populate with a data reader you mean something like this: SQL = "Select * from Campaign_Codes where Enabled_Flag='Y' order by Campaign_Code" DS =...
Not exactly; I meant using the DataReader as the DataSource for the EasyListBox (after setting DataTextField/DataValueField and all that). The data will be...
Peter Brunone (EasyLi...
peter@...
Nov 9, 2006 10:24 pm
842
provider <> Provider connection strings are case sensitive and very picky....
Thanks for pointing that out, Charles; it slipped right by me. Then again, most of my database work is done in the SqlClient namespace where no provider is...
Peter Brunone (EasyLi...
peter@...
Nov 10, 2006 4:09 am
844
Thanks for the info both of you. I tried the lower case "provider", yes I have forgotten about that too. I also created another connection string: <add...