What is the best way to display a Interactive Report having 20 columns

Hi,
I am having a Interactive Report having many columns (around 20).
What is the best way to display that report...by default we have to scroll it horizontally to see all the columns.
I want to avoid Horizontally Scrolling.
Thanks,
Deepak

Hello Deepak,
You mean apart from using a smaller font size or a bigger monitor?
You can think about combining / wrapping columns (so more data in one column).
Or hide some less important data and show that only on demand.
Greetings,
Roel
http://roelhartman.blogspot.com/
You can reward this reply by marking it as either Helpful or Correct ;-)

Similar Messages

  • What is the Best Way to Display a ClobDomain Field on a jspx Page?

    I have a ClobDomain field in my table that I need to display in my jspx form. What is the best way to go about this? I can't just drag and drop the field from my View and place it onto the form.
    Thanks.

    Apply a swap image behavior to the image. DO NOT ENABLE THE
    AUTOMATIC
    RESTORE.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "BillC-Bos" <[email protected]> wrote in
    message
    news:gp0utj$rmk$[email protected]..
    >I have what I imagine is a simple challenge but I after
    reviewing the forum
    >and
    > the DW workspace it seems that the technique I might try
    in GoLive are not
    > really the best way to go.
    >
    > I have a small graphic that when clicked should change
    to a different
    > graphic
    > to indivate that the site's visitor already clicked that
    graphic (which
    > links
    > to a detail page). There are many detail pages and the
    solution to
    > providing
    > navigation from one main page drastically limits the
    amount of information
    > provided on the "master" page making it necessary to
    provide some way to
    > indicate to the visitor that they already selected that
    option - so they
    > can
    > either avoid that link or return to it if they wish.
    >
    > So the "master" page will show an image (icon) that will
    change once the
    > visitor has clicked it. I am not sure how best to make
    this happen and can
    > use
    > some help or guidance. Thanks in advance for you help.
    Be well.
    >
    > Bill C
    >

  • What's the best way of displaying output in other VI ?

    For example, in a sub-vi I continuously acquire a motor position, and I want the position value to be displayed simultaneously in a numerical indicator or waveform in the main vi.
    I know there are lots of ways to implement this easily, but I just want to know what's the best way which use lest computer resources, say memory....
    Can control reference be used effectively for this?
    Thank you for your suggestion.
    Dejun

    here is an example (in LV7.0) of what Dennis is refering to.
    P.M.
    Putnam
    Certified LabVIEW Developer
    Senior Test Engineer
    Currently using LV 6.1-LabVIEW 2012, RT8.5
    LabVIEW Champion
    Attachments:
    ctrl reference folder.zip ‏7 KB

  • What is the best way to display text?

    Hi,
    I am developing a full screen presentation. I like to know which is the best way to display text with different styles and fonts.
    When i use JLabel, i have to use HTML. But the presentation is not good as it does not have anti-alias property. Also i want the background to be seen behind the text. Note that all the text in a paragraph is not of same style. I want some words to be in different color and style.
    Thanks,
    Mathan

    It works alos with JTextPane:
    Try this :
    import java.awt.*;
    import javax.swing.*;
    public class MyTextPane extends JTextPane  {
         public void paintComponent(Graphics g) {
              Graphics2D g2d = (Graphics2D)g;          
              g2d.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_ON);          
              super.paintComponent(g2d);
         public static void main(String[] args) {
              JFrame f = new JFrame("test");
              f.getContentPane().add(new JScrollPane(new MyTextPane()));
              f.setBounds(200,200,300,400);
              f.setVisible(true);
    }Denis

  • What is the best way to display errors to users when using JSPs?

              Hello,
              Could someone suggest me the best way to display errors to users when using JSPs?
              Many thanks in advance.
              Rino
              

              Thanks for the code snippet!
              Rino
              "Deepak Vohra" <[email protected]> wrote:
              >
              >
              >The 'errorPage' attribute of the 'page' directive forwards uncaught run-time
              >exceptions
              >to an error processing page. For example:
              >
              ><%@ page errorPage="error.jsp" %>
              >
              >redirects the browser to the JSP page error.jsp if an uncaught exception
              >is encountered.
              >
              >
              >Within error.jsp, indicate that it is an error-processing page, via the
              >directive:
              >
              >
              >
              ><%@ page isErrorPage="true" %>
              >
              >The Throwable object describing the exception may be accessed within
              >the error
              >page via the 'exception' implicit object.
              >
              >
              ><% if (exception != null) { %>
              ><p> An exception was thrown: <b> <%= exception %>
              >
              ><p> With the following stack trace:
              ><pre>
              >
              ><%
              > ByteArrayOutputStream ostr = new ByteArrayOutputStream();
              > exception.printStackTrace(new PrintStream(ostr));
              > out.print(ostr);
              >%>
              ></pre>
              >
              >
              >
              >"Rino Srivastava" <[email protected]> wrote:
              >>
              >>Hello,
              >>
              >>Could someone suggest me the best way to display errors to users when
              >>using JSPs?
              >>
              >>Many thanks in advance.
              >>
              >>Rino
              >
              

  • What is the best way to display image ??

    hi my questions is unusual, there are so many ways to display images.
    I m developing image processing s/w can any one suggest me which would be the best way to display image on which i can perform image operations.
    like in JPanel, icon, trhough paint() or anything else...
    thank you..In advance

    hi man... i think so imaging is better with JAI(Java Advanced Imaging) .... is perfect for display in jcomponent like JPanel or JLabel, you have to replace the paintComponent().
    import java.awt.Graphics;
    import java.awt.Graphics2D;
    import java.awt.Rectangle;
    import java.awt.geom.AffineTransform;
    import javax.media.jai.PlanarImage;
    import javax.swing.JComponent;
    class ImagePanel extends JComponent {
         protected PlanarImage image1;
         protected AffineTransform atx= new AffineTransform();
         protected int width, heigth;
         public ImagePanel() {
         public ImagePanel(PlanarImage i) {
              image1= i;
              width= i.getWidth();
              heigth= i.getHeight();
         public void paintComponent(Graphics gc) {
              Graphics2D g= (Graphics2D)gc;
              Rectangle rect= this.getBounds();
              if ((width != rect.width) || (heigth != rect.height)) {
                   double magx= rect.width / (double)width;
                   double magy= rect.height / (double)heigth;
                   atx.setToScale(magx, magy);
              if (image1 != null)
                   g.drawRenderedImage(image1, atx);
    if you need more info, ask about JAI api and docs

  • What is the best way to show/hide n number of columns ?

    Hi,
    I have a dynamic report that I have show/hide columns working using the below code. But when there are 500 or more rows it takes about a minute or more just waiting to see the columns toggle.
    What is the best way to do this?
    // Existing Javascript
    [script language="JavaScript" type="text/javascript"]
    var maxcnt= mymonths.length;
    function hideMaxEarn(){
    for(var j=0;j[maxcnt;j++){
    hideColumn('MON'+mymonths[j],'MAXCOL'+mymonths[j]);
    hideColumn('MON'+mymonths[j],'EARNCOL'+mymonths[j]);
    hideColumn('MON13','MAXCOL13');
    hideColumn('MON13','EARNCOL13');
    function showMaxEarn(){
    for(var j=0;j[maxcnt;j++){
    showColumn('MON'+mymonths[j],'MAXCOL'+mymonths[j]);
    showColumn('MON'+mymonths[j],'EARNCOL'+mymonths[j]);
    showColumn('MON13','MAXCOL13');
    showColumn('MON13','EARNCOL13');
    function getCellIndex(pRow,pCell){ 
    for(var i=0, n=pRow.cells.length;i[n;i++){ 
        if(pRow.cells[i] == pCell) return i;
    function hideColumn(pMon,pCol){
    var l_Cell = $x(pCol);
    var l_Table = html_CascadeUpTill(l_Cell,'TABLE');
    var l_Rows = l_Table.rows;
    l_CellI = getCellIndex(l_Cell.parentNode,l_Cell);
    for (var i=0, n=l_Rows.length;i[n;i++){
        if(i != 0) {
           html_HideElement(l_Rows[i].cells[l_CellI]);
    } else {
    $x(pMon).colSpan = $x(pMon).colSpan - 1;
    function showColumn(pMon,pCol){
    var l_Cell = $x(pCol);
    var l_Table = html_CascadeUpTill(l_Cell,'TABLE');
    var l_Rows = l_Table.rows;
    l_CellI = getCellIndex(l_Cell.parentNode,l_Cell);
    for (var i=0, n=l_Rows.length;i[n;i++){
        if(i != 0) {
           html_ShowElement(l_Rows[i].cells[l_CellI]);
    } else {
    $x(pMon).colSpan = 3;
    return;
    [script]

    Hi Andy,
    Yes, I replaced the code calling the same things in a loop to one loop getting the Table reference once and I build an array of column numbers at the time the report is built so I don't have to get the column number each time....
    it is a couple of seconds faster in about a 30 second response time. It will have to do it for now, no more time unless you see something in this new code...
    Thank you! Bill
    // dynamically built code
    col_nbr_array = new Array();
    col_nbr_array[0] = "1";
    col_nbr_array[1] = "2";
    col_nbr_array[2] = "4";
    col_nbr_array[3] = "5";
    col_nbr_array[4] = "7";
    col_nbr_array[5] = "8";
    col_nbr_array[6] = "10";
    col_nbr_array[7] = "11";
    col_nbr_array[8] = "13";
    col_nbr_array[9] = "14";
    col_nbr_array[10] = "16";
    col_nbr_array[11] = "17";
    col_nbr_array[12] = "19";
    col_nbr_array[13] = "20";
    col_nbr_array[14] = "22";
    col_nbr_array[15] = "23";
    col_nbr_array[16] = "25";
    col_nbr_array[17] = "26";
    col_nbr_array[18] = "28";
    col_nbr_array[19] = "29";
    col_nbr_array[20] = "31";
    col_nbr_array[21] = "32";
    col_nbr_array[22] = "34";
    col_nbr_array[23] = "35";
    col_nbr_array[24] = "37";
    col_nbr_array[25] = "38";
    col_nbr_array[26] = "40";
    col_nbr_array[27] = "41";
    // Static code
    function show_hide_column(do_show) {
    // Set Style, Show/Hide
    var stl;
    var csp;
    if (do_show){
    stl = 'block'
    csp = 3;
    }else{
    stl = 'none';     
    csp = 1;     
    // get rows object
    var l_Rows = document.getElementById('DT_RANGE').rows;
    var totCellNbr1=parseFloat(col_nbr_array[maxcnt-1])+2;
    var totCellNbr2=totCellNbr1 +1;
    var n=l_Rows.length;
    for (var i=0; i[n;i++){
        if(i != 0) { // if not the main header which spans 3 cols when expanded
          // Go through and show/hide each cell
          for(var j=0;j[maxcnt;j++){
              l_Rows[i].cells[col_nbr_array[j]].style.display = stl;
    // Totals
    l_Rows.cells[totCellNbr1].style.display=stl;
    l_Rows[i].cells[totCellNbr2].style.display=stl;
    } else { // row 1 that has Month spelled out - colspan of 3, others has max,earned and score columns for each month.
    var maxhdr = maxcnt/2;
    for(var k=1;k[=maxhdr;k=k+1){
    //alert('Header['+k+']');
    l_Rows[i].cells[k].colSpan=csp;
    // Total column
    //alert('TotHeader['+(maxhdr+1)+']');
    l_Rows[i].cells[maxhdr+1].colSpan=csp;
    [script]

  • Infoview - What's the best way to have Shortcuts to Reports?

    Our Infoview users create shortcuts to reports that are in the Public Folders area
    by selecting the check box next to the report and then selecting organise and add to my favourites.
    This is placing what we thought was a shortcut to the file in My Folders > Favourites
    The problem is that this is not creating a shortcut to the report but making a copy of it and placing in My Favourites area.
    When the original report is altered then the copy obviously is not and is causing issues.
    My question is what is the best way of just making a shortcut to the actual report and not a copy.
    I understand there is also a categories area that may be able to add shortcuts but donu2019t have much info on this.
    Is anyone able to let me know how this can be done and some steps in doing this?
    Thanks for your help.

    If it's CR, then change it under the CR Job server.  If it's webi then under the Adaptive Job server if in XI 3.1 or in XIR2 under Webi job server/destinations/inbox.

  • What is the best way to create a SSRS Report with Header Data and its associated child data

    So I have Member Information...Member ID...Member Addressing...etc.. I want to display this in the top part of the report like...
    Member Name:
    Member ID:
    Member Address Line 1:
    And then below I want to report on all the claims associated with a Member ID that is chosen by the Parameter. Obviously the Claim Data will be in Table format. Do I necessarily have to associate the Member Information with the Claim Information or simply
    use the same parameter? And what is the best Toolbox item to use to display the Member Information on top?
    Any help or guidance is greatly appreciated by this newbie.
    Thanks for your review and am hopeful for a reply.
    ITBobbyP

    Hi ITBobby,
    According to your description, you want to display all Claim Data for each Member. Right?
    In Reporting Services, we can use a table to display those Claim Data and make them group on Member ID. If you want to display the Member Information, we can put the data fields on parent group level. Then we can use create a parameter to filter the Member
    ID we need. We have tested this scenario in our local environment. Here are steps and screenshots for your reference:
    1. Create a DataSet(DataSet1) which contains the data fields of Member and Claim.
    2. Create a table and drag the Claim data into the table.
    3. In Row Group. Right click on Details and add a parent group.
    4. Select Member_ID in Group by.
    5. Right click on the textbox of Claim data. Select Insert Row->Outside of Group-Above. Drag the MemberName into the inserted row.
    6. In Report Data, right click on Parameter-> Add Parameter.
    7. Type Member_ID in Name and Prompt, select allow multiple values.
    8. In Available Values, select get data from a query. Choose DataSet1, select Member_ID in values and label. You can also set this in Default Values if you need.
    9. Save and preview.
    Reference:
    Understanding Groups (Report Builder and SSRS)
    Report Parameters (Report Builder and Report Designer)
    If you have any question, please feel free to ask.
    Best Regards,
    Simon Hou

  • What is the best way to create a interactive CD presentation

    I have the adobe cloud and all it's software, I am creating an interactive CD that is to be a presentation of my work. What would be the best way to go about creating a interactive CD with still's and video also some paragraph of bio and resume's.

    Macromedia Director http://www.adobe.com/products/director.html for mixed content
    -I do NOT know if a Macromedia disc will play a "movie" in a set top box at a TV

  • What's the best way to display my lightroom pictures onto my TV via Apple TV? i..e make a slide show

    This was done flawlessly with aperture but Apple doesn't like non-apple products so I was not sure if there was an easy way to do this?
    I want to choose pics from my various collections and see them on my tv using apple tv.  I would rather not COPY the pics to a new location since there are many many gigs of pics and they are all stored on my networked drive.  Anyone using a Mac and apple tv manage to figure out how to do this with Lightroom 5?

    Ok - see if I can do it 'the hard way' ....
    Hi Jeff,
    By "Output Only Folder”, I am suggesting a folder that you export to, via LR, and then never re-import it … it’s just a place to dump the images and since you can re-create them any time, you could delete it at will.
    Here’s the Export Dialogue I have setup from LR to iPhoto …. The optimal output dimensions are 1920 x 1080.  If you crop each image to that ratio, which is the same as 16 :: 9, then the images will fill the screen.  Otherwise just let one of the dimensions max out and the other will fall suit to 1920 or 1080 or lower as the case may be and it will map onto the Plasma at 1 :: 1 – so the Apple TV won’t have to scrunch it again.
    My  output dialog follows.  Note that it sets it up to go under Users/Jim/Caches/iPhoto Cache and then I setup a sub-folder name right underneath which I change (it’s Merc in this example).  So, this becomes the folder in iPhoto – and I can move that into an album or not as I wish.  See the iTunes screen shot a little further down.  The dimensions are setup to 1920 x 1080 at 100%.  The last section, under Post Processing, causes the folder to get read by iPhoto as soon as the Export finishes running and, voila, they are in iPhoto.  I can then clean iPhoto out when I wish.  Yes, it’s a duplicate – but these JPEG’s are smaller than the raws….maybe 300-400kb.
    (side note – the LR Mogrify section is a section you will NOT likely have – it’s merely a plugin I have that allows me to put some borders around output images, watermarks and so forth as the last step in the process – strictly optional but occasionally useful.  It’s not expensive – just google for it)
    Then here’s how it looks when it arrives a second or two later in iPhoto.  So, you can manage these into Albums, etc.  Then look to the bottom for the iTunes interaction.
    From the iTunes menu, select File | Home Sharing | Choose Photos to Share with Apple TV
    Then …..
    Note in the left panel, I have checked Last Import – where this photo was – but you could move/arrange the photos into new Albums and then they would show up and you could select them.  After you select then and Apply, turn on your Apple TV – and it may take a few minutes to sync up.  But then it’s done and you can choose Transitions and so forth on the ATV to nicely display them.
    Jim Camelford

  • What is the best way to display list of software titles for sale?

    I am a small retailer that would like to display a list of approximately 15-30 software titles in the most professional way (with prices).
    Can anyone recommend a layout that would serve this purpose, the ones in the template just don't seem to cut it.
    If anyone wants to email me an example, I'd really appreciate it.

    Probably your best bet would be to browse the websites or catalogs of other software stores to see what strikes you as professional, and use that as an inspiration to design your own.
    Also, there are many websites with additional iWork templates--here's one:
    http://www.iworkcommunity.com/
    and google turns up more.
    I can think of a few different ways to present a list of 15-30 software titles with prices (one column, two column, sub-categorized by maker, sub-categorized by function, sub-categorized by sale vs. regular price), but only you have the knowledge to know what system is most likely to appeal to your customers and match the overall graphic presentation of your store.

  • What's the best way to display color-coded telemetry?

    I have an array of up to 64 name-value pairs -- one for each sensor channel (thermocouple, pressure transducer, etc.).  I would simply use an array of clusters with the name and value, but I also want to be able to flag when a particular value goes out of limit.  I want to change the background color of the value to yellow or red depending on the value.  As I understand it, I cannot change the properties of individual items in an array.  :-(  So I'm forced to explicitly lay out 64 string and numeric indicators (even if I'm not using them all)!  Yuck.
    Surely I'm not the first LabView user who wants to color-code a telemetry array display!  Is there a better way to do this?  I've looked at the multicolumn list box but that seems to be aimed at allowing the user to select something from a list -- not strictly display things.  Besides, I don't see a way to change the colors of an individual cell for the listbox either.
    Please help!
    Keith.

    OK, I added defer panel updates and it did speed up the table and listbox significantly (down to around 3 ms) but still not as fast as the cluster array.  (BTW, replacing the active cell read with a constant had no effect.)  But here's what's weird: with the defer, the cluster array is incredibly slow -- around 7 ms!  Not sure what to make of this other than avoid property nodes at all costs -- even if it means using an ugly transparent indicator hack so I can change the BG color ...
    Attachments:
    Telemetry.vi ‏56 KB

  • What's the best way to display my iTunes Library?

    Hi All,
    I slways loved the idea that LP's. and to a lesser degree cd's, were something I loved to see displayed in my main room.  Flicking through my collection, seeing something I hadn't played in ages, but also having the cover art available to look at.  Not so easy having gone digital and being pressured to dispose of my CD's, I'd love to hear how people look through their collections, and have ways to visialise them on screens.

    Album view...

  • What is the best way to display different array values to appropriate indicators?

    I am using DAQmx Read vi and its output is an array. I need a way to pass each value to an appropriate front panel indicator, so I can monitor each sensor. I tried using "Index Array" and passing the array element to the indicators but it looks sloppy. Is there a more professional way? Thanks!
    Attachments:
    Mole.vi ‏215 KB

    Try using the Array to Cluster function in the Cluster subpallet. If you put all of your indicators in the same cluster on your front panel, you can then pass the array data to this function and then pass it directly to the cluster without having to index the array.
    criag

Maybe you are looking for

  • SQL Injection Attacks

    Any Admins aware of possible SQL "injection" attacks like this? For example in your web sites login.asp or similar: select * from users where uname='%value1%' and pwd='%value2%' where %value1% equals "garbage" and %value2% equals "garbage' or TRUE or

  • Manipulate the value of User Input Variable

    Dear BI fellows, I have a requirement to change the value that the user entered in variable screen (the variable type is a characteristic value variable, w/ processing by: user input), after the user clicks the execute button. I tried creating 2 char

  • HT1766 How do I resolve the error "iTunes cannot restore backup because there is not enough free space on iPod"?

    I have an iPod touch 4th generation 8gb and im having a time zone issue on it, so I just backed up and I want to restore from backup. When I try to restore from backup it tells me that there is not enough space on  my ipod to restore backup. I have 6

  • In-avtivate a tab

    Hello. In version 2.0 of ApEX, how does one in-activate a tab. I have an application page on which I've applied a parent tab along with 5 child tabs. When the page renders, the very first child tab is highlighted. How does one remove this highlightin

  • Creating data-driven graphics

    This question was posted in response to the following article: http://help.adobe.com/en_US/photoshop/cs/using/WSfd1234e1c4b69f30ea53e41001031ab64-7417a.h tml