Search the web
Sign In
New User? Sign Up
EasyListBox
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1708 - 1737 of 1737   Newest  |  < Newer  |  Older >  |  Oldest
Messages: Show Message Summaries   (Group by Topic) Sort by Date v  
#1737 From: "Peter Brunone (EasyListBox.com)" <peter@...>
Date: Tue Nov 24, 2009 7:15 pm
Subject: re: Droplist Frozen, Not Selectable
peter@...
Send Email Send Email
 
You may be the first person I've come across that still uses ELB 2.5 :)

There are no plans to update that version for IE8, but some fixes are in the works for ELB 4.0 (you may be able to get a discount on the upgrade; feel free to contact me offlist).

Cheers,

Peter




From: "ms_puzzler" <puzzler_mail-ygroups@...>
Sent: Monday, November 23, 2009 2:24 PM
To: EasyListBox@yahoogroups.com
Subject: [EasyListBox] Droplist Frozen, Not Selectable


 

I am using version 2.5 and have found one computer (out of three available) has this issue. I go to select an item from the droplist and the droplist freezes, not allowing me to select an item. I can move to another control, but the list stays on top and does not roll-up. I am using IE8 on Windows Vista.

Has anyone else had this issue?

Thx!


#1736 From: "ms_puzzler" <puzzler_mail-ygroups@...>
Date: Mon Nov 23, 2009 8:07 pm
Subject: Droplist Frozen, Not Selectable
ms_puzzler
Online Now Online Now
Send Email Send Email
 
I am using version 2.5 and have found one computer (out of three available) has
this issue.  I go to select an item from the droplist and the droplist freezes,
not allowing me to select an item.  I can move to another control, but the list
stays on top and does not roll-up.  I am using IE8 on Windows Vista.

Has anyone else had this issue?

Thx!

#1735 From: ffxhokie2002
Date: Fri Nov 13, 2009 9:24 pm
Subject: Re: ELB doesn't display correctly if hidden at page load
ffxhokie2002
Offline Offline
 
Peter,

    Ok here is some additional information on formatting.

If I take that easylistbox in the example code given.   The Height property in
the .aspx ELB:EasyListBox works correctly, but the Width is hardcoded to "Auto"
and cannot be changed as a parameter.   The font-size also doesnt work as a
parameter but both the font-size and width properties will work if I put them in
a .CSS class.   At the same time, if I put Height in the .css class, it does not
work correctly.

Although at the moment, it seems that i can get it to format correctly by using
some parameters in once place, and some in the other place, I know it has to do
with it being in a container, or not rendered on pageload, or inside of an ajax
container.   So at least for the formatting there ARE workarounds, but several
things do not work correctly.

If I use the following commands in Javascript to make an EasyListBox control
Visible/Hidden:
ELB_ShowList('<%= lbMSElist.ClientID %>');
ELB_HideList('<%= lbMSElist.ClientID %>');
Then the first time I try to hide it, nothing happens, then i click again and it
brings up a NEW EasyListBox control directly to the left of the one I am trying
to hide/show, with the same width, and as a dropdownlistbox instead of a
listbox.  Each subsequent click hides and shows that new magic phantom control. 
hehe.

I feel like I have the magic touch at breaking/testing this control! muahaha

John

#1734 From: ffxhokie2002
Date: Fri Nov 13, 2009 6:05 pm
Subject: Re: ELB doesn't display correctly if hidden at page load
ffxhokie2002
Offline Offline
 
I've tried putting it in several different ways, all don't work correctly.

1) ELB_ShowList('lbMSEall');
>>JavaScript Error - Object Required
2) ELB_ShowList('<%= lbMSEall.ClientID %>');
>>No Javascript error, however instead of hiding/showing the lbMSEall
EasyListBox, it creates a new control right to the left if it which appears as a
dropdownbox with no data that appears and dissappears
3) ELB_ShowList($get('<%= lbMSEall.ClientID %>'));
>>JavaScript Error - Object Required
4) ELB_ShowList(lbMSEall);
>>JavaScript Error - Object lbMSEall is Undefined

It looks like option 2 is what SHOULD work, but doesnt actually show or hide the
actual control, it just creates a brand new one next to it and shows and hides
that.

--- In EasyListBox@yahoogroups.com, Peter Brunone <peter.brunone@...> wrote:
>
> John,
>
>      Just to clarify, I'm talking about the *client* ID rather than the
> server control ID.  The client ID (available on the server via the ClientID
> property) is how you'll need to refer to your control in client-side script.
>
>      Thanks for the code; I think I got it a minute after this message came
> through :)
>
> Peter
>
> On Fri, Nov 13, 2009 at 9:46 AM, ffxhokie2002 <no_reply@yahoogroups.com>wrote:
>
> >
> >
> > Peter,
> >
> > Yes 'lbMSEall' is the ID of the object. I sent you an email with the code
> > in it. Putting it here too:
> >
> > John
> > ----------------------------------------------------------
> > <%@ Page Language="VB" MasterPageFile="~/PDSATMaster.master"
> > AutoEventWireup="false" CodeFile="ReportButton.aspx.vb"
> > Inherits="ReportButton" title="TFSMS Prepo Report - TAMCN" %>
> >
> > <%@ Register Assembly="System.Web.Extensions, Version=1.0.61025.0,
> > Culture=neutral, PublicKeyToken=31bf3856ad364e35"
> > Namespace="System.Web.UI" TagPrefix="asp" %>
> >
> > <%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit"
> > TagPrefix="cc1" %>
> >
> > <%@ Register Assembly="EasyListBox" Namespace="ELB" TagPrefix="ELB" %>
> >
> > <asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1"
> > Runat="Server">
> > <cc1:ToolkitScriptManager ID="tsm"
> > runat="server"></cc1:ToolkitScriptManager>
> > <script type="text/javascript">
> >
> > function OpenPane(paneIndex)
> > {
> > var accHost = $get('<%= Accordion1.ClientID %>').AccordionBehavior ;
> > accHost.set_SelectedIndex( paneIndex );
> > return false;
> >
> > }
> >
> > function mseVisible(targetDiv) {
> > var tempDiv = document.getElementById(targetDiv);
> >
> > if (tempDiv.style.visibility == 'hidden') {
> > tempDiv.style.visibility = 'visible';
> > }
> > } else {
> > tempDiv.style.visibility = 'hidden';
> > }
> > return false;
> > }
> > </script>
> >
> > <cc1:Accordion ID="Accordion1" runat="server" SelectedIndex="0"
> > HeaderCssClass="accordionHeader" ContentCssClass="accordionContent"
> > FramesPerSecond="40" TransitionDuration="250" AutoSize="None"
> > BorderStyle="None" RequireOpenedPane="true"
> > HeaderSelectedCssClass="accordionHeaderSelected">
> > <Panes>
> > <cc1:AccordionPane ID="AccordionPaneWelcome" runat="server"
> > BorderStyle="Outset">
> > <Header>
> > Welcome
> > </Header>
> > <Content>
> > <table cellspacing="0" style="width: 75%">
> > <tr>
> > <asp:Label ID="Label2" runat="server" Font-Size="Small">
> > Welcome to the Prepo TAMCN view report wizard. The purpose of this wizard
> > is to select filtering options so that the data on your report will reflect
> > only the data
> > that you need to see. By default, each filter category is set to select all
> > records. You can navigate
> > through the wizard by selecting the Prev/Next buttons or clicking on the
> > category headers directly.
> > </br></br>
> > </asp:Label>
> > </tr>
> > <tr>
> > <asp:Button ID="btnWelcomeNext" runat="server" Text="Next"
> > OnClientClick="javascript:return OpenPane(1)" UseSubmitBehavior="true" />
> > </tr>
> > </table>
> > </Content>
> > </cc1:AccordionPane>
> > <cc1:AccordionPane ID="AccordionPane1" runat="server" BorderStyle="Inset">
> > <Header>
> > MSE
> > </Header>
> > <Content>
> > <asp:CheckBox ID="cbMSE" Text="Filter MSE Data" runat="server"
> > Font-Size="Small" />
> > <%--<div id="mseWrapper" style="visibility: hidden">--%>
> > <div id="mseWrapper">
> > <asp:Panel ID="PanelMSE" runat="server" Visible="true">
> > <table cellspacing="0" style="width: 20%">
> > <tr style="vertical-align: middle;">
> > <td>
> > <ELB:EasyListBox ID="lbMSEall" runat="server" DisplayMode="ListBox"
> > Height="80px" Width="100px" IsSwaptarget="True" SwapColumns="1"
> > Font-Size="Small">
> > <ListItem value="CE">CE</ListItem>
> > <ListItem value="ACE">ACE</ListItem>
> > <ListItem value="GCE">GCE</ListItem>
> > <ListItem value="LCE">LCE</ListItem>
> > </ELB:EasyListBox>
> >
> >
>

