Noob ? How to add mx datagrid to mobile app

Hi,
I'm converting our first Desktop app to a mobile. I need to use a datgrid as it's basically is a look up table populated from a small SQLite database.
I can not figure out how to get it to show up in the componants list.
Using FB 4.6
Can someone point me in the right direction?
TIA
Rich

I tried <mx:DataGrid>
Can I just replace the mx on for the spark one?
What is the differances?
Thanks for responding.
Rich

Similar Messages

  • How do I view and add photos on the mobile app?

    QuestionHow do I view my photos and add new photos on the mobile app?
    Answer 
    To view your photos, you may either select the Photos icon from the Home screen:
    Or, you may select the Profile icon from the Home screen.
    From your profile picture, you can start scrolling to view your photos one by one. Or, touch the camera icon on your profile picture to view all your photos at once.
    To add new photos to your account, touch the camera icon on the top-right corner of your Photos page:

    http://support.apple.com/kb/DL1455?viewlocale=en_US&locale=en_US

  • How to use OneDrive for Business mobile app with SharePoint 2013 on-premise?

    Hi All,
    I have a SharePoint 2013 (with latest December updates) that host a dedicated personal web site for users.
    The OneDrive portal works fine and users are able to sync their files with the OneDrive client for Windows.
    Now I want to test the OneDrive for Business mobile app on Android, but there is no option to specify the "personal" portal URL.
    It asks only for domain credentials.
    Does I need to configure specific records on my public DNS to allow mobile users to sync their files?
    Thanks

    I can confirm that with iOS you can connect to your SharePoint server through the advanced options.
    But the very strange thing is that the OneDrive version for Windows Phone 8.1 is limited as the Android version.
    This has no sense.
    Why does Microsoft should limit the Business functions on its mobile operating system, and not on iOS?
    Another strange thing is that configuring my Exchange account, Windows Phone 8.1 informed me that it has connected OneDrive for business (but is a fake information).
    See attached image.
    If I open the built-in OneDrive app, it give me the option to add a OneDrive for business account, but is only for Office 365 users (like with the Android version).
    I thing that Microsoft should let at least to Windows Phone users to connect to on-premise SharePoint sites.

  • How do I import a custom mobile app UI in Flash Builder?

    Hey everyone.  I'm new to mobile development and just Flash Builder in general.  I created a custom UI using Photoshop and now that Catalyst files aren't supported in FB 4.6, how would I go about creating or importing a UI for my mobile app?  I can't seem to find a difinitive answer on the topic any where so any help would be awesome.
    Please n Thank You
    --Coreybro

    Google flex skinning.
    Here's a start:
    http://www.adobelightroom.net/devnet/flex/articles/flex4_skinning.html
    Does the existing catalyst workflow no longer work?

  • How to remove Button from Flex Mobile app actionbar with AS3?

    How exactly would i remove a Button from the actionBar "actionContent" in a flex mobile app?
    I tried these:
        this.stage.removeChild(menu_btn);
        this.removeChild(menu_btn);
        stage.removeChild(menu_btn);
        this.stage.removeElement(menu_btn);
        this.removeElement(menu_btn);
        stage.removeElement(menu_btn);
    I'm not having any luck with those. Im guessing where it is located in the actioncontent isn't considered the stage. Any ideas?
        <s:actionContent>
                            <s:CalloutButton id="menu_btn" icon="@Embed('assets/images/menu/menu_btn.png')" visible="false">
                                      <s:VGroup>
                                      <s:Button id="btn_one" label="Button" />
                                      </s:VGroup>
                            </s:CalloutButton>
                  </s:actionContent>
    The actionContent is setup like that, I know like with most mxml stuff I could give it an ID to reference it but im not sure how how to give the action content an id number `<s:actionContent id="testID">` does not work. So how can i access this to remove it? making it invisible isn't cutting it i need to actually remove it.

    Does this do what you are looking for?
    <?xml version="1.0" encoding="utf-8"?>
    <s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
            xmlns:s="library://ns.adobe.com/flex/spark" title="HomeView">
        <s:actionContent>
            <s:Button id="excess" label="excess" />
            <s:Button label="remove" click="this.navigator.actionBar.actionGroup.removeElement(excess);" />
        </s:actionContent>
    </s:View>

  • Air iOS - How to add iPhone 6 icons to app.xml?

    I'm using Flash CS6 and Air 3.9 to publish an iOS app.
    How to add the icons for iPhone 6 and iPhone 6 Plus to the app.xml?
    I tried this but got an error:
    <icon>
    <!-- all other icon sizes -->
    <image120x120>AppIcons/app_120.png</image120x120>
    <image180x180>AppIcons/app_180.png</image180x180>
    </icon> 
    Any help appreciated.
    Thanks

    Hi,
    Thanks for reporting, but things are working fine at our end. Could you please tell us the error you are observing. Also i would recommend you to use latest SDK and Flash pro.
    Thanks,
    Jitender

  • How to add Ftp transfer to my app???

    I need to upload htm files to my ftp server.
    I'm new to java and I need to know if I need and API to add this capabilities to my app or if there is a class that can do this.
    Do you know a link where I can get some ftp code samples?
    Thank
    Diego

    J? napot, Laszlo.
    I suspect the problems are much bigger than that.K?sz?n?m sz?pen, Ferenc -- the f is for Ferenc, isn't it? -- but just because we among the chosen who've done their dissertation on CLASSPATH doesn't mean we can't share out enlightenment.
    Suggestions:
    1. Download the right zip file: it's Commons Net, not Commons Upload.
    2. Unzip it to find the file commons-net-1.1.0.jar.
    3. There are many things you can do with this jar: put it on your CLASSPATH, refer to it using a command line argument etc... but perhaps the simplest way (assuming you're working on your own machine so there's no one to object to it): make it an extension: copy it into the appropriate jre/lib/ext directory . Where is this? It depends on your set up, but if you've installed the jdk, you should have a path like C:\j2sdk1.4.2etc...\jre\lib\ext and there's another copy of the jre in C:\Program Files\java\jre1.4.2etc...\lib\ext. You might as well copy the jar into both locations -- can't hurt.
    4. Take a look at the docs you unzipped to find out the right inport statement and some sample code. For example, FTPClient's doc includes:
    import org.apache.commons.net.ftp.*;
    try {
          int reply;
          ftp.connect("ftp.foobar.com");
          System.out.println("Connected to " + server + ".");
          System.out.print(ftp.getReplyString());
          // After connection attempt, you should check the reply code to verify
          // success.
          reply = ftp.getReplyCode();
          if(!FTPReply.isPositiveCompletion(reply)) {
            ftp.disconnect();
            System.err.println("FTP server refused connection.");
            System.exit(1);
        } catch(IOException e) {
          if(ftp.isConnected()) {
            try {
              ftp.disconnect();
            } catch(IOException f) {
              // do nothing
          System.err.println("Could not connect to server.");
          e.printStackTrace();
          System.exit(1);
        }Viszontl�t�sra!

  • How to add ADMOB advertisement into Android app using ADF Mobile

    hi,
    i need to integrate ADMOB advertisement into Android app.
    can i do that using Oracle ADF mobile?
    regards,
    ad

    Hi,
    I think, there is one example for ADF Mobile push notification with Google Cloud Messaging.
    http://deepakcs.blogspot.in/2013/06/adf-mobile-push-notifications-with.html
    Eba

  • How to create a storyline-like mobile app player

    Hello,
    I was checking out the Storyline elearning dev tool and their free mobile player app. For branding purposes I would like to create my own similar app in html5 and javascript wrapped in something like phonegap for submission to the App Store. I'm enrolled as an apple dev but somewhat of a newbie to javascript. The way I see it there are 3 or 4 things the app does:
    1. When your elearning, stored on a web server, is accessed by URL from the iPads browser it automatically launches the ipad app and lists the module ready for playback. Accessing additional modules launches the app and list them along with previously launched modules.
    2. There is a toggle button to allow the user to download the elearning module for offline viewing if not connected to the Internet.
    3. There is a way to add a module to your favorites (would be nice to be able to remove from favorites or ipad altogether also).
    Those are the three main things I'm needing help with. Being such a "noob" to javascript I'm not sure where to look for the right tutorials/help. Any suggestions?
    Thanks in advance for any help.

    Sure it can be done in AI, so what is actually your question?
    Mylenium

  • How to insert additional files on mobile apps

    If i already finished my application/game then i want to add new content such as themes, images, music, etc. is this method posible?
    or if there another way to add some additional content to my apps/games please tell me. my application/game using AIR.
    by the way, i wonder how DLC or other the same system working, is that files added to our directory then update (something like) the xml file?

    I too wonder how In-App Purchases work, are you just setting some boolean to true when the user buys additional items and this allows them to use it or are you downloading additional files that the app can now reference? Please explain someone.

  • How do I disable Photoshop Mix (mobile app) from syncing

    Hello - trying to figure out how to disable the sync function from my Photoshop Mix app on my mobile device.

    We only deal with Photoshop proper here, the desktop application.  No clue as to the unrelated mobile applications.
    You are not addressing Adobe here in the user to user forums.
    Look for your application in the Forum index.

  • How to add VIS Demo after installing APPS without it??

    Hi all,
    I have installed Oracle Applications wihout VIS Demo and now i want to add it. How can i do that?? Is there a script to do that?
    Tks,
    Paulo.

    Cannot be done. You must select the Vision install during the initial installation.
    Loading Vision DB on existing install
    Re: Loading Vision DB on existing install

  • How to add Headers/Images to flex app?

         Hi I have a flex application that I am currently trying to skin and wish to add a logo image into the application but the image doesnt show up when i load it

    hi,
    Just embed the logo its much easier, otherwise you need to have an event complete for the image to ensure its loaded before trying to display it.
    <mx:Image  source="@Embed(source='assets/mylogo.jpg')"/>
    David

  • How to add iPhone folios to iPad app in iTunes?

    My ipad app is in the itunes store.
    I have now built separate folios for the iphone 3/4 and iphone 5. The folio names are identical to the iPad app. I need to update the app to make these iphone folios available for download in iTunes app store. I have not "published" the iPhone folios in the DPS Folio Producer yet.
    Once I publish the iPhone folios in the Folio Producer, are they going to available in the App Store or do I also have to update/create a new multi-folio app with App Builder (selecting iPad and iPhone but using the same original app name/id) for them to be available to iPhone users?
    Not quite sure how this all works. I've read this:
    http://helpx.adobe.com/digital-publishing-suite/help/create-folio-renditions.html
    But still don't quite understand the iTunes part of it, and don't want to do this, wait a week for the app to be approved in iTunes, only to find out the iphone apps aren't there.
    Thanks!

    Did you set up the original app as both iPad and iPhone?
    If so you just need to publish your iphone folio's and they will appear in your app when viewed on an iPhone.
    If you didn't set it up as both in the first place, you will have to start again and do an Apple update
    Hope that helps a bit
    Alistair

  • Breakpoint 5.2 - how to add the Gyroscope in my App,

    My programm brakes if I start it and shows me the message below (with the " --> " and the green script)
    I don't know how to fix it.
    Can you halp me ?
    thank you
    ViewController8.m
    //  first try
    //  Created by Julian Fuchs on 22.02.14.
    //  Copyright (c) 2014 Julian Fuchs. All rights reserved.
    #import "ViewController8.h"
    @interface ViewController8 ()
    @end
    @implementation ViewController8
    @synthesize ball, delta;
    - (void)viewDidLoad
        UIAccelerometer *accel = [UIAccelerometer sharedAccelerometer];
        accel.delegate = self;
        accel.updateInterval = 1.0f / 60.0f;
        [super viewDidLoad];
    -(void)accelerometer:(UIAccelerometer *)accelerometer didAccelerate:(UIAcceleration *)acceleration
        NSLog(@"x : %g", acceleration.x);
        NSLog(@"x : %g", acceleration.y);
        NSLog(@"x : %g", acceleration.z);
        delta.y = acceleration.y * 10;
        delta.x = acceleration.x * 10;
        ball.center = CGPointMake(ball.center.x + delta.x, ball.center.y + delta.y);
    - (void)viewDidUnload
        [super viewDidUnload];
        [self setBall:nil];
    @end
    ViewController8.h
    //  first try
    //  Created by Julian Fuchs on 22.02.14.
    //  Copyright (c) 2014 Julian Fuchs. All rights reserved.
    #import <UIKit/UIKit.h>
    @interface ViewController8 : UIViewController <UIAccelerometerDelegate> {
        UIImageView *ball;
        CGPoint delta;
    @property (nonatomic, retain) IBOutlet UIImageView *ball;                   --> Thread1: breakpoint 5.2 Unknown class                                                                                  MainViewController in Interface Builder file.
    @property CGPoint delta;
    @end

    How do I use soundmixer to replace the sound from earphone to speakerphone
    Can you show me an example code on button?
    Thanks a lot!

Maybe you are looking for