Search Type: Posts; User: r4nd7263

Page 1 of 4 1 2 3 4

Search: Search took 0.02 seconds.

  1. Replies
    1
    Views
    221
    We found that our desktop GXT3 app actually works quite well on iPad and Android tablets except that buttons and clickables are too small and not touch friendly.

    But instead of translating the...
  2. Replies
    2
    Views
    544
    In GXT 2, I used CheckBoxGroup to group many CheckBoxes in one field and had a custom validator to check that at least of the checkboxes is checked.

    CheckBoxGroup is not in GXT 3, how do I do...
  3. Replies
    1
    Views
    709
    On iPhone 4 retina display, ST1 components (i.e. button, toolbar, etc.) appear half size, but Sencha Touch 2 Kitchen Sink looks fine. Does ST1 not support retina display? Can somebody confirm if...
  4. Replies
    1
    Views
    180
    What is ST2 equivalent of CardLayout.getPrev in ST1?
  5. Looking at http://docs.sencha.com/touch/2-0/#!/api/Ext.data.JsonP

    What defines if the request is success or failure? I just made a request that responded HTTP STATUS 401. I thought it'd invoke...
  6. Replies
    4
    Views
    788
    Found the answer
    http://randsphere.com/c/binbin/wp/?p=55
  7. Where do I insert this code? I tried on Ext.application launch; it didn't work for me.
  8. Replies
    4
    Views
    788
    My understanding is: disableCaching is enabled (default) so the loader adds "_dc" param to dynamic loaded files. This causes Chrome to treat each load as new file thus losing the breakpoint.

    I am...
  9. Replies
    4
    Views
    788
    I can't debug ST2 because breakpoints disappear when I reload the page.

    Searched internet and found several mentions of ?breakpoint and Ext.Loader.setConfig({disableCaching: false});. But I...
  10. Replies
    1
    Views
    260
    How should I declare other dependencies that do not fall in one of the 5 categories (models, views, controllers, etc.)?

    In my ST1 app, I had many Helper (i.e. MyApp.helper.DbHelper) classes that I...
  11. I think my problem is that I access index.html using file://, not http:// via a web server.

    Chrome gives this error:



    XMLHttpRequest cannot load file:///D:/temp/MyApp/app.json. Cross origin...
  12. I followed this guide to generate a new app: http://docs.sencha.com/touch/2-0/#!/guide/getting_started

    using:
    SDK Tool: 2.0.0 beta 3
    Sencha Touch 2.0.1.1

    When I open index.html in browser,...
  13. Replies
    2
    Views
    908
    I have a json file in my www folder. I am trying to load it using ajax request:



    Ext.Ajax.request({
    url: "file1.json",
    success: function(response, opts) {
    console.log("success");
    ...
  14. Given a TreeModel, I want to focus on the row that represents the model in TreeGrid.

    Normally with regular Grid, I do



    int index = grid.getStore().indexOf(m);...
  15. I can't find any API docs on com.extjs.gxt.charts on this page: http://www.sencha.com/gxtdocs/

    Am I missing something?
  16. Replies
    1
    Views
    1,082
    "Modeling Data" section of this page helps
    http://www.sencha.com/learn/a-sencha-touch-mvc-application-with-phonegap/
  17. Replies
    1
    Views
    1,082
    I need to implement a paging list that loads data from device local database using PhoneGap (http://docs.phonegap.com/en/1.1.0/phonegap_storage_storage.md.html#Storage)

    Anyone know of an exmaple?...
  18. Replies
    1
    Views
    702
    markInvalid("message"); in validateValue() works

    However tracing the source code I found out setSelection() performs validation before setting selections. To make matter worse, rawValue is always...
  19. Replies
    1
    Views
    702
    ListField has no setValidator method.

    According to API, I override validateValue() and that works, but how do I set the error text?

    I tried

    this.getMessages().setInvalidText("A selection is...
  20. Replies
    5
    Views
    676
    No I wasn't laughing at you asking me to post the solution. I was laughing at myself for I didn't realize how simple the solution was. So simple it didn't occur to me to post the solution at first....
  21. Replies
    5
    Views
    676
    :)) I shoulda studied the API a bit more before asking the question.

    It was easy as



    beanModel.setData("label", wrappedBean.getLabel());
    beanModel.setDisplayField("label");
  22. Replies
    5
    Views
    676
    Nevermind. I figured out.
  23. Replies
    5
    Views
    676
    How do I set the display field if I use BeanModel for my ListField store?

    I tried field.setDisplayField("bean.label");, but got JavaScriptException: (TypeError): 'bean' is undefined.
  24. The other differences I can tell between demo and my code are I am using a BeanModelReader, and that the grid is shown in a Window.



    BeanModelReader reader = new BeanModelReader();...
  25. The vertical scrollbar on my live grid is disabled, but LiveToolItem shows that 1-11 of 31 records. So I can't scroll to view more items. I know the same RPC works for regular grid and...
Results 1 to 25 of 89
Page 1 of 4 1 2 3 4