#1733 From: Peter Brunone <peter.brunone@...>
Date: Fri Nov 13, 2009 4:00 pm
Subject: Re: Re: ELB doesn't display correctly if hidden at page load
peter_brunone
Offline Offline
Send Email Send Email
 
John,

     Just to clarify, I'm talking about the *client* ID rather than the server control ID.  The client ID (available on the server via the ClientID property) is how you'll need to refer to your control in client-side script.

     Thanks for the code; I think I got it a minute after this message came through :)

Peter

On Fri, Nov 13, 2009 at 9:46 AM, ffxhokie2002 <no_reply@yahoogroups.com> wrote:
 

Peter,

Yes 'lbMSEall' is the ID of the object. I sent you an email with the code in it. Putting it here too:

John
----------------------------------------------------------
<%@ Page Language="VB" MasterPageFile="~/PDSATMaster.master" AutoEventWireup="false" CodeFile="ReportButton.aspx.vb" Inherits="ReportButton" title="TFSMS Prepo Report - TAMCN" %>

<%@ Register Assembly="System.Web.Extensions, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"
Namespace="System.Web.UI" TagPrefix="asp" %>

<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit" TagPrefix="cc1" %>

<%@ Register Assembly="EasyListBox" Namespace="ELB" TagPrefix="ELB" %>

<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
<cc1:ToolkitScriptManager ID="tsm" runat="server"></cc1:ToolkitScriptManager>
<script type="text/javascript">

function OpenPane(paneIndex)
{
var accHost = $get('<%= Accordion1.ClientID %>').AccordionBehavior ;
accHost.set_SelectedIndex( paneIndex );
return false;


}

function mseVisible(targetDiv) {
var tempDiv = document.getElementById(targetDiv);

if (tempDiv.style.visibility == 'hidden') {
tempDiv.style.visibility = 'visible';
}
} else {
tempDiv.style.visibility = 'hidden';
}
return false;
}
</script>

<cc1:Accordion ID="Accordion1" runat="server" SelectedIndex="0" HeaderCssClass="accordionHeader" ContentCssClass="accordionContent" FramesPerSecond="40" TransitionDuration="250" AutoSize="None" BorderStyle="None" RequireOpenedPane="true" HeaderSelectedCssClass="accordionHeaderSelected">
<Panes>
<cc1:AccordionPane ID="AccordionPaneWelcome" runat="server" BorderStyle="Outset">
<Header>
Welcome
</Header>
<Content>
<table cellspacing="0" style="width: 75%">
<tr>
<asp:Label ID="Label2" runat="server" Font-Size="Small">
Welcome to the Prepo TAMCN view report wizard. The purpose of this wizard
is to select filtering options so that the data on your report will reflect only the data
that you need to see. By default, each filter category is set to select all records. You can navigate
through the wizard by selecting the Prev/Next buttons or clicking on the category headers directly.
</br></br>
</asp:Label>
</tr>
<tr>
<asp:Button ID="btnWelcomeNext" runat="server" Text="Next" OnClientClick="javascript:return OpenPane(1)" UseSubmitBehavior="true" />
</tr>
</table>
</Content>
</cc1:AccordionPane>
<cc1:AccordionPane ID="AccordionPane1" runat="server" BorderStyle="Inset">
<Header>
MSE
</Header>
<Content>
<asp:CheckBox ID="cbMSE" Text="Filter MSE Data" runat="server" Font-Size="Small" />
<%--<div id="mseWrapper" style="visibility: hidden">--%>
<div id="mseWrapper">
<asp:Panel ID="PanelMSE" runat="server" Visible="true">
<table cellspacing="0" style="width: 20%">
<tr style="vertical-align: middle;">
<td>
<ELB:EasyListBox ID="lbMSEall" runat="server" DisplayMode="ListBox" Height="80px" Width="100px" IsSwaptarget="True" SwapColumns="1" Font-Size="Small">
<ListItem value="CE">CE</ListItem>
<ListItem value="ACE">ACE</ListItem>
<ListItem value="GCE">GCE</ListItem>
<ListItem value="LCE">LCE</ListItem>
</ELB:EasyListBox>



#1732 From: ffxhokie2002
Date: Fri Nov 13, 2009 3:46 pm
Subject: Re: ELB doesn't display correctly if hidden at page load
ffxhokie2002
Offline Offline
 
Peter,

    Yes 'lbMSEall' is the ID of the object.   I sent you an email with the code
in it.  Putting it here too:

John
-----------------------------------------------------------------
<%@ Page Language="VB" MasterPageFile="~/PDSATMaster.master"
AutoEventWireup="false" CodeFile="ReportButton.aspx.vb" Inherits="ReportButton"
title="TFSMS Prepo Report - TAMCN" %>

<%@ Register Assembly="System.Web.Extensions, Version=1.0.61025.0,
Culture=neutral, PublicKeyToken=31bf3856ad364e35"
     Namespace="System.Web.UI" TagPrefix="asp" %>

<%@ Register Assembly="AjaxControlToolkit" Namespace="AjaxControlToolkit"
TagPrefix="cc1" %>

<%@ Register Assembly="EasyListBox" Namespace="ELB" TagPrefix="ELB" %>

<asp:Content ID="Content1" ContentPlaceHolderID="ContentPlaceHolder1"
Runat="Server">
         <cc1:ToolkitScriptManager ID="tsm"
runat="server"></cc1:ToolkitScriptManager>
         <script type="text/javascript">

             function OpenPane(paneIndex)
             {
                 var accHost =  $get('<%= Accordion1.ClientID
%>').AccordionBehavior ;
                 accHost.set_SelectedIndex( paneIndex );
                 return false;
             }

             function mseVisible(targetDiv) {
                 var tempDiv = document.getElementById(targetDiv);

                 if (tempDiv.style.visibility == 'hidden') {
                     tempDiv.style.visibility = 'visible';
                     }
                 } else {
                     tempDiv.style.visibility = 'hidden';
                 }
                 return false;
             }
         </script>

         <cc1:Accordion ID="Accordion1" runat="server" SelectedIndex="0"
HeaderCssClass="accordionHeader" ContentCssClass="accordionContent"
FramesPerSecond="40" TransitionDuration="250" AutoSize="None" BorderStyle="None"
RequireOpenedPane="true" HeaderSelectedCssClass="accordionHeaderSelected">
           <Panes>
                <cc1:AccordionPane ID="AccordionPaneWelcome" runat="server"
