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
170
Hide the right panel?
posted

I posted this in the wrong forum, which is probably why no one replied LOL. So I am trying again here, where it should have gone in the first place.

I want to be able to show/hide the panel of minimized tiles when I maximize a single tile so that I can give as much room as possible to the active tile. I find that the splitter control will only allow you to slide down to the width of a single column of tiles. Is there a way to make the splitter pull all the way to the right? Or a "hide/show" example for hiding/showing the tile panel? And please don't tell me to see the code for the Ignite UI menu sample. It is so full of extraneous stuff that I cannot make heads nor tails of how it works. A simplified ASP.MVC 4 Razor example would be great.

The only workaround I have found is this:

@(Html.Infragistics()

.TileManager()

.ID("dashboard")

.MinimizedState(".minimized")

.MaximizedState(".maximized")

.RightPanelTilesWidth("0px")

.Render()

)

For some reason, adding the RightPanelTilesWidth() property with some "px" value causes the minimized tiles to disappear until you click the minimize icon in the maximized window. It isn't ideal but it works. I would still prefer to be able to resize it or have a button or something to control this behavior.

Thanks,

Carl

Parents
  • 49378
    posted

    Hello Carl,

    Changing the width of the right panel is only possible when initializing the tile manager, therefore in this scenario toggling the right panel's visibility would require re-instantiating the widget. I am attaching an HTML sample illustrating how this can be achieved and will be working on illustrating the same scenario in MVC. Please do not hesitate to contact me with any updates or questions in the meantime. 

    ToggleRightPanelVisibility.zip
Reply Children