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
395
Updating DataMenu In chrome issue
posted

Hi,

 

Hi,

I'm using WebDataMenu control (11.1.20111.1006)

When i update (change menu items) on serverside and update UpdatePanel where menu is placed data menu is not rendering correctly. Instead of horizontal, scrooling menu  i receive  items in rows, all visible and no slider (slider is missing). It seems that in chrome even after first loading i can see how the js script hides menu items, but after updating part of code is not firing probably.

 

Could you please have a look and check what is wrong here.

Control setup:

 

<asp:UpdatePanel UpdateMode="Conditional" runat="server" ChildrenAsTriggers="true" EnableViewState="false"  ID="TopMenuClustersUpdatePanel" >

            <ContentTemplate>

                <ig:WebDataMenu ID="TopMenuClusters" EnableScrolling="true" runat="server" MaxDataBindDepth="1" AutoPostBackFlags-ItemSelected="Off" ScrollingSpeed="VeryFast" EnableAjaxViewState="false" >

                    <ClientEvents Initialize="IE7ZIndexAdjust"  ItemUnhovered="removeSelected"  ItemSelected="clusterSelected"  />

                    <GroupSettings Orientation="Horizontal" Width="750px" Height="100%" EnableAnimation="true"

                        AnimationType="OpacityAnimation" AnimationDuration="200"  />

                    <DataBindings>

                        <ig:DataMenuItemBinding DataMember="Table" ToolTipField="Name" ValueField="ID" KeyField="ID" TextField="Code" Depth="1" />

                    </DataBindings>

 

                </ig:WebDataMenu>

            </ContentTemplate>

            <Triggers>

                <asp:AsyncPostBackTrigger ControlID="GroupsDropDown" EventName="SelectionChanged" />

            </Triggers>

        </asp:UpdatePanel>

 

Parents Reply Children