BorderStyle="Outset">
                     <Header>
                       Welcome
                     </Header>
                 <Content>
                     <table cellspacing="0" style="width: 75%">
                         <tr>
                             <asp:Label ID="Label2" runat="server"
Font-Size="Small">
                             Welcome to the Prepo TAMCN view report wizard.   The
purpose of this wizard
                             is to select filtering options so that the data on
your report will reflect only the data
                             that you need to see.   By default, each filter
category is set to select all records.  You can navigate
                             through the wizard by selecting the Prev/Next
buttons or clicking on the category headers directly.
                             </br></br>
                             </asp:Label>
                         </tr>
                         <tr>
                             <asp:Button ID="btnWelcomeNext" runat="server"
Text="Next" OnClientClick="javascript:return OpenPane(1)"
UseSubmitBehavior="true" />
                         </tr>
                     </table>
                 </Content>
               </cc1:AccordionPane>
               <cc1:AccordionPane ID="AccordionPane1" runat="server"
BorderStyle="Inset">
                 <Header>
                     MSE
                 </Header>
                 <Content>
                     <asp:CheckBox ID="cbMSE" Text="Filter MSE Data"
runat="server" Font-Size="Small" />
                      <%--<div id="mseWrapper" style="visibility: hidden">--%>
                     <div id="mseWrapper">
                     <asp:Panel ID="PanelMSE" runat="server" Visible="true">
                         <table cellspacing="0" style="width: 20%">
                             <tr style="vertical-align: middle;">
                                 <td>
                                     <ELB:EasyListBox ID="lbMSEall"
runat="server" DisplayMode="ListBox" Height="80px" Width="100px"
IsSwaptarget="True" SwapColumns="1" Font-Size="Small">
                                           <ListItem value="CE">CE</ListItem>
                                           <ListItem value="ACE">ACE</ListItem>
                                           <ListItem value="GCE">GCE</ListItem>
                                           <ListItem value="LCE">LCE</ListItem>
                                     </ELB:EasyListBox>

                                 </td>
                                 <td>
                                     <table cellspacing="0" style="width: 20%">

                                     <tr>
                                          <ELB:ActionButton ID="ActionButton1"
runat="server" Action="SwapItem" SourceList="lbMSEall" TargetList="lbMSElist"
ImageURL="Images\BlueArrow_Right_32.png" DisplayType="Image" />
                                     </tr>
                                     <tr>

                                         <ELB:ActionButton ID="ActionButton2"
runat="server" Action="SwapItem" SourceList="lbMSElist" TargetList="lbMSEall"
ImageURL="Images\BlueArrow_Left_32.png" DisplayType="Image" />
                                     </tr>
                                      </table>
                                  </td>
                                   <td>
                                     <ELB:EasyListBox ID="lbMSElist"
runat="server" DisplayMode="ListBox" Height="80px" Width="100px"
IsSwaptarget="True" SwapColumns="1" Font-Size="Small" />
                                  </td>
                             </tr>
                         </table>
                      </asp:Panel>
                     </div>
                     <asp:Button ID="Button2" runat="server" Text="Prev"
OnClientClick="javascript:return OpenPane(0)" UseSubmitBehavior="true" />
                     <asp:Button ID="Button1" runat="server" Text="Next"
OnClientClick="javascript:return OpenPane(2)" UseSubmitBehavior="true" />
               </Content>
               </cc1:AccordionPane>
               <cc1:AccordionPane ID="AccordionPane2" runat="server"
BorderStyle="Outset">
                 <Header>
                   UIC
                 </Header>
                 <Content>
                 SELECT UIC HERE<br />
                 </Content>
               </cc1:AccordionPane>
               <cc1:AccordionPane ID="AccordionPane3" runat="server"
BorderStyle="Groove">
                 <Header>
                     TAMCN Status
                 </Header>
                 <Content>
                 SELECT TAMCN Status ERE<br />
                 </Content>
               </cc1:AccordionPane>
                         <cc1:AccordionPane ID="AccordionPane4" runat="server"
BorderStyle="Ridge">
                 <Header>
                         MARES Reportable
                 </Header>
                 <Content>
                 SELECT MARES Reportable HERE<br />
                 </Content>
               </cc1:AccordionPane>
               <cc1:AccordionPane ID="AccordionPane5" runat="server">
                 <Header>
                  TAMCN
                 </Header>
                 <Content>

                     <table cellspacing="0" style="width: 20%">
                         <tr>
                             <asp:Label ID="lblUser" runat="server" Text="TAMCN
Filter:  " Font-Names="Tahoma" Width="120px"></asp:Label>
                         </tr>
                         <tr style="vertical-align: middle;">
                             <td>
                                 <asp:ListBox ID="lbTAMCNlist" runat="server"
AppendDataBoundItems="true" SelectionMode="Multiple"  Width="100"
AutoPostBack="false" EnableViewState="true" Rows="6">
                                 </asp:ListBox>
                             </td>
                             <td>
                                 <table cellspacing="0" style="width: 20%">

                                 <tr>
                             <asp:ImageButton ID="btnTAMCN" runat="server"
Width="32" ImageUrl="Images\arrowRight.gif"></asp:ImageButton>
                                     </tr>
                                     <tr>
                             <asp:ImageButton ID="btnTAMCNdel" runat="server"
Width="32" ImageUrl="Images\arrowLeft.gif"></asp:ImageButton>
                                     </tr>
                                  </table>
                              </td>
                               <td>
                              <asp:ListBox ID="lbTAMCNselect" runat="server"
Width="100" Rows="6"></asp:ListBox>

                              </td>
                         </tr>
                     </table>

                  </Content>
               </cc1:AccordionPane>
           </Panes>
         </cc1:Accordion>
         <asp:Button ID="btnSubmit" runat="server" Text="Submit"
OnClientClick="javascript:return mscVisible()" />
</asp:Content>

#1731 From: Peter Brunone <peter.brunone@...>
Date: Fri Nov 13, 2009 2:54 pm
Subject: Re: Re: ELB doesn't display correctly if hidden at page load
peter_brunone
Offline Offline
Send Email Send Email
 
Hmmm... the one question that comes to mind would be "are you sure that 'lbMSEall' is the actual client ID of that EasyListBox?"

As for the first approach, I'd have to see your code to know what might be going wrong there.

Peter

On Fri, Nov 13, 2009 at 8:46 AM, ffxhokie2002 <no_reply@yahoogroups.com> wrote:
 

Peter,

Forgive me if I am beating a dead horse or should just beat my own head against the wall. I am trying to add ELB_HideList() or ELB_ShowList() to an onclick event of a button, and it says its not a member of ASP.ReportButton_aspx. I tried to run it in an actual javascript block and it couldn't run it there either. In the javascript below it says "Object Expected". I even tried putting a line of script in like your demo <script language="JavaScript" type="text/javascript" src="/ELBscriptIE56.js?v=3.5.1696"></script> but changed the js file to ELBscriptAdvanced.js and that didnt work either.

<script type="text/javascript">
function mseVisible(targetDiv) {
var tempDiv = document.getElementById(targetDiv);

if (tempDiv.style.visibility == 'hidden') {
tempDiv.style.visibility = 'visible';
if (targetDiv == 'mseWrapper') {
ELB_ShowList('lbMSEall');
}
}
} else {
tempDiv.style.visibility = 'hidden';
if (targetDiv == 'mseWrapper') {
ELB_HideList('lbMSEall');
}
}
return false;
}
</script>



