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....
Hi matro, Â Â Â You can use the server-side OnChange property (which renders a client-side script call) for this. Cheers, Peter From: "matro"...
Peter Brunone (EasyLi...
peter@...
Mar 7, 2005 6:09 pm
232
Peter, Setting the CookieMemory to False seems to have worked and has removed the error code i was getting in the footer of the Grid as the ELB's loaded. Even...
   Oh, DataGrid footers. They've caused their share of grief among developers...    Try this: after you grab the necessary values for your Add...
Peter Brunone (EasyLi...
peter@...
Mar 7, 2005 9:13 pm
234
Peter, I tried setting the ELB's SelectedValue to " " but this doesn't work, I think we went through the same thing last year when I was having all the...
is it possible to have a lisbox populated from a dreamweaver MX dataset and have the initial value selected taken form an alternative dataset (containing the...
I have a page where I attempted to use ELB for the speedsearch feature, as the dataset used to bind to the ELB contained 600+ rows. When the page first...
Hi John, Â Â Â How are you planning to access this value, i.e. in your VB/C# or in the control tag itself? Â Â Â If you plan to get the value in VB, for...
Peter Brunone (EasyLi...
peter@...
Mar 9, 2005 7:24 pm
239
A few questions, if I may: 1) 6000 or 600? I see both in the text below, and I just wanted to make sure of the scale we're dealing with (six thousand is a...
Peter Brunone (EasyLi...
peter@...
Mar 9, 2005 7:38 pm
240
We have a user here who wants to pull a single value from a DW dataset to use as the SelectedValue property. Now from my limited Dreamweaver experience, I...
It is 6000 in a list of internal facilities. I realize it is a large list, but that is the number and it really can't be filtered to anything less. Since it...
   Okay, so the detail page contains the ELB with 6000 records. Does that same list load in the other page correctly, i.e. is it the programmatic...
Peter Brunone (EasyLi...
peter@...
Mar 16, 2005 5:28 am
243
... From further investigation i believe that the latest version has re-introduced a bug as the previous version did not have or display this problem. One of...
hi there, I have the need to select an item of a DropDown ELB from another IE window; the ELB_SelectValue function is not available from there... perhaps it...
Hi Matro,    You should be able to call any function from another window. What is the exact setup of your windows (names, etc) and what syntax are you...
Peter Brunone (EasyLi...
peter@...
Mar 18, 2005 5:10 pm
246
Hi, I am having trouble when adding a blank item to a drop down list. I am adding data manually from code as I am dynamically creating the controls doing...
Peter, I am still in the early stages of learning Studio DotNet and using ELB. Will you please provide me with some very simple code that shows what is...
Hi Tim,    At first glance, I'd say this is probably because your first item has no value. Assign it some fake/throwaway value and you should be fine. ...
Peter Brunone (EasyLi...
peter@...
Mar 23, 2005 5:44 pm
249
Hi Jack, Â Â Â Second question first:Â Speedsearch works automatically for all single-select lists (except in combobox mode, which autocompletes anyway). ...
Peter Brunone (EasyLi...
peter@...
Mar 23, 2005 6:07 pm
250
In our application, we use a PlaceHolder to create certain pages and so we create instances of controls which we put onto the PlaceHolder, for example :...
   When you say it's "visible", are you talking about in Intellisense, or the toolbar, etc?    If you haven't added ELB to the toolbar, you can do so by...
Peter Brunone (EasyLi...
peter@...
Mar 23, 2005 6:56 pm
252
is there a JScript function to change the visible property from false to true and back? Jack...