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
130
Regarding ultraweblistbar
posted

Hi,

I have an issue regarding ultraweblistbar, I have two items in the listbar. When i click one item and i am on the corresponding page, i cannot click the same item on listbar again. Eg: when i Click on Create Document item and i reach the Create Document page, i am not able to click the item (Create Document) again, it is kind of disabled.

 Can anyone help me with this...

i would really appreciate the help.

 thanks in advance..

Parents
  • 28464
    posted

    Hello,

    I tried to setup a scenario similar to what you have, but unfortunately could not reproduce the problem. I am using the latest official release, 7.3 (with the latest hotfixes). Here is my setup - basically, a couple of pages, Default.aspx and Default2.aspx, both containing one UltraWebListBar instance. If I click on the second item (leading to Default2.aspx through the TargetUrl property), I am then successfully able to re-click the same second item any number of times. Here is my listbar declaration: 

     <iglbar:UltraWebListbar ID="UltraWebListbar1" runat="server" BorderWidth=""
            Height="200px" Width="124px">
            <Groups>
                <iglbar:Group Text="Group" TextAlign="Left">
                    <Labels Expanded="" Collapsed="" Selected="">
                    </Labels>
                    <Items>
                        <iglbar:Item TargetUrl="Default.aspx" Text="Item">
                            <Labels Selected="" />
                        </iglbar:Item>
                        <iglbar:Item TargetUrl="Default2.aspx" Text="Item">
                            <Labels Selected="" />
                        </iglbar:Item>
                    </Items>
                </iglbar:Group>
                <iglbar:Group Text="Group" TextAlign="Left">
                    <Labels Collapsed="" Expanded="" Selected="" />
                </iglbar:Group>
                <iglbar:Group Text="Group" TextAlign="Left">
                    <Labels Collapsed="" Expanded="" Selected="" />
                </iglbar:Group>
            </Groups>
        </iglbar:UltraWebListbar>

    Could you please try this and let me know if it works? Or maybe, there is something different in your setup, e.g. version used, AutoPostBack turned on, everything nested in UpdatePanels, etc?

Reply Children