#1730 From: ffxhokie2002
Date: Fri Nov 13, 2009 2:46 pm
Subject: Re: ELB doesn't display correctly if hidden at page load
ffxhokie2002
Offline Offline
 
Peter,

    Forgive me if I am beating a dead horse or should just beat my own head
against the wall.   I am trying to add ELB_HideList() or ELB_ShowList() to an
onclick event of a button, and it says its not a member of
ASP.ReportButton_aspx.   I tried to run it in an actual javascript block and it
couldn't run it there either.  In the javascript below it says "Object
Expected".   I even tried putting a line of script in like your demo <script
language="JavaScript" type="text/javascript"
src="/ELBscriptIE56.js?v=3.5.1696"></script> but changed the js file to
ELBscriptAdvanced.js and that didnt work either.

<script type="text/javascript">
             function mseVisible(targetDiv) {
                 var tempDiv = document.getElementById(targetDiv);

                 if (tempDiv.style.visibility == 'hidden') {
                     tempDiv.style.visibility = 'visible';
                     if (targetDiv == 'mseWrapper') {
                         ELB_ShowList('lbMSEall');
                     }
                     }
                 } else {
                     tempDiv.style.visibility = 'hidden';
                     if (targetDiv == 'mseWrapper') {
                         ELB_HideList('lbMSEall');
                     }
                 }
                 return false;
             }
         </script>

#1729 From: "moe_sb" <moe_sb@...>
Date: Fri Nov 13, 2009 1:59 pm
Subject: ShowColumnHeaders
moe_sb
Offline Offline
Send Email Send Email
 
Hello Guys,

I want to show the ShowColumnHeaders of the Multi Coulmns EasyList box. How can
I do this ?

I tried ShowColumnHeaders="true" and it is giving wired results.

Appreciate your help.
Regards,

#1728 From: ffxhokie2002
Date: Thu Nov 12, 2009 3:52 pm
Subject: Re: ELB doesn't display correctly if hidden at page load
ffxhokie2002
Offline Offline
 
Peter,

    Great thanks!  Yeah I already made smaller versions of the images I want.  
Didn't know about the show/hidelist functions, I'll try them out.

John

--- In EasyListBox@yahoogroups.com, "Peter Brunone (EasyListBox.com)"
<peter@...> wrote:
>
> Hi John,
>
>     You can use the client-side ELB_HideList and ELB_ShowList functions to
> hide and show, respectively.
>
>     Let me look at the ActionButton issue.  You should be able to assign
> CSS attributes to control the dimensions of the button; usually, though,
> it's advisable to use an image that is the correct size to avoid extra
> latency or distortion.
>
> Cheers,
>
> Peter
>
> ----------------------------------------
>
> From: "ffxhokie2002" <no_reply@yahoogroups.com>
> Sent: Tuesday, November 10, 2009 4:30 PM
> To: EasyListBox@yahoogroups.com
> Subject: [EasyListBox] Re: ELB doesn't display correctly if hidden at page
> load
>
>
>
> Peter,
>
> Ok I found out there was a configuration path issue on my machine. It does
> display correctly, but there are still a few problems. A standard listbox
> can be made invisible by putting it inside of a DIV statement and setting
> the style="visibility: hidden" command, and then toggled client-side using
> java script. EasyListBox does not turn invisible using this style. If I use
> the visibility=false then it isnt sent to the page at all and would require
> a complete page reload to turn visible again.
>
> The ActionButton object cannot be re-sized when an image is used. At least
> not inside of an ajax container. If I use a 64x64 .png, and set the
> height/width to 32, it still shows in 64x64. Re-sizing does work with a
> standard imagebutton in ASPX.
>

#1727 From: "Peter Brunone (EasyListBox.com)" <peter@...>
Date: Wed Nov 11, 2009 4:34 pm
Subject: re: Re: ELB doesn't display correctly if hidden at page load
peter@...
Send Email Send Email
 
Hi John,

    You can use the client-side ELB_HideList and ELB_ShowList functions to hide and show, respectively.

    Let me look at the ActionButton issue.  You should be able to assign CSS attributes to control the dimensions of the button; usually, though, it's advisable to use an image that is the correct size to avoid extra latency or distortion.

Cheers,

Peter


From: "ffxhokie2002" <no_reply@yahoogroups.com>
Sent: Tuesday, November 10, 2009 4:30 PM
To: EasyListBox@yahoogroups.com
Subject: [EasyListBox] Re: ELB doesn't display correctly if hidden at page load


 

Peter,

Ok I found out there was a configuration path issue on my machine. It does display correctly, but there are still a few problems. A standard listbox can be made invisible by putting it inside of a DIV statement and setting the style="visibility: hidden" command, and then toggled client-side using java script. EasyListBox does not turn invisible using this style. If I use the visibility=false then it isnt sent to the page at all and would require a complete page reload to turn visible again.

The ActionButton object cannot be re-sized when an image is used. At least not inside of an ajax container. If I use a 64x64 .png, and set the height/width to 32, it still shows in 64x64. Re-sizing does work with a standard imagebutton in ASPX.


#1726 From: ffxhokie2002
Date: Tue Nov 10, 2009 7:43 pm
Subject: Re: ELB doesn't display correctly if hidden at page load
ffxhokie2002
Offline Offline
 
Peter,

    No there are no javascript errors on the page at all.  It just simply
displays with the same problems as it did in the previous problem under a normal
ASPX container. That fix didn't seem to work for Ajax containers.   Though if it
is visible in the beginning the formatting does work right, just that the rest
of the ajax page doesnt render if that is the case.  So either the Ajax page
breaks or the easylistbox breaks depending on if it's in the first displayed
accordion pane or in any other accordion pane.

John

--- In EasyListBox@yahoogroups.com, Peter Brunone <peter.brunone@...> wrote:
>
> Hi John,
>
>     Are there any visible JS errors on the page?  If so, a screenshot or
> copy of the error text would be great to have.
>
> Thanks,
>
> Peter
>
> On Tue, Nov 10, 2009 at 11:10 AM, ffxhokie2002
<no_reply@yahoogroups.com>wrote:
>
> >
> >
> > Peter,
> >
> > I'm again having more issues with ELB, inside of a container, if that
> > container is AJAX. It will display correctly in the first accordion pane if
> > it is visible, but then the rest of the accordion panes break completely.
> > They dont even show up. Or if it is in the second pane, and not displayed on
> > load, all of the accordion panes show up, but then the ELB components
> > (EasyListBox AND ActionButton) have basically a width of the scrollbar and
> > cannot be adjusted. So now its the same type of issue except for AJAX
> > containers.
> >
> > John
> >
> >
> > --- In EasyListBox@yahoogroups.com <EasyListBox%40yahoogroups.com>, "Peter
> > Brunone (EasyListBox.com)" <peter@> wrote:
> > >
> > > Allrighty then! This has been fixed in the JS file, which you can
> > download
> > > at the following link (which should look familiar):
> > >
> > > http://easylistbox.com/downloads/ELBScriptAdvanced.zip
> > >
> > > Thanks for your help in tracking this down.
> > >
> > > Cheers,
> > >
> > > Peter
> > >
> > > ----------------------------------------
> > >
> > > From: "ffxhokie2002" <no_reply@yahoogroups.com<no_reply%40yahoogroups.com>
> > >
> > > Sent: Tuesday, October 27, 2009 2:57 PM
> > > To: EasyListBox@yahoogroups.com <EasyListBox%40yahoogroups.com>
> > > Subject: [EasyListBox] Re: ELB doesn't display correctly if hidden at
> > page
> > > load
> > >
> > >
> > >
> > > Peter,
> > >
> > > I've tried a few other controls with similar view types that hide the ELB
> >
> > > on initial render and it resulted in the same issue. Found anything on
> > your
> > > end yet?
> > >
> > > John
> > >
> > > --- In EasyListBox@yahoogroups.com <EasyListBox%40yahoogroups.com>,
> > Peter Brunone <peter.brunone@>
> > > wrote:
> > > >
> > > > I understand that; I was just trying to deal with the problem that most
> > > > likely had an easy fix. Obviously there's still more effort required on
> >
> > > the
> > > > formatting issue.
> >
>

