I have an ELB Parent-Child pair. I databind both ELBs. What properties do I set in Visual Studio dotNet to establish this relationship? I have struggled...
Hi Jack, Â Â Â Just in case you haven't seen them, there is a parent-child example in the Help file and there are some good live demos at LearnASP.com (like ...
Peter Brunone (EasyLi...
peter@...
Jan 21, 2005 3:30 pm
172
I have set the properties as outlined below. I get the following errors when the program executes: From VB.Net - A runtime error has occurred, do you wish to...
   Can you send me the aspx and/or the rendered HTML off-list? It sounds like your child list is not being populated. Thanks, Peter From: "Jack's Email"...
Peter Brunone (EasyLi...
peter@...
Jan 21, 2005 5:29 pm
174
... From: Peter Brunone (EasyListBox.com) To: EasyListBox@yahoogroups.com Sent: Friday, January 21, 2005 10:27 AM Subject: Re: [EasyListBox] EasyListBox...
Thanks. What does the code-behind look like? Specifically, how are you binding these lists? If you can send the rendered HTML that would be helpful as well, ...
Peter Brunone (EasyLi...
peter@...
Jan 21, 2005 8:27 pm
176
Message ... From: Peter Brunone (EasyListBox.com) To: EasyListBox@yahoogroups.com Sent: Friday, January 21, 2005 1:28 PM Subject: RE: [EasyListBox] EasyListBox...
MessageBoth ELB listboxes are being populated correctly. I inserted code to print the values in each listbox before ending the program. Everything that was...
Something's still wrong with the child list items; the error you reported indicates that the array of items isn't there or can't be recognized. Can you send...
Peter Brunone (EasyLi...
peter@...
Jan 22, 2005 3:55 am
179
MessageThe error occurs while the HTML is being rendered and all I get is the ELBScriptIE56.js listing. Jack ... From: Peter Brunone (EasyListBox.com) To:...
Right, but if you click "No" or "OK" (depending on whether you have a debug option), the page will load and you can View Source. I want to see how all this is...
Peter Brunone (EasyLi...
peter@...
Jan 22, 2005 2:22 pm
181
MessageI click not and the program stops at line 895 in ELBScriptIE56.js. The attached file is all I get. I have marked the line with XXXXXX. ... From: Peter...
But how did you print out the values in the listboxes if nothing was rendered to the page? Forgive me, but I'm really confused here. Even if there are...
Peter Brunone (EasyLi...
peter@...
Jan 22, 2005 9:12 pm
183
MessageI am developing in VS.Net 2003. I inserted the code below into the routine I use to bind the ELB to all the rows in as SQL table. Could the reason the...
Thanks for the code. FYI, you don't have to set the selected index to check the attributes of an item; you can just call lstCourses.Item(r).Value and...
Peter Brunone (EasyLi...
peter@...
Jan 23, 2005 3:13 am
186
I finally got my looping and inserting to the database working. This is the code I'm using: Sub Save(Sender As Object, e As EventArgs) Dim myCommand As...
   So you're saying that when you use DisplayMode="ListBox", the page doesn't recognize the ELB anymore? If so, would it be possible to send me the page...
Peter Brunone (EasyLi...
peter@...
Jan 24, 2005 3:39 pm
188
I'm trying to load saved data into an ELB ComboBox, LimitToList=False. The ELB is popluated in the Page_Load event as follows: /////CODE BELOW///// theString...
Hi Chris,    Let me make sure I understand the question. The databinding is working as expected, and then you are trying to set the SelectedValue for...
Peter Brunone (EasyLi...
peter@...
Jan 24, 2005 4:49 pm
190
Databinding is working - correct Trying to set SelectedValue - correct Right now I am trying to add it everytime regardless. The Item I add never appears in...
   Okay then... what's happening is that when you use no-code databinding, there is no explicit trigger to call DataBind which means that it happens shortly...
Peter Brunone (EasyLi...
peter@...
Jan 24, 2005 7:53 pm
192
hi there, I tried to set some style (font type and size) to a dynamically created ELB (in a datagrid) without success. I tried to assign .CssClass="ELB", then...
Hi Matro -- Buona sera (in the US, anyway)... Depending on which build you have, there may be some style attributes which are overridden by default properties....
Peter Brunone (EasyLi...
peter@...
Jan 26, 2005 5:04 am
194
I'm also really interested on how the upcoming 3.0 will handle large datasets, as I already disabled the viewstate and suffer from heavy load. can you give us...
I am having a problem with related lists. My setup is similar to the related list demo on the easylistbox.com site. I have a drop down, which filters a...
Hi Patrick,    Thanks for your input.  What you're describing is a bug that is currently under study. When a fix is implemented, this list as well as...
Peter Brunone (EasyLi...
peter@...
Jan 31, 2005 8:55 pm
197
It seems that clicking on another control works gets around the problem. Is there a way to setup something like an onchanged or onclick event for the...
3.0 will cache the data in memory as a replacement for Viewstate. This will offer all the server-side performance benefits of Viewstate, but without the huge...
Peter Brunone (EasyLi...
peter@...
Feb 1, 2005 2:58 am
199
I'm not sure I completely understand. Do you mean you want a postback event for related lists instead of having it happen client-side? ... From: Patrick...