Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Splitter > GETTING STARTED (Important information)
RadControls for ASP.NET are no longer supported (see this page for reference). In case you have inquiries about the Telerik ASP.NET AJAX controls, post them in the pertinent ASP.NET AJAX forums.

GETTING STARTED (Important information)

Feed from this thread
  • Valeri Hristov MVP avatar

    Posted on Oct 5, 2006 (permalink)

    Thank you for choosing r.a.d.splitter!

    Please, read the following information before writing in this forum. If you decide to post a support question here, please make sure you are adding as many information as possible: browser version, framework version, control version, steps to reproduce the problem, stack trace of the exception where applicable and source code if possible.

    If you are new to r.a.d.splitter we suggest reading the following help topics:

    • Overview - describes the splitter elements and their purpose. Contains screenshot, example and many cross-links to other important topics.
    • Defining RadSplitter structure:
    • Orientation - describes how to create horizontal or vertical splitters. If you need a splitter with both horizontal and vertical split bars check Nested  Splitters for an example.
    • Content Resizing - describes the most important properties of the control which define the resizing behavior of a splitter, such as resize mode, resize step, displaying scrollbars, locking panes, live resize, etc.
    • Collapsible Panes - describes the CollapseMode property, the behavior of the splitter when you set different values and how to make a pane to be collapsed by default.
    • External Content - describes how to put an external page into a pane.
    • Content Printing - describes how to use the client-side API to print the content of any pane.
    • Sliding Panes - outlines the most important information about the sliding panes which are great for simulating the Visual Studio user interface!
    • Persisting State - contains an example demonstrating how to persist the splitter state into the session. You can easily modify it for database or other medium. RadSplitter will persist its state automatically across postbacks.

    RadSplitter has the ability to fill its container automatically. Just set its Height to 100%. For more information and workarounds for the common problems, visit Height 100% (Fill container).

    The full list of features, browser and standards compatibility can be found in Features Overview.

    Visit our on-line examples for even more information and sample code!

    We hope you will enjoy using r.a.d.splitter!

    Best Regards,
    The r.a.d.splitter development team

  • japss avatar

    Posted on Aug 7, 2007 (permalink)

    Hi
    How can I disable the pop-up window that appears when you print the pane?  I have right and left pane and have "Print" link on left which prints the right pane content.

    Since my page that contains splitter itself a popup, I do not want display another popup window when the user clicks "Print"

    I use the below script from telerik for printing.

        function PrintPane (paneID)    {
          var splitter = <%= RadSplitter2.ClientID%>;
          var pane = splitter.GetPaneById(paneID);
          if (!pane) return;
          var cssFileAbsPath = '../BonusBuck/images/BonusBuck.css';
          var arrExtStylsheetFiles = [cssFileAbsPath];
          pane.Print(arrExtStylsheetFiles);
        }

  • Tsvetie Tsvetie admin's avatar

    Posted on Aug 9, 2007 (permalink)

    Hi japss,
    In this case, you cannot use the Print method of the RadPane object. However, you can use javascript to achieve the desired behavior - I prepared a simple project that demonstrates one possible approach - please find it attached.

    Sincerely yours,
    Tsvetie
    the Telerik team

    Instantly find answers to your questions at the new Telerik Support Center
    Attached files

  • japss avatar

    Posted on Dec 5, 2007 (permalink)

    Hi
    Is there a way to perform "Page Setup" like page size etc while printing the pane content?  When I try to print the pane content (with the PrintPane function shown above), rightmost data/text are cut from the hard-copy. 

  • Tsvetie Tsvetie admin's avatar

    Posted on Dec 6, 2007 (permalink)

    Hi japss,
    I am not quite sure I understand your problem - could you please prepare and send us a simple running project, demonstrating it? Please note that the custom print function I provided previously, uses the built-in Print command of the browser.

    I would additionally like to ask you not to ask technical questions in this forum topic as it is intended to point out important information for the RadSplitter to people who are interested in the control, rather than for discussions of concrete problems.

    All the best,
    Tsvetie
    the Telerik team

    Instantly find answers to your questions at the new Telerik Support Center

Back to Top

Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / ASP.NET > Splitter > GETTING STARTED (Important information)