#1725 From: ffxhokie2002
Date: Tue Nov 10, 2009 8:26 pm
Subject: Re: ELB doesn't display correctly if hidden at page load
ffxhokie2002
Offline Offline
 
Peter,

   Ok I found out there was a configuration path issue on my machine.  It does
display correctly, but there are still a few problems.   A standard listbox can
be made invisible by putting it inside of a DIV statement and setting the
style="visibility: hidden" command, and then toggled client-side using java
script.   EasyListBox does not turn invisible using this style.   If I use the
visibility=false then it isnt sent to the page at all and would require a
complete page reload to turn visible again.

The ActionButton object cannot be re-sized when an image is used.  At least not
inside of an ajax container.   If I use a 64x64 .png, and set the height/width
to 32, it still shows in 64x64.   Re-sizing does work with a standard
imagebutton in ASPX.

#1724 From: Peter Brunone <peter.brunone@...>
Date: Tue Nov 10, 2009 5:19 pm
Subject: Re: Re: ELB doesn't display correctly if hidden at page load
peter_brunone
Offline Offline
Send Email Send Email
 
Hi John,

    Are there any visible JS errors on the page?  If so, a screenshot or copy of the error text would be great to have.

Thanks,

Peter

On Tue, Nov 10, 2009 at 11:10 AM, ffxhokie2002 <no_reply@yahoogroups.com> wrote:
 

Peter,

I'm again having more issues with ELB, inside of a container, if that container is AJAX. It will display correctly in the first accordion pane if it is visible, but then the rest of the accordion panes break completely. They dont even show up. Or if it is in the second pane, and not displayed on load, all of the accordion panes show up, but then the ELB components (EasyListBox AND ActionButton) have basically a width of the scrollbar and cannot be adjusted. So now its the same type of issue except for AJAX containers.

John



--- In EasyListBox@yahoogroups.com, "Peter Brunone (EasyListBox.com)" <peter@...> wrote:
>
> Allrighty then! This has been fixed in the JS file, which you can download
> at the following link (which should look familiar):
>
> http://easylistbox.com/downloads/ELBScriptAdvanced.zip
>
> Thanks for your help in tracking this down.
>
> Cheers,
>
> Peter
>
> ----------------------------------------
>
> From: "ffxhokie2002" <no_reply@yahoogroups.com>
> Sent: Tuesday, October 27, 2009 2:57 PM
> To: EasyListBox@yahoogroups.com
> Subject: [EasyListBox] Re: ELB doesn't display correctly if hidden at page
> load
>
>
>
> Peter,
>
> I've tried a few other controls with similar view types that hide the ELB
> on initial render and it resulted in the same issue. Found anything on your
> end yet?
>
> John
>
> --- In EasyListBox@yahoogroups.com, Peter Brunone <peter.brunone@>
> wrote:
> >
> > I understand that; I was just trying to deal with the problem that most
> > likely had an easy fix. Obviously there's still more effort required on
> the
> > formatting issue.


#1723 From: ffxhokie2002
Date: Tue Nov 10, 2009 5:10 pm
Subject: Re: ELB doesn't display correctly if hidden at page load
ffxhokie2002
Offline Offline
 
Peter,

    I'm again having more issues with ELB, inside of a container, if that
container is AJAX.   It will display correctly in the first accordion pane if it
is visible, but then the rest of the accordion panes break completely.  They
dont even show up.   Or if it is in the second pane, and not displayed on load,
all of the accordion panes show up, but then the ELB components (EasyListBox AND
ActionButton) have basically a width of the scrollbar and cannot be adjusted. 
So now its the same type of issue except for AJAX containers.

John

--- In EasyListBox@yahoogroups.com, "Peter Brunone (EasyListBox.com)"
<peter@...> wrote:
>
> Allrighty then!  This has been fixed in the JS file, which you can download
> at the following link (which should look familiar):
>
> http://easylistbox.com/downloads/ELBScriptAdvanced.zip
>
> Thanks for your help in tracking this down.
>
> Cheers,
>
> Peter
>
> ----------------------------------------
>
> From: "ffxhokie2002" <no_reply@yahoogroups.com>
> Sent: Tuesday, October 27, 2009 2:57 PM
> To: EasyListBox@yahoogroups.com
> Subject: [EasyListBox] Re: ELB doesn't display correctly if hidden at page
> load
>
>
>
> Peter,
>
> I've tried a few other controls with similar view types that hide the ELB
> on initial render and it resulted in the same issue. Found anything on your
> end yet?
>
> John
>
> --- In EasyListBox@yahoogroups.com, Peter Brunone <peter.brunone@>
> wrote:
> >
> > I understand that; I was just trying to deal with the problem that most
> > likely had an easy fix. Obviously there's still more effort required on
> the
> > formatting issue.
> .
>

#1722 From: ffxhokie2002
Date: Fri Oct 30, 2009 5:02 pm
Subject: Re: ELB doesn't display correctly if hidden at page load
ffxhokie2002
Offline Offline
 
Awesome!  Thank you for the quick response Peter!

--- In EasyListBox@yahoogroups.com, "Peter Brunone (EasyListBox.com)"
<peter@...> wrote:
>
> Allrighty then!  This has been fixed in the JS file, which you can download
> at the following link (which should look familiar):
>
> http://easylistbox.com/downloads/ELBScriptAdvanced.zip
>
> Thanks for your help in tracking this down.
>
> Cheers,
>
> Peter
>
> ----------------------------------------
>
> From: "ffxhokie2002" <no_reply@yahoogroups.com>
> Sent: Tuesday, October 27, 2009 2:57 PM
> To: EasyListBox@yahoogroups.com
> Subject: [EasyListBox] Re: ELB doesn't display correctly if hidden at page
> load
>
>
>
> Peter,
>
> I've tried a few other controls with similar view types that hide the ELB
> on initial render and it resulted in the same issue. Found anything on your
> end yet?
>
> John
>
> --- In EasyListBox@yahoogroups.com, Peter Brunone <peter.brunone@>
> wrote:
> >
> > I understand that; I was just trying to deal with the problem that most
> > likely had an easy fix. Obviously there's still more effort required on
> the
> > formatting issue.
> .
>

#1721 From: "Peter Brunone (EasyListBox.com)" <peter@...>
Date: Fri Oct 30, 2009 12:02 am
Subject: re: Re: ELB doesn't display correctly if hidden at page load
peter@...
Send Email Send Email
 
Allrighty then!  This has been fixed in the JS file, which you can download at the following link (which should look familiar):

http://easylistbox.com/downloads/ELBScriptAdvanced.zip

Thanks for your help in tracking this down.

Cheers,

Peter
From: "ffxhokie2002" <no_reply@yahoogroups.com>
Sent: Tuesday, October 27, 2009 2:57 PM
To: EasyListBox@yahoogroups.com
Subject: [EasyListBox] Re: ELB doesn't display correctly if hidden at page load


 

Peter,

