Search Type: Posts; User: klaus777

Page 1 of 4 1 2 3 4

Search: Search took 0.02 seconds.

  1. I once had a similar problem and my first workaround was to programmatically


    setActiveItem(1);
    setActiveItem(0);

    So changing the views programmatically (without any1 seeing it, because it...
  2. Thanks Mitchell,

    the solution was, that my mate told me to remove the "!important" at the end of the background-image and all of a sudden it's working now:


    aButton.element.setStyle({ ...
  3. This is working like a charm for me (thanks):



    if (!this.overlay) {
    this.overlay = Ext.Viewport.add({
    xtype: 'panel',
    modal: true,
    hideOnMaskTap: true,...
  4. I think I came up with sth like this (not sure though):



    var aPanel = new Ext.Panel(
    {
    height: this.getParent().element.getHeight(),
    ....
  5. In Safari 6 you can use setCls to set your button image.

    But I need dynamic button-images which can't be done with setCls. Or can you do it?

    In Safari 5 following was working, which isn't...
  6. I don't think so.

    Your error message just says, that you maybe didn't set up your config files with a Bundle Seed Id


    I am also new to all this but I got my app working native on iPhone by...
  7. I had some similar problem, with setting up view elements programmatically from a store.
    My solution was to listen to the load event in the store and refresh the view after the store was loaded:

    ...
  8. Change your index.html:



    <!DOCTYPE HTML><html manifest="" lang="en-US">
    <head>
    <meta charset="UTF-8">

    <title>MYAPP</title>
    <style type="text/css">
  9. Replies
    3
    Views
    579
    Change your index.html:



    <!DOCTYPE HTML><html manifest="" lang="en-US">
    <head>
    <meta charset="UTF-8">

    <title>MYAPP</title>
    <style type="text/css">
  10. got it :-)

    numberfield with only 3 digits allowed eg. 999, 123, 232:

    Advantage: this will check your input live and immediately throws away A-Z, a-z and the fourth digit. So your customer will...
  11. thank you. I tried it with regex and stuff... I don't understand it and I've seen other postings around from other people who were also saying its hard to learn and hard to use...

    I think I will...
  12. phew I got it. YES!!!! :-)


    Changed it to a cls and working like a charm now :))



    .anAnwendungsButton {
    -webkit-border-radius: 0.0em;
    border-color: Transparent !important;
  13. Upgraded to Mountain Lion with Safari 6.0 :)


    My button background image disappeared all of a sudden - now only showing the default gradient without background image on the button.

    Please help...
  14. On Android my numberfield is only showing the numberskeyboard (the keyboard you get when you dial a phone number)....

    On iOS my numberfield is showing me not the same numberskeyboard to only type...
  15. Interesting.

    Just tested my app on my iPad with iOS 5.1.1 and the cache manifest images are working THX GOD :-)

    Maybe you should test on iOS 5?
  16. Workin :-)


    Strange, why I can't add my objects directly to a panel and instead I have to adress the parent panel, getting its child panels and adding it like this.

    Anyway SUUUUUCCCCESSSS...
  17. I figured out that if you build for testing, your code doesn't get minified... so I built for testing "sencha app build testing" and all of a sudden, the testing build can't find one of my components...
  18. the fun continues below:
  19. see below what happened next:
  20. I'm talking about starting the app for the very first time. But not in production mode but just for me as a developer to debug it. Right now I don't have any data to load into my store, so for...
  21. Now I tested to push a simple label on the navigationview. It takes 2 to 3 seconds to be pushed when testing on the iPhone 4. The app is on the MacOS X Lion built in WebServer so I can test it easily...
  22. phew found a solution:

    You have to sign it manually via terminal

    Steps:

    1) Create a file Entitlements.plist inside your "/build/native" folder.

    2) Edit file it should look like this:
  23. I get the exact same problem and exact same result and error message like jrodrigu



    Additionally I found out when trying to add the app via XCode Organizer to my iPhone, it will give me...
  24. Still not working


    - Referencing navigationbar does nothing when trying to Ext.getCmp('navbar').setTitle('my title');
    No results and no error by doing this... :-)


    - And I don't have a tab...
  25. We encountered some performance issues when pushing a new panel on a navigationview.

    So is this the right way (best practice) to initialize and push a new panel??

    ...
Results 1 to 25 of 88
Page 1 of 4 1 2 3 4