Is it possible to change dynamicaly VC table view size (width/heigth)?

Hi gurus!
So the question is: Is it possible to change dynamicaly Visual Composer table view size?
Particularly I'm interested in changing table-view height; the objective is not to use table-view paging option, instead to show all returned data rows at once.
Thanks in advance!
--- Kaspars

Hi Kaspars,
I would say there is atm no possibility to change the table view size dynamicly, because you can't input a formula into the size field so the size is fixed as you enter it.
Best Regards,
Marcel

Similar Messages

  • Is it possible to change already created book's size in Aperture 2?

    I've spent several days crafting 54-page 11"x8.5" book in Aperture.
    And was going to print in special photo lab.
    But unfortunately due to their requirements I need to bring the book
    in a different size/page proportion.
    Is it possible to change already created book's size in Aperture 2?

    You can choose to change Theme and then choose one you made yourself with other size and proportions (Custom Theme), but I would not recommend it since text you had placed in you book most likely would disappear. The same goes for custom layouts you made in your book. And finally, picture scalings and position adjustments you have made will be lost as well.
    Regards
    Paul K

  • Is it possible to change Overridden Qualified Table Name in code?

    Hi,
    Environment: Crystal Reports XI R2, 2008, Sql Server 2005
    I had about 1000 reports to change. Several changes are the standard, so i had created several tools that i use to make that change in all reports.
    However i can't find a way to change Overridden Qualified Table Name and remove the Catalog and Owner information, so it seems that the only way is using CR editor and make these changes one by one... not a good idea!
    Does anyone managed to do this???
    Thanks,
    Carlos Crespo

    Hi,
    <P>Thanks for your input.</P>
    <P>I use CR in two ways:<BR>
    a) to develop reports to use in our projects - In this case we don't have major issues with this, and we chance the location of the database in code at runtime;<BR>
    b) to develop reports to use in ERP softwares from third parties - and here we are having some issues - not always but some times.<BR>
    We know that they change the location of the DB in code also (no specific info however).<BR>
    <P>An example:<P>
    We change a report on my development PC, against a DB called TEST;<BR>
    We send the report to the customer, who runs it on its system, trying to read data from a db XYZ;<BR>
    If the customer also has a TEST db, in some reports the system reads some tables from XYZ, but others he gets the info from TEST db. In one example our customer has an invoice where all data was from the production DB, except the COUNTRY table that was read from a copy of the TEST db. After TEST was removed, the data was read from the production DB....<BR><BR>
    And to get you an idea: we're talking about hundreds of customers - some of them have 600 SQL DBs in the same server (small Dbs, around 70/500 MB in size) - so we can only hope that the user doesn't create a DB with the same name we used to develop the report...<BR><BR>
    And what i don't understand is WHY we can define Overridden Qualified Table Name  in same tables, and not in others.<BR><BR>
    Example:<BR><BR>
    One of the reports has 6 sub-reports. <BR>
    I can define Overridden Qualified Table Name  in the main report (except for a View), and in 2 of the subreports - but not in the other 4...<BR>
    The zero in front of the table name shows  a table where Overridden Qualified Table Name has been defined, and the original Catalog and Owner was removed - the 2 shows a table where Overridden Qualified Table Name has been defined, but the original catalog (PRITESTEDOC75) and owner (dbo) remains.<BR><BR>
    I even tried to export the sub-reports, change this info in the sub-report, and then import it again (a suggestion from Business Object support), but it doesn't work...<BR><BR>
    Main Report:<BR>
    Artigo     0     <BR>     
    CabecDoc     0     <BR>     
    LinhasDoc     0     <BR>     
    ModosExp     0          <BR>
    Clientes     0          <BR>
    CondPag     0          <BR>
    DocumentosVenda     0     <BR>     
    Moedas     0          <BR>
    MoradasAlternativasClientes     0     <BR>     
    OutrosTerceiros     0<BR>          
    ArtigoIdioma     0          <BR>
    Paises     0          <BR>
    ArtigoLote     0     <BR>     
    TDU_CC_INFODOCVND     0     <BR>     
    Clientes_Fac     0     <BR>     
    Paises_Fac     0          <BR>
    V_Entidades     2     PRITESTEDOC75     dbo        (V_Entidades is a View, not a Table)<BR><BR>
    Sub-Report 1:<BR>
    GCP_VND_CalculaTotaisDocumento     2     PRITESTEDOC75     dbo (GCP_VND_CalculaTotaisDocumento is a SP)<BR><BR>
    Sub-Report 2:<BR>
    CnfTabLigCBL     2     PRITESTEDOC75     dbo<BR><BR>
    Sub-Report 3:<BR>
    LinhasNumSerie     2     PRITESTEDOC75     dbo<BR><BR>
    Sub-Report 4:<BR>
    ResumoRetencao     0          <BR>
    Historico     0          <BR>
    OutrosTerceiros     0          <BR>
    EntidadesPublicas     0          <BR>
    Clientes     0          <BR><BR>
    Sub-Report 5:<BR>
    1 ResumoRetencao     0     <BR>     
    2 Historico     0          <BR>
    3 OutrosTerceiros     0          <BR>
    4 EntidadesPublicas     0     <BR>     
    5 Clientes     0     <BR><BR>
    Sub-Report 6:     <BR>
    1 ResumoIva     2     PRITESTEDOC75     dbo<BR>
    2 CabecDoc     2     PRITESTEDOC75     dbo<BR>
    3 Iva     2     PRITESTEDOC75     dbo<BR><BR>
    Best Regards,<BR><BR>
    Carlos Crespo<BR>

  • Changing LOV's  table-field size

    Hi,
    I'm using Jdeveloper 11g.
    Knowing that the tag below is used in LOV, Now I need to know how to change the LOV's table-field sizes? (I'm using the model-based LOV, and it's reading the attributes from the view object)
    <af:inputListOfValues
    model="#{bindings. .listOfValuesModel}"/>
    I need to customize the size of LOV's table-field manually, or based on the attribute's UI hint.
    To do so, I have written the code below in the backing-bean:
    RichInputListOfValues lov = (RichInputListOfValues)launchPopupEvent.getComponent();
    FacesCtrlLOVBinding.ListOfValuesModelImpl lovModel = null;
    lovModel = (FacesCtrlLOVBinding.ListOfValuesModelImpl) lov.getModel();
    TableModel tm = lovModel.getTableModel();
    java.util.List<oracle.adf.view.rich.model.ColumnDescriptor> l = lovModel.getItemDescriptors();
    But the "ColumnDescriptor" is an abstract class, and I cannot customize the size of the table.
    I need to know if it's possible to do it or not?
    Thanks in advance,
    Shadi Khani
    Thank you in advance,
    Shadi Khani
    Edited by: ShadiKhani on Aug 10, 2010 6:07 AM

    Hi ,
    i Know my answer is too late , just today i see the post .
    You can change content Size for LOV by going to look up view object --> then to attribute ---> UI hint ---> form UI hint but the size of component in "Dispaly width"

  • Is it possible to change the font and font-size in Richtooltip?

    Hiya,
    For "RichTooltip" I'd like to change the font and/or font-size is that possible?
    Is it possible to change the size of the tooltip box so that it is wider?
    Currently my tooltip looks quite ugly:
    I tried reading the help but I couldn't find a way to do this using the API for sap.ui.commons.RichTooltip
    Thanks in advance!

    Hi,
    you can use something like this for formatted text.
    <script>
                var oTextField = new sap.ui.commons.TextField({
                      valueState : sap.ui.core.ValueState.Error
                }).placeAt("content");
                var sHtml = "The rating specifies the trustworthiness of the account. You can choose between the following values:<br>";
                sHtml += "<ul>";
                sHtml += '<li><strong>A:</strong> <font color="blue", size ="2px" family="Helvetica">Highly trustworthy</font></li>';
                sHtml += "<li><strong>B:</strong> In generel trustworthy but some weak moments</li>";
                var oRttTextField = new sap.ui.commons.RichTooltip({
                      text : sHtml
                oTextField.setTooltip(oRttTextField);
                </script>
          </head>
          <body class="sapUiBody" role="application">
                <div id="content"></div>
          </body>
    Refer this link.
    RichTooltip - SAPUI5 Demo Kit
    Best Regards
    Dhananjay

  • Is it possible to change pernr of table VBPA using BAPI_SALESORDER_CHANGE ?

    Dear All,
    I want to change the Personal Number field of Table VBPA using BAPI BAPI_SALESORDER_CHANGE.
    I am trying, but its not working fine.
    Some one who has used the BAPI in same scenario, please come up.
    I think there is some problem in the parameters passed to the BAPI.
    Thanking You All.

    Dear Madhu,
    Thanks for replying,
    pernr field exists in "partnerchanges" tables parameter of the BAPI.
    In this tables parameter , the fields P_NUMB_NEW and P_NUMB_OLD exists for pernr.
    I think, I should properly pass value in UPDATEFLAG filed of the same paramter, but I do not know the exact value that I need to pass, I am passing 'X', but its not working.
    I am getting  FB call: insufficient parameters error in BAPI Return.

  • Elements 11 - is it possible to change default so can view folder tree ?

    Greetings
    I work in organiser (Elements 11) using the folder tree.  However have spent a long time trying to change the default so organiser automatically opens with folder tree.
    Presume this is possible, as it is a basic need for many ??
    Warm regards from sunny New Zealand !
    Jim

    Hi 1.99jon
    Unfortunately that is what I am basically doing except that in-between times I open image in the editor and do some editing.   Tried your suggestion (doing immediately)
    99jon wrote:
    Try clicking the yellow pins, then close Organizer. Then re-launch immediately and see if your settings stick.
    however it just opened again in the previous default view.  
    Thanks anyway for your suggestions.  Anything else I can try ?
    Jim

  • Is it possible to change the font style and size of the front panel title?

    Can you change the style and size of the Front Panel Window title?  I seem to have no luck.  I seem to be stuck with only 1 font/style.  I would like to use a superscript for 1 of the letters in the title.  Is this possible?  If it isn't this would be a nice feature to have in the future.  I am using LabVIEW 8.5.1.

    Things like the window title font is a function of Windows - not LV. You can change it globally, but not on a window by window basis.
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps

  • Is it possible to change the font name and size without having to compile?

    Dear All
    We have one requirement that we need to change the font name and font size at run time dynamically without having to compile all the forms in 6i.
    Is there any way or work around to achieve the same.Kindly suggest us.
    something like using uifont.ali or forms60_defaultfont, or set_item_property
    Thanks and Regards
    Thangaraj.

    Dear All,
    Thanks for your updates, Technically what both of you said is correct. but in application server we used something like ClientDPI to match the client server font with the application server, i need to know that is there anyother way something like this...?
    I have read one document(Note:28397.1 in metalink) saying that using uifont.ali file we can change the font at run time, but i have used this only for report
    Thanks and Regards
    Thangaraj.S

  • Is it possible to use Checkboxes with Table Views?

    Hi,
    I need help with adding checkbox. Here is the detail of what I have.
    In my application page, I have the Region Definition:
    Type - SQL Query (PL/SQL Function body Returning SQL Query)
    Region Source -
    DECLARE
    l_sql VARCHAR2(50);
    BEGIN
    Call Function_One(arg1, arg2 ..) ;
    IF ( :P11_REQ = Value1 ) THEN
    l_sql := ' SELECT Col1, Col2, Col3 FROM View1 ' ;
    ELSE
    l_sql := ' SELECT Col1, Col2, Col3 FROM View2 ' ;
    END IF;
    RETURN l_sql;
    END;
    Please note:
    1. ' View1 ' and ' View2 ' are views on two tables.
    2. The checkboxes are needed to select rows from these views to be inserted into another table for further processing.
    Questions:
    1. Can Checkboxes be added to views also, or, to tables only?
    2. If checkboxes can be added to views, How can I do that to each of the rows that will be returned?
    3. Is there a way to use ' Select * FROM View1 ', and be able to add the checkbox to each of the rows ?
    Would appreciate your help.
    Vasan

    Vasan,
    I usually call a plsql function to generate the HTML when I need a custom component like that. ie: create a procedure in a package. this should give you the idea. I usually create a dynamic plsql region to call the below procedure like this
    begin
    printTableWithCheckboxes();
    endl;
    procedure printTableWithCheckboxes is
    begin
    htp.p('<table>');
    for rec in (select id, name from test) loop
    htp.p('<tr>');
    htp.p('<td><input type="checkbox" name="' || rec.name || '" value="' || rec.id || '" /> </td>');
    htp.p('</tr>');
    end loop;
    end printTableWithCheckBoxes;

  • Lego mindstorms: Is it possible to change the fixed user interface size of 1024 x 800 to smaller for use with netbooks?

    I teach at a school that is using netbooks next
    year - the screen size is 1024 x 576 for one model and 1024 x 600 for another model and color quality is 32 bit.  To
    our dismay, when we loaded Lego Mindstorms software to test it, we
    discovered that the user interface is fixed at 1024 x 800, which means
    the control panel at the bottom of the screen is inaccessible on the
    netbooks.  Is there a way to change the  interface size so that we can
    use the software on netbooks?  This is a serious issue for us!  Thanks
    for any help.
    I posted this question in the LabView for Lego Enthusiasts forum, but noticed that nothing new has been posted by the moderator since 2007.  That's why I posted it in an active forum.  Thanks.
    Message Edited by mwert on 03-27-2009 11:33 AM
    Melissa J. Wert
    Technology Integration Specialist
    Harpeth Hall School
    Solved!
    Go to Solution.

    Hi All,
    To echo Dennis Knight and as a FYI for others I refer everyone to KnowledgeBase 44DF7BQ0 How Does National Instruments Support The LEGO® MINDSTORMS® NXT Software And ... 
    Joshua B.
    National Instruments
    NI Services
    NI Support Resources
    NI Training Resources

  • Discoverer Plus 10g Title & Table Viewing Size

    Is there a way to increase the screen resolution of the title and table area in Discoverer Plus 10g? The font size says 10pt, but on the screen it looks more like 4pt. I couldn't find any settings in Plus to change it. Thanks, Amy.

    Cause
    By default in Discoverer Plus 10.1.2 fonts are rendered smaller in Java
    than in other Windows applications.
    Already saved workbooks will not have any change in font and formats even if
    your default fonts are changed unless these workbooks are explicitly opened and
    modified for using new fonts. The cause for this behavior is that when
    workbooks are saved, font information is also along with it. This is very lengthy approach if you have over 1,000 upgraded workbooks.
    Solution
    To implement the solution, for existing/upgraded workbooks please execute the following steps:
    Set AdjustPlusFontSize = "True" in pref.txt file.
    This setting will make Discoverer Plus to display the font size correctly. It specifies whether Discoverer Plus Relational adjusts the font size to correct a discrepancy in the Java virtual machine, resulting in a smaller font size than other Windows applications.
    true = adjust font sizes
    false = do not adjust font sizes
    1.Navigate to <Discoverer Home>/discoverer/util directory.
    2.Edit pref.txt file and modify the setting as
    AdjustPlusFontSize = "true"
    under [Application] section
    3.Run the script applypreferences.sh
    https://metalink.oracle.com/metalink/plsql/f?p=130:14:3586351170204990307::::p14_database_id,p14_docid,p14_show_header,p14_show_help,p14_black_frame,p14_font:NOT,338117.1,1,1,1,helvetica
    Thanks, Jim Halverson

  • Editing scroll view frame size in IB causes table view to change

    I suppose this is a continuation of the problems I was having with the table view resizing: http://discussions.apple.com/thread.jspa?threadID=2618816&tstart=0.
    I have a controller which needs to have a scroll view with numerous elements attached to it, including a table view.
    I have performed the following steps:
    - Set the simulated interface elements of the owning view to a nav bar.
    - Added a scroll view to the main view in the nib file.
    - Set the file owner view controller subclass' view to the scroll view.
    - Set the contentSize of the scroll view to the desired size in viewDidLoad.
    The problem is that the table view size/position are incorrect when I load the view in the iPhone simulator if I change the scroll view's frame size from 320x460. Basically, every time the scroll view frame size is changed, it causes the scroll view position and size to change.
    However, there are times I want to make the scroll view's frame size bigger in order to edit items that might be offscreen when the application is first loaded, which becomes awkward if the size of the view in IB or in code without causing the table view size/position to change. I keep having to change the size of the scroll view frame, edit the items, change it back to 320x460, and then fix the table view.
    Is there a way around this, such as a way to locking the size of a table?

    Hi Kaspars,
    I would say there is atm no possibility to change the table view size dynamicly, because you can't input a formula into the size field so the size is fixed as you enter it.
    Best Regards,
    Marcel

  • Change of 'Totals table' for a Ledger.

    Hi,
    1. We are planning to do a prototype scenario on new GL by using SAP standard totals table FAGLFLEXT
    2. The same client will be used for final development by using custom developed totals table ex... ZZABCT
    Question: Is it possible to change the 'Totals table' for the Ledger while doing final development?
    Thanks in advance for help
    Purna

    Hi,
    ZZABCT seems to be a Special Ledger summary table, while FAGLFLEXT is obviously the new totals table for the (new) General Ledger, replacing the good old GLT0.
    Although newGL and FI-SL have something common in their concepts, there are enormous differences. You cannot do something in NewGL for prototyping and realize the same in FI-SL later, neither the opposite will work. NewGL and FI-SL may be run in parallel (for sure not a very common approach), for instance, if you have been used FI-SL and you do not want to give up your database not even after having migrated to newGL. But you cannot just switch between newGL and FI-SL.
    Perhaps I did not understand your exact requirement, but changing the totals table (ZZABCT) is not possible unless you delete and recreate the whole SL environment (table group) again.
    Hope that helps, points welcome
    Csaba

  • How to set image size in a table view

    Hi,
    I've just built a small VC application showing some process chain logs in a table view. For the different status types Error, Warning and Success I show the well-known traffic light icons. But up to now I haven't found out how to set the image size in a table view (height & width field is greyed out for the table). Any ideas? Or is it just not possible?
    Thanks for your help,
    Heiko

    Hello Heiko,
    I don't know, if it is possible, but I would say,
    it's not implemented yet. Maybe you can change the picture size and use then the pictures, that might be a workaround, if you can't change the height and width in VC.
    Best Regards,
    Marcel

Maybe you are looking for