I've tried a few other controls with similar view types that hide the ELB on initial render and it resulted in the same issue. Found anything on your end yet?

John

--- In EasyListBox@yahoogroups.com, Peter Brunone <peter.brunone@...> wrote:
>
> I understand that; I was just trying to deal with the problem that most
> likely had an easy fix. Obviously there's still more effort required on the
> formatting issue.

.



#1720 From: "Peter Brunone (EasyListBox.com)" <peter@...>
Date: Thu Oct 29, 2009 4:00 am
Subject: re: Problem with DropListWidth
peter@...
Send Email Send Email
 
For Mike and anyone else who wants the fix right away:

http://easylistbox.com/downloads/ELBScriptAdvanced.zip

Cheers,

Peter


From: "Peter Brunone (EasyListBox.com)" <peter@...>
Sent: Wednesday, October 28, 2009 10:46 PM
To: EasyListBox@yahoogroups.com
Subject: re: [EasyListBox] Problem with DropListWidth


 

Hi Mike,

    Sorry about the delay.  I have a fix for you that should allow you to use DropListWidth properly.  Let me know offlist if you can accept attachments and I'll send it to you (if the file won't get through I'll just post it somewhere).

Cheers,

Peter


From: "mike_zandvliet" <mike_zandvliet@hotmail.com>
Sent: Saturday, October 24, 2009 4:32 PM
To: EasyListBox@yahoogroups.com
Subject: [EasyListBox] Problem with DropListWidth


 

Hello,

I am having problems getting the DropListWidth property to work.

I am currently testing the 'EasyListBox 4.0 Trial (IE Enhanced)' version, using IE8. I want the drop down to be as wide, or wider than the control itself.

Here is a screenshot of the problem:
http://www.missioncontrol.co.nz/WidthProblem.gif

Here is the code I have at the moment:

<ELB:EasyListBox id="lstContact_Status_ID"
runat="server"
UseUniqueID="True"
Height="300px"
Width="200px"
DropListWidth="500px"
SelectionMode="multiple"
DisplayMode="DropDown"
ShowCheckBoxes="True"
ClipHead="true"
FloatSelections="true"
ListBorderStyle="Solid"
ButtonColor="#e0e0ef"
ArrowColor="steelblue"
Background="#f0f0f0"
TextColor="steelblue"
RollBGColor="steelblue"
RollTextColor="#f9f9ff"
>

<ListItem value="MA">Massachusetts</ListItem>
<ListItem value="NY">New York</ListItem>
<ListItem value="TX">Texas</ListItem>
<ListItem value="WY">Wyoming</ListItem>
</ELB:EasyListBox>

I hope you can help.

Thanks,
Mike

.



#1719 From: Peter Brunone <peter.brunone@...>
Date: Thu Oct 29, 2009 4:01 am
Subject: Re: Re: ELB doesn't display correctly if hidden at page load
peter_brunone
Offline Offline
Send Email Send Email
 
John,

    Thank you!  I appreciate your confidence.  There are a few balls in the air right now and this one is more like a flaming chainsaw; I'm hoping for resolution by tomorrow.

Peter

On Wed, Oct 28, 2009 at 10:57 AM, ffxhokie2002 <no_reply@yahoogroups.com> wrote:
 

Peter,

Great news! Can't wait, and thank you for looking into this so quickly. Our project placed an order for a licensed copy ;)

John



--- In EasyListBox@yahoogroups.com, "Peter Brunone (EasyListBox.com)" <peter@...> wrote:
>
> This is a tricky one, but I think I'm close. Stay tuned.
>
> ----------------------------------------
>
> From: "ffxhokie2002" <no_reply@yahoogroups.com>
> Sent: Tuesday, October 27, 2009 2:57 PM
> To: EasyListBox@yahoogroups.com
> Subject: [EasyListBox] Re: ELB doesn't display correctly if hidden at page
> load
>
>
>
> Peter,
>
> I've tried a few other controls with similar view types that hide the ELB
> on initial render and it resulted in the same issue. Found anything on your
> end yet?
>
> John
>
> --- In EasyListBox@yahoogroups.com, Peter Brunone <peter.brunone@>
> wrote:
> >
> > I understand that; I was just trying to deal with the problem that most
> > likely had an easy fix. Obviously there's still more effort required on
> the
> > formatting issue.


#1718 From: "Peter Brunone (EasyListBox.com)" <peter@...>
Date: Thu Oct 29, 2009 3:39 am
Subject: re: Problem with DropListWidth
peter@...
Send Email Send Email
 
Hi Mike,

    Sorry about the delay.  I have a fix for you that should allow you to use DropListWidth properly.  Let me know offlist if you can accept attachments and I'll send it to you (if the file won't get through I'll just post it somewhere).

Cheers,

Peter


From: "mike_zandvliet" <mike_zandvliet@...>
Sent: Saturday, October 24, 2009 4:32 PM
To: EasyListBox@yahoogroups.com
Subject: [EasyListBox] Problem with DropListWidth


 

Hello,

I am having problems getting the DropListWidth property to work.

I am currently testing the 'EasyListBox 4.0 Trial (IE Enhanced)' version, using IE8. I want the drop down to be as wide, or wider than the control itself.

Here is a screenshot of the problem:
http://www.missioncontrol.co.nz/WidthProblem.gif

Here is the code I have at the moment:

<ELB:EasyListBox id="lstContact_Status_ID"
runat="server"
UseUniqueID="True"
Height="300px"
Width="200px"
DropListWidth="500px"
SelectionMode="multiple"
DisplayMode="DropDown"
ShowCheckBoxes="True"
ClipHead="true"
FloatSelections="true"
ListBorderStyle="Solid"
ButtonColor="#e0e0ef"
ArrowColor="steelblue"
Background="#f0f0f0"
TextColor="steelblue"
RollBGColor="steelblue"
RollTextColor="#f9f9ff"
>

<ListItem value="MA">Massachusetts</ListItem>
<ListItem value="NY">New York</ListItem>
<ListItem value="TX">Texas</ListItem>
<ListItem value="WY">Wyoming</ListItem>
</ELB:EasyListBox>

I hope you can help.

Thanks,
Mike

.



#1717 From: ffxhokie2002
Date: Wed Oct 28, 2009 3:57 pm
Subject: Re: ELB doesn't display correctly if hidden at page load
ffxhokie2002
Offline Offline
 
Peter,

   Great news! Can't wait, and thank you for looking into this so quickly.  Our
project placed an order for a licensed copy ;)

John

--- In EasyListBox@yahoogroups.com, "Peter Brunone (EasyListBox.com)"
<peter@...> wrote:
>
> This is a tricky one, but I think I'm close.  Stay tuned.
>
> ----------------------------------------
>
> From: "ffxhokie2002" <no_reply@yahoogroups.com>
> Sent: Tuesday, October 27, 2009 2:57 PM
> To: EasyListBox@yahoogroups.com
> Subject: [EasyListBox] Re: ELB doesn't display correctly if hidden at page
> load
>
>
>
> Peter,
>
> I've tried a few other controls with similar view types that hide the ELB
> on initial render and it resulted in the same issue. Found anything on your
> end yet?
>
> John
>
> --- In EasyListBox@yahoogroups.com, Peter Brunone <peter.brunone@>
> wrote:
> >
> > I understand that; I was just trying to deal with the problem that most
> > likely had an easy fix. Obviously there's still more effort required on
> the
> > formatting issue.
> .
>

#1716 From: "Peter Brunone (EasyListBox.com)" <peter@...>
Date: Wed Oct 28, 2009 3:14 am
Subject: re: Re: ELB doesn't display correctly if hidden at page load
peter@...
Send Email Send Email
 
