Hi!! I have a multi-row WebTab.
How can I disable this?? "At run time, a row with selected tab item is moved on client to appear closest to the content pane, so visual order of rows are not defined by their order in collection, but by currently selected tab."
I need the tabs to stay where they are, even if they are selected.
Thank you!!
Hello Nicole,
You could set the DisplayMode property of the WebTab do display single row, scrollable single row, multi row or multi row auto. Link to the official documentation You could set the property under WebTab like:
<ig:WebTab ID="WebTab1" runat="server" DisplayMode = "SingleRow " > <Tabs></Tabs> </ig:WebTab>
More detailed information regarding the WebTab and DysplayModes could be found at: http://help.infragistics.com/doc/ASPNET/2013.2/CLR4.0/?page=WebTab_Display_Modes.html
Please let me know how this works for you!
Yes, I know that property, but it doesn't solve my problem.
I need my tabs to be multi row, and even if I set it to MultiRowAuto or MultiRow, if I click on a tab that's on the upper row, all the row moves to the bottom, and I don't want that!! I don't think it has to do with the DisplayMode property.
Thank you.