Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1147
Not able to view first active group Items in UltraWebListbar
posted

Hi,

  Its strange thing, I was using 7.3 version of WebLIstbar then today I have upgraded it to 9.1 controls.

And what strange thing I found is take a weblistbar , add 2-3 groups , and some items in each group.

default active group is first.

Now run the project, at first instance it does not shows the first active group items, but if you toggle in groups at second it gets appear,

How this is happening, I know it may the issue only with me.

 <% @ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<%@ Register assembly="Infragistics35.Web.v9.1, Version=9.1.20091.1015, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" namespace="Infragistics.Web.UI.LayoutControls" tagprefix="ig" %>
<%@ Register assembly="Infragistics35.WebUI.UltraWebListbar.v9.1, Version=9.1.20091.1015, Culture=neutral, PublicKeyToken=7dd5c3163f2cd0cb" namespace="Infragistics.WebUI.UltraWebListbar" tagprefix="iglbar"
%>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns ="http://www.w3.org/1999/xhtml">
<head runat ="server">
<title></title >
<script type="text/javascript"> 

function
show()
{
var dialogWindow = $find('<%=WebDialogWindow1.ClientID%>'
);
dialogWindow.show();
}
</script >
</head>
<body>
<form id="form1" runat ="server">
<div>
<asp:Button ID="Button1" runat="server" onclick="Button1_Click" Text="Button" onclientclick="show();" />
</div >

<ig:WebDialogWindow ID="WebDialogWindow1" runat="server" Height="300px"
 InitialLocation="Centered" Modal="True" Width="400px" WindowState="Hidden"
 StyleSetName="Office2007Blue" MaintainLocationOnScroll="True"
 BorderColor="White" BorderWidth
="0px">
<ContentPane >
<Template> Hi
</Template >
</ContentPane>
</ig:WebDialogWindow >
 <asp:ScriptManager ID="ScriptManager1" runat ="server">
</asp:ScriptManager >

 <iglbar:UltraWebListbar ID="UltraWebListbar1" runat ="server" Height="200px" StyleSetName="Office2007Blue" Width= "124px"BorderWidth="1px"  Font-Size="11pt" >
<Groups >
<iglbar:Group Text="Group" TextAlign ="Left">
 
<Labels Expanded="" Collapsed="" Selected ="">
</Labels >
<Items >
<iglbar:Item Text ="Item">
<Labels Selected="" />
</iglbar:Item >
</Items >
</iglbar:Group >
<iglbar:Group Text="Group" TextAlign ="Left">
<Labels Collapsed="" Expanded="" Selected="" />
<Items >
<iglbar:Item Text ="Item">
<Labels Selected="" />
</iglbar:Item >
<iglbar:Item Text ="Item">
<Labels Selected="" />
</iglbar:Item >
</Items >
</iglbar:Group >
<iglbar:Group Text="Group" TextAlign ="Left">
<Labels Collapsed="" Expanded="" Selected="" />
<Items >
<iglbar:Item Text ="Item">
<Labels Selected="" />
</iglbar:Item >
<iglbar:Item Text ="Item">
<Labels Selected="" />
</iglbar:Item >
</Items >
</iglbar:Group >
</Groups >
<DefaultGroupStyle Height ="100%">
</DefaultGroupStyle >
</iglbar:UltraWebListbar >
</form >
</body > </html >

Please Help.

Thanks in advance.