This is a tricky one, but I think I'm close.  Stay tuned.


From: "ffxhokie2002" <no_reply@yahoogroups.com>
Sent: Tuesday, October 27, 2009 2:57 PM
To: EasyListBox@yahoogroups.com
Subject: [EasyListBox] Re: ELB doesn't display correctly if hidden at page load


 

Peter,

I've tried a few other controls with similar view types that hide the ELB on initial render and it resulted in the same issue. Found anything on your end yet?

John

--- In EasyListBox@yahoogroups.com, Peter Brunone <peter.brunone@...> wrote:
>
> I understand that; I was just trying to deal with the problem that most
> likely had an easy fix. Obviously there's still more effort required on the
> formatting issue.

.



#1715 From: ffxhokie2002
Date: Mon Oct 26, 2009 2:10 pm
Subject: Re: ELB doesn't display correctly if hidden at page load
ffxhokie2002
Offline Offline
 
Peter,

    I've tried a few other controls with similar view types that hide the ELB on
initial render and it resulted in the same issue.  Found anything on your end
yet?

John

--- In EasyListBox@yahoogroups.com, Peter Brunone <peter.brunone@...> wrote:
>
> I understand that; I was just trying to deal with the problem that most
> likely had an easy fix.  Obviously there's still more effort required on the
> formatting issue.

#1714 From: "mike_zandvliet" <mike_zandvliet@...>
Date: Sat Oct 24, 2009 9:18 pm
Subject: Problem with DropListWidth
mike_zandvliet
Offline Offline
Send Email Send Email
 
Hello,

I am having problems getting the DropListWidth property to work.

I am currently testing the 'EasyListBox 4.0 Trial (IE Enhanced)' version, using
IE8. I want the drop down to be as wide, or wider than the control itself.

Here is a screenshot of the problem:
http://www.missioncontrol.co.nz/WidthProblem.gif

Here is the code I have at the moment:


         <ELB:EasyListBox id="lstContact_Status_ID"
             runat="server"
             UseUniqueID="True"
             Height="300px"
             Width="200px"
             DropListWidth="500px"
             SelectionMode="multiple"
             DisplayMode="DropDown"
             ShowCheckBoxes="True"
             ClipHead="true"
             FloatSelections="true"
             ListBorderStyle="Solid"
             ButtonColor="#e0e0ef"
             ArrowColor="steelblue"
             Background="#f0f0f0"
             TextColor="steelblue"
             RollBGColor="steelblue"
             RollTextColor="#f9f9ff"
             >

           <ListItem value="MA">Massachusetts</ListItem>
           <ListItem value="NY">New York</ListItem>
           <ListItem value="TX">Texas</ListItem>
           <ListItem value="WY">Wyoming</ListItem>
         </ELB:EasyListBox>


I hope you can help.

Thanks,
Mike

#1713 From: ffxhokie2002
Date: Wed Oct 21, 2009 7:07 pm
Subject: Re: EasyListBox example problems.
ffxhokie2002
Offline Offline
 
Peter,

    I responded to another thread about the ELB not loading correctly if it is
not displayed on the page load.   This is the problem I'm having in this Ajax
control.  Since I read his post, I decided to move my ELB into the first of 5
accordionPanes (the first is displayed on page load) and the ELB showed up
without problems, even if i changed panes and back.  However in any other pane
it does not load.

John

#1712 From: Peter Brunone <peter.brunone@...>
Date: Thu Oct 22, 2009 4:55 pm
Subject: Re: Re: ELB doesn't display correctly if hidden at page load
peter_brunone
Offline Offline
Send Email Send Email
 
I understand that; I was just trying to deal with the problem that most likely had an easy fix.  Obviously there's still more effort required on the formatting issue.


On Thu, Oct 22, 2009 at 11:50 AM, ffxhokie2002 <no_reply@yahoogroups.com> wrote:
 

Peter,

I haven't, but even if that worked, I'd still be stuck with how ELB isnt formatting itself properly. Unless I tried re-formatting it on page load.



--- In EasyListBox@yahoogroups.com, Peter Brunone <peter.brunone@...> wrote:
>
> Thanks, John; I'll take that into consideration. Have you tried a recursive
> FindControl function to get to the ELB? I've often found that necessary
> when dealing with these newfangled container controls.
>
> Peter
>
> On Thu, Oct 22, 2009 at 8:52 AM, ffxhokie2002 <no_reply@yahoogroups.com>wrote:
>
> >
> >
> > Peter,
> >
> > Understood. Looks like we were able to find something! It also looks like
> > if the ELB is in a place where it wont render on page load (say in the 2-5th
> > accordion tab) then the .vb code behind it has trouble finding the object as
> > well. Not sure how your ELB is constructed, but want to provide you with any
> > info that may help. That sample code I sent you should be a perfect way to
> > test it out. Put it in the first pane and it works, another pane it doesnt.
> >
> > John
> >

#1711 From: ffxhokie2002
Date: Thu Oct 22, 2009 4:50 pm
Subject: Re: ELB doesn't display correctly if hidden at page load
ffxhokie2002
Offline Offline
 
Peter,

   I haven't, but even if that worked, I'd still be stuck with how ELB isnt
formatting itself properly.   Unless I tried re-formatting it on page load.

--- In EasyListBox@yahoogroups.com, Peter Brunone <peter.brunone@...> wrote:
>
> Thanks, John; I'll take that into consideration.  Have you tried a recursive
> FindControl function to get to the ELB?  I've often found that necessary
> when dealing with these newfangled container controls.
>
> Peter
>
> On Thu, Oct 22, 2009 at 8:52 AM, ffxhokie2002 <no_reply@yahoogroups.com>wrote:
>
> >
> >
> > Peter,
> >
> > Understood. Looks like we were able to find something! It also looks like
> > if the ELB is in a place where it wont render on page load (say in the 2-5th
> > accordion tab) then the .vb code behind it has trouble finding the object as
> > well. Not sure how your ELB is constructed, but want to provide you with any
> > info that may help. That sample code I sent you should be a perfect way to
> > test it out. Put it in the first pane and it works, another pane it doesnt.
> >
> > John
> >
> >
> > --- In EasyListBox@yahoogroups.com <EasyListBox%40yahoogroups.com>, Peter
> > Brunone <peter.brunone@> wrote:
> > >
> > > Ah, so it sounds like we have a container element with a CSS attribute
> > > that's being inherited by a sub-element in the list.
> > >
> > > This may take some digging.
> > >
> > > On Wed, Oct 21, 2009 at 2:06 PM, ffxhokie2002
<no_reply@yahoogroups.com<no_reply%40yahoogroups.com>
> > >wrote:
> > >
> > > >
> > > >
> > > > Peter this is directly related to my problem with the Accordion object.
> > I
> > > > had the ELB in the 5th section (all 5 sections will have ELBs) but it
> > didnt
> > > > format properly. When i put it into the first section, which loads with
> > the
> > > > page, then the data shows up properly and the ELB has the proper
> > > > height/width
> > > >
> > > >
> > > > --- In EasyListBox@yahoogroups.com
<EasyListBox%40yahoogroups.com><EasyListBox%
> > 40yahoogroups.com>, Peter
> > > > Brunone <peter.brunone@> wrote:
> > > > >
> > > > > Hi Kevin,
> > > > >
> > > > > Just to be clear, are you saying that the list looks fine if this
> > same
> > > > > row/cell is visible when the page loads?
> > > > >
> > > > > Would it be possible to show the code you're using, just to have the
> > > > > right idea of what the markup and CSS looks like?
> > > > >
> > > > > Cheers,
> > > > >
> > > > > Peter
> > > > >
> > > > >
> > > > > On Fri, Apr 10, 2009 at 3:49 AM, kevinofarrell81 <kevin@>wrote:
> > > > >
> > > > > >
> > > > > >
> > > > > > Sorry if this has already been answered but brain dead yahoo search
> > > > doesn't
> > > > > > work on this group.
> > > > > >
> > > > > > I have an ELB thats contained in a cell (or row) thats hidden at
> > page
> > > > load
> > > > > > time. When I unhide or show the cell the ELB dropdown doesn't
> > display
> > > > > > correctly - the listitems are squashed over on the left.
> > > > > >
> > > > > > Any idea how to get around this?
> > > > > > thanks.
> >
>

