SDK - Possible to change Layout properties in design time?

Hi guys,
there are some layout properties you can change while you are in design time, top margin - left margin....
I want to change them e.g on button press in additional properties.
Is that possible?
What I found is this.owner.oComponentProperties.margintop, but nothing happened after I set it to another value.
best regards

Hi Juri,
If you simply want to provide the ability to change layout of standard or SDK components based on events such as a button click during run-time, this can be done with standard BIAL scripting as shown below:
In design-time, the layout properties can be changed via the Standard Properties sheet.  Can you clarify why you need to be able to change the standard layout properties in the Additional Properties sheet?
Regards,
Mustafa.

Similar Messages

  • Possible to change the properties in Explore Window of Workspace?

    Hi, this sounds almost like an impossible task but I'll give it a shot anyway.
    In Workspace, open the Explore window, as you right-click there is a list of properties that defines reports in the repository.
    from Priority, Exception, Version, Name, Owner, Created, etc......
    I was wondering if you can edit any of these elements in the list, specifically for "Owner". The reason is that "Owner" displays the last person (by User ID) who updates the report, rather than showing whom the report belongs to.
    So for instance, if you have 5 members in a group that has full powers to all reports, any of those 5 members could log in either as an Admin (with full powers) or his/her own user ID and make a change to the reports. The "Owner" column will show the person's name (or his/her user id) when he/she makes the change to reports. However, we still don't know which report is officially associated to or owned by which user since it is never addressed in a seperate vertical.
    Being able to add a new column or edit the existing column to redefine what "Owner" should mean and do would help us tremendously.
    Thanks for taking time reading.

    I don't think this is possible (without at least some back end table hacking), however you can use the Name and Description fields to add information on the group owner that you wish to see. There's normally at least one other way to present what you want with Hyperion ;-)
    For example, I have implemented several groupings in either the Description or Name field such as:
    "Finance - P&L by Channel"
    "Operations - P&L expanded"
    In general the difficulty in showing an owner group is that sometimes users below to several groups, so which group that the user is part of becomes the "owner"?
    Also in order to show the group you must be able to see that group, so not sure if there is some issue in seeing groups that users don't have access to?
    Hope this helps.
    Regards, Iain

  • Change Layout Web Application Designer

    Hello Gururs.
    Here's the question:
    I'm creating a Web Application Designer Template. When I execute it in the web, the variable screen has certain colors (kind of blue colors) the standard, but after inputing the variables when I click on Ok button, the display of the query is very mediocre, i.e., the standard, is representing the query in a table with the columns and rows in gray!
    I would like to change these colors, but I don't know how.
    I believe that in older versions you used to have an option in WAD of choosing the stylesheet (CSS), that now in the 7.0 version is unavailable.
    How can I change the layout presentation of the queries format in the WAD?
    Thank You,
    Diogo Ferreira.

    Hi Diogo,
    The table colors are from the EP settings.
    I often insert a line like this in the head of the template:
    <style type="text/css" >.urSTSHL2 { background-color:#CCDAF6 } .urSTSHL1 { background-color:#CCDAF6 }</style>
    It will overrule the standard CSS from the EP and it also works with IP queries.
    The alternative is to change the overall setting or change theme in the EP.
    Hope this helps.
    BR
    Stefan

  • Can't change DataTable properties the first time the table is loaded.

    Hi all!
    I just want to change dynamically the value of columClasses in my DataTable with dataTable1.setColumnClasses(mystylesheet). It works fine when i use any link or button on my page, but the first loaded, the dataTable never change. I put my code in the constructor, in the beforeRenderResponse(), in afterRenderResponse(), without success.
    Any idea ?

    Hi,
    Here are the steps I followed:
    1. Added the following lines in the stylesheet (created a new class)
    .column-appearance {
    background-color: cyan
    2. Dragged and dropped a datatable
    2. In the constructor of Page1.java added the following line of code
    dataTable1.setColumnClasses("column-appearance");
    3. Save and run the application
    4. The datatable is rendered with the columns having cyan as the background color
    Is it the same as what you are trying or having I missed out anything???
    Cheers
    Giri :-)
    Creator Team

  • Is it possible to change setting on a airport time capsule from windows? open ports etc.

    as above, need to know this. If this is not possible i can not buy it because that would mean I lock other users out of being able to configure ports and such.

    Thanks for your answer! Then i can only hope they upgrade the aiport utility software on windows so it works on current version. Until then no purchase for me:(

  • Is It Possible To Change The SMS Alert/Reminder Time Intervals From Two Minutes?

    I like the reminder so I do not wish to turn it off, but two minutes is kind of annoying. 5 or 10 minutes is more comforting for me. Anyone?

    Can you disable it entirely? I don't need to be reminded I received a text, I heard it the first time :S

  • Changing link properties between tables

    Hello,
    Is it possible to change somehow properties for the links between tables?
    We have about 2000 reports and we should change most of the links, it would be very convenient to write short program to do this instead of destroying couple mouses and wrists etc...
    Currently we are using VB6 and RDC to work with reports but we are open for all ideas to solve this problem we have.
    Thanks in advance for any help!
    Timo

    Hi Timo,
    Unless you know exactly how all are going to change exactly it may be easier to hire a student to this for you.
    Here's a bit of code that should get you going, it's old but should work for you also. You'll need to know what fields are mapped etc... It actually adds the tables at runtime and what you'll want to do is get your existing tables and links and save the info in an array.
    Dim db As Database
    Set db = rep.Database
    Dim tables As ICRDatabaseTables
    Set tables = db.tables
    Dim desTable As ICRDatabaseTable
    Dim path As String
    Dim srcTable As ICRDatabaseTable
    Dim subloc As String
    ' Add a table.
    subloc = "Orders"
    Set srcTable = tables.Add(subloc, CRDTRecurringFile, "crdb_ODBC.DLL", "MS SQL Tsvanfps01", "nwind", "vantech", "vantech", subloc)
    ' Add a table.
    subloc = "Employees"
    Set desTable = tables.Add(subloc, CRDTRecurringFile, "crdb_ODBC.DLL", "MS SQL Tsvanfps01", "nwind", "vantech", "vantech", subloc)
    Dim links As ICRDatabaseLinks
    Set links = db.links
    Dim count As Long
    count = links.count
    Dim joinType As CRJoinType
    Dim lookType As CRLookUpType
    Dim pm As Boolean
    Dim indexInUse As Integer
    joinType = 5    ' set to Left Outer Join
    lookType = 2
    pm = False      ' used for Access tables
    indexInUse = 0  ' used for Access tables
    Dim vas As Variant
    Dim vbs As Variant
    vas = Array(2)  ' pointer to the field position in the source Table
    vbs = Array(0)  ' pointer to the field position in the destination Table
    Dim newdblink As ICRDatabaseLink
    Set newdblink = links.Add(srcTable, desTable, vas, vbs, joinType, lookType, pm, indexInUse)
    Have fun
    Don

  • Changing Message Properties

    Hi
    Is it possible to change the properties of a message in a queue so that it becomes eligible to be received by a queue receiver (with message selector). ??
    If yes please explain How to achieve this ??
    thanks
    Puneet

    aside from the standard message headers, you can describe your own properties. similar to a key/value based hashmap.
    for example. in the sender
    message.setProperty("USER_ID", "JOE_DYNAMO");
    and in the receiver
    message.getProperty("USER__ID");

  • Can we change the properties of the Page in Portal?

    Hi,
      Is it possible to change the properties of the Page? I want to change the height and width properties of the page, but i dont see the properties in the list. Can you please guide?
    Regards
    Sai

    Hi Sai
    You can change the page properties. Right click on portal page > object. it will open the page object properties.
    If a page is locked, you can open it in read-only mode. then you need to unlock the page object. refer to [Page Editing|http://help.sap.com/saphelp_nw04/helpdata/en/a3/badf3d48b05d5ae10000000a11405a/content.htm]
    Please check the page properties attributes. [Click here |http://help.sap.com/saphelp_nw70/helpdata/en/13/81a66d100011d7b84b00047582c9f7/content.htm]. this properties list is also applicable for the object type iviews/pages.
    Hope it will helps
    Best Regards
    Arun Jaiswal

  • [svn] 3411: * Change layout-related width/height, explicit width/height, measured width/height properties from post-scale to pre-transform.

    Revision: 3411
    Author: [email protected]
    Date: 2008-09-29 16:44:01 -0700 (Mon, 29 Sep 2008)
    Log Message:
    * Change layout-related width/height, explicit width/height, measured width/height properties from post-scale to pre-transform. yay!
    * Flex3 containers are updated to support the new behavior.
    * Repeatedly scaling a component can differ from before, since we no longer accumulate rounding errors.
    * The change is gated by a version flag, in compatibility mode these properties don't change.
    Reviewed by Glenn, Ely
    Modified Paths:
    flex/sdk/trunk/frameworks/projects/flex4/src/flex/layout/LayoutItemUIC.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Accordion.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Box.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/DividedBox.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/FormItem.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/Tile.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/utilityClasses/BoxLayout.a s
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/utilityClasses/CanvasLayou t.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/core/Container.as
    flex/sdk/trunk/frameworks/projects/framework/src/mx/core/UIComponent.as
    Added Paths:
    flex/sdk/trunk/frameworks/projects/framework/src/mx/containers/utilityClasses/PostScaleAd apter.as

    I am sorry to have to point out to you that you have changed SpryMenuBasicSkin.css so much that it is impossible to render any assistance.
    To start with, the menubar has an ID of MenuBar, yet in the CSS I only see this referenced as a CLASS as in
    .MenuBar  {
    background-color:#cccccc;
    font-family: Arial, Helvetica, sans-serif; /* Specify fonts on on MenuBar and subMenu MenuItemContainer, so MenuItemContainer,
    MenuItem, and MenuItemLabel
    at a given level all use same definition for ems.
    Note that this means the size is also inherited to child submenus,
    so use caution in using relative sizes other than
    100% on submenu fonts. */
    font-weight: normal;
    font-size: 16px;
    font-style: normal;
    padding:0;
    border-color: #ffffff #ffffff #ffffff #ffffff;
    border-width:0px;
    border-style: none none none none;
    I would suggest to start again.
    Once you have done that, supply a link to your site and we will assist you further.
    Gramps

  • Is it possible to change the ALV report layout settings in spool request

    Hi All,
    Please let me know is it possible to change the ALV layout settings in background as we can change the layout settings in foreground to get correct format when download to excel.
    Regards,
    Jyothi CH.

    Hello,
    Add a parameter for layout on selection-screen (p_varmm LIKE disvariant-variant).
    As you are in backgroud mode, ALV will be printed with this layout (assuming you call correctly the MF ALV_LIST or REUSE_ALV_GRID)
    Regards,
    Christophe

  • Is it possible to change the settings in AR Properties Advanced tab with Adobe Acrobat XI?

    I noticed when I went to print a PDF double sided, that despite the following the guidelines from Adobe on this process, it still printed single sided.  I checked the properties of the PDF itself and on the Advanced tab, the DuplexMode was set to Simplex and was greyed out.
    Is it possible to change the settings in that tab with Adobe Acrobat XI?
    Regards
    Sharon

    Dear Sara
    Thank you for your reply.
    I have two printers, both support automatic duplexing.  Any PDF we receive
    or create we are unable to print double sided on our mac mini¹s.  I didn¹t
    make it clear in my question that we were fine on Windows XP, but, having
    recently changed to Mac have encountered this frustrating problem.
    I did a lot of research prior to recording the question and it appears I am
    not the only one who has come across this problem, and I have followed the
    guidelines that Adobe promote on their website to be able to print double
    sided, which doesn¹t work on the mac mini Osx Mavericks.
    Because the Properties, Advanced tab has ³Print Dialog Presets² that are set
    to simplex  and greyed out I took that to mean that no matter what printer
    settings I make, and I think I¹ve gone through all that I can, the pdf will
    not print double sided on Mac but will on XP.
    Sorry this isn¹t the reply you must have been hoping for and look forward to
    receiving further advice in regard to this matter.
    Regards
    Sharon

  • Is it possible to change the layout of alerts from SharePoint Online

    Is it possible to change the layout of the alert mails you get from SharePoint Online? If yes, then how?
    Thanks.
    Thomas Bomann, simplySO

    Hi,
    it is not possible for SharePoint online
    check this thread
    http://community.office365.com/en-us/f/154/t/14442.aspx
    Kind Regards,
    John Naguib
    Senior Consultant
    John Naguib Blog
    John Naguib Twitter
    Please remember to mark this as answered if it helped you

  • Is it possible to change the colour of the verticalGap on a Grid Layout?

    Hi. I used a grid layout and want to make black vertical columns in between each column...is it possible to change the style of the verticalGap?
    Thx.

    Set the grid background color black and set the GridItem background color something else.
    Here is an example.it is better to set this kind style attributes in css
    <mx:Grid backgroundColor="#000000" verticalGap="0">
       <mx:GridRow>
        <mx:GridItem backgroundColor="#FFFFFF">
         <mx:Label text="Testt"/>
        </mx:GridItem>
        <mx:GridItem backgroundColor="#FFFFFF">
         <mx:Label text="Testt"/>
        </mx:GridItem>
        <mx:GridItem backgroundColor="#FFFFFF">
         <mx:Label text="Testt"/>
        </mx:GridItem>
       </mx:GridRow>
       <mx:GridRow>
        <mx:GridItem backgroundColor="#FFFFFF">
         <mx:Label text="Testt"/>
        </mx:GridItem>
        <mx:GridItem backgroundColor="#FFFFFF">
         <mx:Label text="Testt"/>
        </mx:GridItem>
        <mx:GridItem backgroundColor="#FFFFFF">
         <mx:Label text="Testt"/>
        </mx:GridItem>
       </mx:GridRow>
      </mx:Grid>

  • Visual studio lightswitch takes very long time (hangs for 20 sec) when changing entities properties in screen design

    hi, I have lightswitch project that is growing up every day. Now it has 200 database table and about 450 default screens. When I first started the lightswitch project with few tables
    (about 50 tables), it responses very fast. Gradually when I created the screens, the response takes 10 seconds for any changes I made in the screens or on the tables (*.lsml). Now, it takes 20 seconds (-+2 sec) to be able to do the next change!. For example,
    changing the group name, entity input type, width, table summary property ,arrange fields in the groups, change display name (which I change the most),,etc. Just imaging that I can change 3 things on a minute! I am using lightswitch with VB coding , but no
    programing codes (yet), I uses only HTML screens, no extensions, connected with SQL express 2012 (but I think that has nothing to do with the slowness since the problem is on the screens design time), I have created the project from scratch three times, with
    visual studio 2013 ultimate update 3, update 4, and now with Update 5 CTP 1 !! Yet, the same result. Strange that the freezing time is always about 20 seconds!! Any idea why this is happening? Any resolution?! Regards, Hasan

    Hi Michael 
    again i appreciate your answer ... 
    i was trying to implement your suggested workaround of my problem, unfortunately, it won't work with me !  i cannot split the
    project to smaller modules because of:
    all screens are connected to each other's with buttons and clicks (view selected) 
    i have changed all the "display names" of tables fields (translation). i would have problem in translation whenever i
    need to add tables or fields in the database, then i need to repeat that for all modules. i know that i can use other translation method, but i have already translated thousands of words !
    i have spent 2 months in 2013 to learn MVC, but i did not like it. it is somehow complex for me. i am a volunteer developer (actually i
    am network designer ). 
    i may lose the authentication , as i need to log-in to each module separately.
    is there any root solution to this problem ; the VS Lightswitch (or IDE) slowness when there
    is a lot of screens? maybe in VS2015?
    i had great hopes for the lightswitch, and still it is the only IDE that i can use for the "Charity
    ERP" project.
    regards,
    Hasan

Maybe you are looking for

  • What is new in ios 7.0.3?

    What is new in ios 7.0.3?

  • Java – Regular Expressions – Finding any non digit byte in a multiple byte

    Hello, I'm new to JAVA and Regular Expressions; I'm trying to write a regular expression that will find any records that contain a non digit byte in a multiple byte field. I thought the following was the correct expression but it is only finding reco

  • Error in Partner Profile

    Hi, I have done the partner profile configuration.But still i m getting  the error like this."Partner profile inbound  not available" . How to resolve this problem? How to configure the Partner profile to resolve the problem? Thanks, Soumya.

  • Production server Incremental Backup is restoring in Testing server

    Dear All, Currently our Production database is running in windows 2003 server , Oracle version is 10.2.0.4.0 Now my question is daily incremental backup of production server will be restored in testing server (same configuration in production server

  • Are BIC mappings provided /predefined by Seeburger?

    Hello, I have a question regarding the usage of the Seeburger XI Add-On. We have a scenario where we get X.12 EDI files from a partner and need to map it to another format. If I've understood the documentation correctly the Seeburger Adapter is respo