Setting height and maxiHeight for indivisual rows of DataGrid

Can I set the height and maxHeight of each row of the
AdvancedDataGrid. Like we can set width and maxWidth of each
column?

Can I set the height and maxHeight of each row of the
AdvancedDataGrid. Like we can set width and maxWidth of each
column?

Similar Messages

  • How to set fire action event for particular rows in a table

    HI All,
    I have a requirement in which I want to set fire action event for particular rows in a table based on some condition.
    The table has columns like fullname,employee id etc.
    So i want to set fire action event for particulars rows only which will saisfy some condition.

    Atanu,
    Your approach(setting fire action for few rows) seems not possible. Better to go ahead with workaround.
    Do you want this functionality in processRequest(while page loading) or processFromRequest(on some event) method ? Give more explanation regd. your requirement ?
    In either case loop through the rows and when your condition is met write the action to be performed in controller.
    Regards,
    Anand

  • Can you set textRolloverColor and textSelectedColor for a DataGrid via styleFunction?

    Ok so I have a DataGrid with a default row text color set. I use the styleFunction to change the text color of a row if a certain condition is met by returning the new color. However, I would also like the textRolloverColor and textSelectedColor for said rows to change as well based on these same conditions. Is there any way to do this? Any help is much appreciated.

    I tried using setStyle but that didn't seem to work. However, I was able to add textSelectedColor to the object being returned to the row and that worked.
    return {color:0xFFAE00, textSelectedColor:0xa59999}; <-- This sucessfully sets the selected text color of the rows that meet the condition
    Unfortunatly many of the other data grid styles don't seem to work with this method, specifially one of the other ones I need, textRolloverColor. Basically I need the text to be set to the same color on those specific rows as they are when you select them.
    return {color:0xFFAE00, textSelectedColor:0xa59999, textRolloverColor:0xa59999:}; <-- The rollover text color is not set.
    Any ideas? Thanks.

  • How set  UserName and Password for HTTP Basic Authentication for a servlet

    Hi..
    How set UserName and Password for HTTP Basic Authentication for a servlet in JBoss server?
    Using Tomcat i can do it .(By setting roles in web.xml, and user credintails in tomcat-user.xml).
    But i dont know how do it in JBOSS..
    I am using Netbeans and Eclipse IDEs.. Can we do it by using them also!?
    Thank u

    Hi Raj,
    You can do this by creating a Login screen for the users and check the authentication of each user in PAI i.e. PROCESS AFTER INPUT.
    Store the user information in a database table and check the username and password when the user enters it.
    You can display password as *** also. For this double click on input box designed for password and goto Display tab. Select Invisible in the list and check it.
      CASE sy-ucomm.
        WHEN 'BACK'.
          LEAVE PROGRAM.
        WHEN <fcode for submit>.
          SELECT SINGLE uname pwd
           FROM <DB table>
           INTO (user, pass)
           WHERE username = user AND
                   password = passwd.
          IF sy-subrc = 0.
    <Go to next screen for further processing>
          ELSE.
    <Display Error message and exit>
          ENDIF.
      ENDCASE.
    Regards,
    Amit
    Message was edited by:
            Amit Kumar

  • Set height and width of pop up page.

    hi,
    How can i set height and width of pop up page.
    Thanks

    Hi ,
    Try these inbuilt javascript functions
    html_PopUp(pURL,pageName,pWidth,pHeight) or
    popUp2(pURL,pWidth,pHeight)Thanks,
    Manish

  • Change background and font for first row only?

    Hi, 
    Have a tablix in SSRS (2008R2) and would like to change the background colour and font for the first row only, is this possible and if so how would I achieve this? 
    I have followed and example on setting alternate row background colour in the properties but can't see how to do this for just the first row. 
    =IIF(RowNumber(Nothing) MOD 2,”LightGrey”, “LightBlue”)
    Thanks 

    Hello,
    The Expression uses a Modulo function to calculate every second row. In your case just compare with equal 1 for the first row:
    =IIF(RowNumber(Nothing) = 1, ”LightGrey”, “LightBlue”)
    Olaf Helper
    [ Blog] [ Xing] [ MVP]

  • Setting Table Cell Renderer for a row or cell

    I need to make a JTable that has the following formats:
    Row 1 = number with no decimals and columns
    Row 2 = number with no decimals and columns
    Row 3 = percent with 4 decimals
    I can use a table cell renderer to set each COLUMN as one or the other formats like this:
    NumDispRenderer ndr = new NumDispRenderer();
    for(int i = 1;i<dates.size();i++) {
    table.getColumnModel().getColumn(i).setCellRenderer(ndr);
    Where NumDispRenderer is a class as follows:
    public class NumDispRenderer extends DefaultTableCellRenderer {
    public Component getTableCellRendererComponent (JTable table, Object value,boolean isSelected, boolean isFocused, int row, int column) {
    Component component = super.getTableCellRendererComponent (table,value,isSelected,isFocused,row,column);
    if (value != null && value instanceof Double) {
    DecimalFormat df = new DecimalFormat("###,###");
    String output = df.format(value);
    ((JLabel)component).setText(output);
    ((JLabel)component).setHorizontalAlignment(JLabel.RIGHT);
    } else {
    ((JLabel)component).setText(value == null ? "" : value.toString());
    return component;
    This is fine for the first two rows, but the third row (which is also an instance of Double) I would like to format differently.
    The tutorial and other postings have not given a solution to this problem. Any suggestions would be very appreciated.

    Hi,
    the method getTableCellRendererComponent() of your renderer gets the row as a parameter. So just create the label depending on that value. For 0<=row<=1 you create the label as is, and for row=2 you create another label with the Double formatted as you wish.
    Andre

  • What is the maximum height and width for bitmap files in Flash?

    I'm trying to import a huge game race track 8000 x 7000, and I'm having problems.  Any tips?
    Thanks!

    Thanks Kglad,
    What is the height and width max for objects on the stage in Flash Pro?  I have a large track I've created, 7728 by 6051, I can't see all of it on the stage, and when I try to set its x and y position i get an invalid error.

  • How to keep anchor in middle while changing height and width for comp in extendscript?

    When i try to change my composition height and width using extendScript, it works but with anchor point at top left corner. How do I maintain it at the center??
    My code:
    comp.width = 4000;
    comp.height= 4000;
    result:
    expected:
    Thank you

    So you caught me on an open day, and I even dragged in another staffer (Josh) to sit and figure this out and we did. I just need to clean it up into a function for ease of use. It literally became an obsession between Josh and I to figure this problem out. We seriously need to get outside more, haha. I'll post the solution here shortly once it's cleaned.
    Is there a way to access layer's properties like position, rotation etc without its comp open or selected and not knowing its item number.
    Finding layers can be done by looping through all comps and all layers. You must set a series of matching criteria to compare against so you don't accidentally grab a duplicate layer that has the same values though. Usually the layer name, size or any property spec that is unique, source asset if it's an AVLayer, etc... It's also possible to have a list returned that you choose from if you wanna verify the layer before proceeding. All this has to be manually coded though.
    var comp = app.project.activeItem;
    var layer = comp.selectedLayers[0];
    //assuming layer is a comp
    layer.duplicate();
    var num = layer.index;
    var name = (layer.name + "_comp");
    var newComp=  comp .layers.precompose([Lnum], Lname, true);
    newComp.width =  4000;
    newComp.height =  4000;
    now what am trying to achieve is move the comp (layer) to the center of newComp i.e at 2000, 2000
    I'm not fully understanding the process you are intending. You are searching for precomps (comps used as layers) basically?

  • IPad set up and syncing for my mom--help!

    I just bought an iPad for my mom. I want to set it up for her (she's not too tech savvy). A couple of things to know about my situation:
    - she is a PC user
    So, I can set up her iPad at work where I have access to a PC. I have her iTunes log-in information to do so, however, when she goes to sync it on her very own PC at her house, will it be okay? ( ie: everything will be intact and accounted for?) I won't be able to hands on help her if it does not... She's in WI and I'm in CA.
    I'm thinking the initial activation at my work PC should be fine ( just as the Apple sales staff activates iPads or iPhones at their store and then we go home to sync).
    Please provide me with some guidance and answers to this.... I really want her to use this seamlessly
    -D

    If you purchase anything she'll have to transfer purchases via iTunes, but I've reformatted and then synched fine so all should go well.
    If all else fails you can always use a free trial of the likes of GoToMeeting or even easier for her GoToAssist to take control of her pc and fix things.
    Note: don't work for Citrix, just like their products and know they have 30 day trial accounts.

  • Reminder app not working correctly, issue started around Sept. 1,2014. Will not allow me to set date and time for a reminder.

    Today I noticed an issue with my Reminder app on my IPhone 5s. Using OS 7.1.2. I called Apple, and the tech didn't know what he was doing and just trying different things.The reminder app will not let me set a date and time for reminder. Finally he escalated the call to a senior advisor who was rude, arrogant and unprofessional. He insisted the Reminder App was updated with the new update of IOS September/October 2013. Not true, the issue just started about 5 days ago August 31,2014. Now there is an additional reminder line for reminder entries that I have to use and have to transfer all my reminders manually from the other part of the app. The feature does exist; if I try to set a date and time for the reminder it appears for 1-2 seconds and then disappears.
    Has anyone else noticed this issue?

    He insisted the Reminder App was updated with the new update of IOS September/October 2013. Not true
    Yes, it is true.
    iOS 7 was released 18 Sep 2013. At this time, the Reminders app was updated (with most everything else).
    the issue just started about 5 days ago August 31,2014.
    Your issue just started but the app was not updated 5 days ago.
    Now there is an additional reminder line for reminder entries that I have to use
    I don’t understand what this means...
    Open Reminders, type the reminder, tap the i at the end, turn on Remind me on a day and enter the date/time.

  • Set date and time for all macs in the network

    Hi,
    I need to set the time and date for all of our Macs in the network, I have tried to have a look at Workgroup manager but I can not see anything.
    Any ideas?
    Thanks in advance,

    Once the ntp setting is initially loaded, it should not need to be changed.  But you know that, of course.
    If you're looking to automate ntp configuration as part of system imaging (SIU, InstaDMG, etc) and client set-up, then that's certainly possible; that sort of discussion is regular fodder on the Mac Enterprise mailing list.  (Check the archives over there for some interesting discussions.)  Here are some related discussions that might interest you, too:
    http://www.afp548.com/forum/viewtopic.php?showtopic=21477
    http://www.afp548.com/forum/viewtopic.php?showtopic=20328
    Also see man systemsetup for some details.
    $ /usr/sbin/systemsetup -getnetworktimeserver
    Network Time Server: time.apple.com
    $
    And here's a slightly-dated intro to client management.

  • Problem in setting path and classpath for java in RedHat linux 9

    Hi ,
    i am not able to set the PATH and CLASSPATH for j2sdk1.4.2_06
    I have tried with export PATH=$PATH:/usr/j2sdk1.4.2_06/bin
    and export CLASSPATH=$CLASSPATH:/usr/j2sdk1.4.2_06/lib
    in terminal
    but i want to configure it as permenant way for the jre and jdk
    and we should only type java or javac according to the requirement
    regards mihir...

    type those in .bashrc ... save and exit
    then at prompt, type 'source .bashrc'
    this is the permanent solution ...
    bhalo thakun

  • Where to set creationPolicy and borderThickness for s:Group?

    I'm porting a Flex 3.1 application to Flex4.5.
    Here is the Flex 3.1 code:
    <mx:Canvas creationPolicy="auto" borderThickness="0" ...>
         <mx:HBox >
              <mx:Image .... />
         </mx:HBox >
    </mx:Canvas >
    This is the Flex 4.5 code I got so far:
    <s:Group ...>
        <s:layout >         
             <s:HorizontalLayout ..... />
        </s:layout >    <mx:Image ...  />
    </s:Group>
     ~I could not find the place to set createPolicy and borderThickness with Flex 4's s:Group. Is Flex 3's mx:Canvas equivalen to s:Group in Flex4?
    I know s:Panel has the creationPolicy, but I do not want to use Panel. Any suggestions? Thanks.

    Group's aren't skinnable.  I think the intent is that they're job is  simply to manage layout, so if you want a border, you wrap your group in  another component like BorderContainer.
    As for  creationPolicy, I'm guessing that you're Canvas was being used in one of  the mx Navigator classes (TabNavigator, Accordion, etc.).  You can wrap  your BorderContainer in a NavigatorContent component to manage creation  policy.
    <s:TabNavigator>
        <s:NavigatorContent>
             <s:BorderContainer>
                 <s:Group>
                 <s:Group>
             </s:BorderContainer>
        <s:NavigatorContent>
    </s:TabNavigator>
    Message was edited by: -Hob

  • BC SETS creation and usage for sap mm  point of view

    Hi All,
    Need Information About  BC SETS  creation and usage from sap mm point of view.
    Thanks in advance for sap mm forum guys.
    Regards.
    Parameshwar.

    Hi,
    Customizing settings can be collected by processes into Business Configuration Sets (BC Sets). BC Sets make Customizing more transparent by documenting and analyzing the Customizing settings. They can also be used for a group rollout, where the customizing settings are bundled by the group headquarters and passed on in a structured way to its subsidiaries.
    BC Sets are provided by SAP for selected industry sectors, and customers can also create their own.
    When a BC Set is created, values and combinations of values are copied from the original Customizing tables into the BC Set and can be copied into in the tables, views and view clusters in the customer system. The BC Sets are always transported into the customer system in which Customizing is performed.
    Advantages of using BC Sets:
    1.     Efficient group rollout.
    2.     Industry sector systems are easier to create and maintain.
    3.     Customizing can be performed at a business level.
    4.     Change Management is quicker and safer.
    5.     Upgrade is simpler.
    To create BC sets follow the below step:
    Choose Tools ® Customizing ® Business Configuration Sets® Maintenance in the SAP
    menu, or enter the transaction code SCPR3 in the command field.
    Choose Bus.Conf.Set ® Create.

Maybe you are looking for

  • Purpose of LDAP files

    Hi, I am fairly new to weblogic and in particular the LDAP files in $SERVER_NAME/data/ldap/ldapfiles. I read from the Oracle documents that the LDAP is for storing users,passwords,policies. How is this different / tie in with the security realm? I re

  • Print Preview of smartform  with device type EPESCP9

    Hi all, I have created a z smartform to print commercial invoice. I am using dot matrix print Epson FX-2170 to print invoice. For this printer the device type is EPESCP9. So I created an output device having device type EPESCP9. I have assigned the r

  • Numeric or value error in CrawlingThread.processPseudoURL()

    We might not have configured Ultra Search properly but I didn't do it myself so I am doing the best that I can to get Ultra Search working. When I try to index files on the local filesystem, I am not sure whether 'local' means the database machine or

  • How to burn slideshow on HD video blueray

    Apparently one cannot burn directly to disc from LR5 64 bit version. As there is a 1080 p video preset option for exporting the slideshow in HD format , it seems logical to burn the resulting .mp4 file on a blueray disc and play the slideshow on an H

  • Trackpad issue after Yosemite upgrade

    I upgraded to Yosemite and the trackpad no longer allows me to so the two finger tap as a secondary click. This is very frustrating so any help appreciated! I have an old Mid 2009 Macbook Pro