#1710 From: Peter Brunone <peter.brunone@...>
Date: Thu Oct 22, 2009 4:23 pm
Subject: Re: Re: ELB doesn't display correctly if hidden at page load
peter_brunone
Offline Offline
Send Email Send Email
 
Thanks, John; I'll take that into consideration.  Have you tried a recursive FindControl function to get to the ELB?  I've often found that necessary when dealing with these newfangled container controls.

Peter

On Thu, Oct 22, 2009 at 8:52 AM, ffxhokie2002 <no_reply@yahoogroups.com> wrote:
 

Peter,

Understood. Looks like we were able to find something! It also looks like if the ELB is in a place where it wont render on page load (say in the 2-5th accordion tab) then the .vb code behind it has trouble finding the object as well. Not sure how your ELB is constructed, but want to provide you with any info that may help. That sample code I sent you should be a perfect way to test it out. Put it in the first pane and it works, another pane it doesnt.

John



--- In EasyListBox@yahoogroups.com, Peter Brunone <peter.brunone@...> wrote:
>
> Ah, so it sounds like we have a container element with a CSS attribute
> that's being inherited by a sub-element in the list.
>
> This may take some digging.
>
> On Wed, Oct 21, 2009 at 2:06 PM, ffxhokie2002 <no_reply@yahoogroups.com>wrote:
>
> >
> >
> > Peter this is directly related to my problem with the Accordion object. I
> > had the ELB in the 5th section (all 5 sections will have ELBs) but it didnt
> > format properly. When i put it into the first section, which loads with the
> > page, then the data shows up properly and the ELB has the proper
> > height/width
> >
> >
> > --- In EasyListBox@yahoogroups.com <EasyListBox%40yahoogroups.com>, Peter

> > Brunone <peter.brunone@> wrote:
> > >
> > > Hi Kevin,
> > >
> > > Just to be clear, are you saying that the list looks fine if this same
> > > row/cell is visible when the page loads?
> > >
> > > Would it be possible to show the code you're using, just to have the
> > > right idea of what the markup and CSS looks like?
> > >
> > > Cheers,
> > >
> > > Peter
> > >
> > >
> > > On Fri, Apr 10, 2009 at 3:49 AM, kevinofarrell81 <kevin@>wrote:
> > >
> > > >
> > > >
> > > > Sorry if this has already been answered but brain dead yahoo search
> > doesn't
> > > > work on this group.
> > > >
> > > > I have an ELB thats contained in a cell (or row) thats hidden at page
> > load
> > > > time. When I unhide or show the cell the ELB dropdown doesn't display
> > > > correctly - the listitems are squashed over on the left.
> > > >
> > > > Any idea how to get around this?
> > > > thanks.

#1709 From: ffxhokie2002
Date: Thu Oct 22, 2009 1:52 pm
Subject: Re: ELB doesn't display correctly if hidden at page load
ffxhokie2002
Offline Offline
 
Peter,

    Understood.  Looks like we were able to find something!  It also looks like
if the ELB is in a place where it wont render on page load (say in the 2-5th
accordion tab) then the .vb code behind it has trouble finding the object as
well.   Not sure how your ELB is constructed, but want to provide you with any
info that may help.   That sample code I sent you should be a perfect way to
test it out.   Put it in the first pane and it works, another pane it doesnt.

John

--- In EasyListBox@yahoogroups.com, Peter Brunone <peter.brunone@...> wrote:
>
> Ah, so it sounds like we have a container element with a CSS attribute
> that's being inherited by a sub-element in the list.
>
> This may take some digging.
>
> On Wed, Oct 21, 2009 at 2:06 PM, ffxhokie2002 <no_reply@yahoogroups.com>wrote:
>
> >
> >
> > Peter this is directly related to my problem with the Accordion object. I
> > had the ELB in the 5th section (all 5 sections will have ELBs) but it didnt
> > format properly. When i put it into the first section, which loads with the
> > page, then the data shows up properly and the ELB has the proper
> > height/width
> >
> >
> > --- In EasyListBox@yahoogroups.com <EasyListBox%40yahoogroups.com>, Peter
> > Brunone <peter.brunone@> wrote:
> > >
> > > Hi Kevin,
> > >
> > > Just to be clear, are you saying that the list looks fine if this same
> > > row/cell is visible when the page loads?
> > >
> > > Would it be possible to show the code you're using, just to have the
> > > right idea of what the markup and CSS looks like?
> > >
> > > Cheers,
> > >
> > > Peter
> > >
> > >
> > > On Fri, Apr 10, 2009 at 3:49 AM, kevinofarrell81 <kevin@>wrote:
> > >
> > > >
> > > >
> > > > Sorry if this has already been answered but brain dead yahoo search
> > doesn't
> > > > work on this group.
> > > >
> > > > I have an ELB thats contained in a cell (or row) thats hidden at page
> > load
> > > > time. When I unhide or show the cell the ELB dropdown doesn't display
> > > > correctly - the listitems are squashed over on the left.
> > > >
> > > > Any idea how to get around this?
> > > > thanks.
> >
>

#1708 From: Peter Brunone <peter.brunone@...>
Date: Wed Oct 21, 2009 7:36 pm
Subject: Re: Re: ELB doesn't display correctly if hidden at page load
peter_brunone
Offline Offline
Send Email Send Email
 
Ah, so it sounds like we have a container element with a CSS attribute that's being inherited by a sub-element in the list.

This may take some digging.

On Wed, Oct 21, 2009 at 2:06 PM, ffxhokie2002 <no_reply@yahoogroups.com> wrote:
 

Peter this is directly related to my problem with the Accordion object. I had the ELB in the 5th section (all 5 sections will have ELBs) but it didnt format properly. When i put it into the first section, which loads with the page, then the data shows up properly and the ELB has the proper height/width



--- In EasyListBox@yahoogroups.com, Peter Brunone <peter.brunone@...> wrote:
>
> Hi Kevin,
>
> Just to be clear, are you saying that the list looks fine if this same
> row/cell is visible when the page loads?
>
> Would it be possible to show the code you're using, just to have the
> right idea of what the markup and CSS looks like?
>
> Cheers,
>
> Peter
>
>
> On Fri, Apr 10, 2009 at 3:49 AM, kevinofarrell81 <kevin@...>wrote:

>
> >
> >
> > Sorry if this has already been answered but brain dead yahoo search doesn't
> > work on this group.
> >
> > I have an ELB thats contained in a cell (or row) thats hidden at page load
> > time. When I unhide or show the cell the ELB dropdown doesn't display
> > correctly - the listitems are squashed over on the left.
> >
> > Any idea how to get around this?
> > thanks.

Messages 1708 - 1737 of 1737   Newest  |  < Newer  |  Older >  |  Oldest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help