Search Type: Posts; User: WagsMax

Page 1 of 5 1 2 3 4

Search: Search took 0.04 seconds.

  1. Yes, if there is a workaround, it would be seriously appreciated as I am going into beta testing in 3 days!!
  2. Yes, I have inspected the DOM, and cannot see why Capture3 (in ST2.1) and Capture4 (in ST2.2) are different. Capture4 shows that the red background style I want to apply to a field with an error does...
  3. I am converting ST2.1 code to 2.2 and running into my fair share of fun.
    In 2.1 I did this to change the background color of a field:

    field.addCls('mp-field-invalid');

    with a css rule of:
    ...
  4. I found what the problem was... in my form I has an html config like this:

    {
    xtype: 'container',
    itemId: 'subscrCont',
    html: '<font size="1.5em"><br>Some text'
    }
    and when I...
  5. This issue is coming up for me as well in IE, does not happen in Chrome or FF.
    An answer is needed, as my app just dies in the water in IE displaying a fubar'd window.
  6. Yes, the text has the CR in it all along.

    Sencha version is 4.1.1, compiled with Sencha Cmd 3.0.0.250
  7. Having a weird problem in IE only (Chrome and FF are not affected)... when I have an xtype textareafield on a form, and I use loadRecord to display a record onto the form, and the textareafield has a...
  8. Update... the checkboxes appear in IE using the compiled version. Very weird.
  9. I have attached pics of the current problem... in my app that uses the full extjs sdk, checkboxes appear in the grid (Capture2), in the compiled version checkboxes do NOT appear (Capture1). I have...
  10. I used to build my app with sencha.bat using the following command:
    sencha.bat app build testing \\machine\wwwroot\deploydir

    That was using the old batch version, and now there is a new Sencha...
  11. Yes!! loadData fixed it... thank you
  12. To answer your questions... I put some timing logs around the code, and it is the each loop in the second code block that is taking the time. Yes the store is bound to a grid, but only in the second...
  13. When loading a store of about 400 records this code gets executed in the blink of an eye:

    // initially load the store
    var contactTypesStore = Ext.create('AtmGo.store.ContactTypes');...
  14. OK, thanks I will try that... a question... I looked through what was being dynamically loaded and there are a lot of files to do with "filter"... which one(s) should I "requires"?
    ...
  15. Hi Don,
    Finally getting back around to trying a deploy. I have upgraded to .190, but I am still getting the same error:
    Uncaught TypeError: object is not a function
    in

    initializeFilters:...
  16. In my mvc app, I have the following scenario. store1 contains grid panel rows, and store2 contains combobox options for one of the fields in store1. Its easy to set the store for the grid panel in...
  17. Answer to little red triangles... I forgot to add a contactsStore.sync() after loading the store. All better now :)
  18. Setting autoload to false did it!!! Thank you.
    Now I just have one question... little red triangles appear in the upper left corner of every field, and I am assuming that ext thinks these fields are...
  19. Yes, the store has valid data in it. I am baffled.
  20. I can't seem to figure out how to do this... what I want is multiple instances of a grid panel, that should create their own instance of a store to hold that panel's data. With my code below, the...
  21. Thank you! That solved the issue, and your example of component queries is much clearer.
  22. Here is the pertinent (I think?) part of the panel definition. The constructor is creating the event listener which is where I am experiencing the issue.


    Ext.define('ATMgo.view.CaseMain', {
    ...
  23. In the constructor of a form panel I am trapping the dirtychange event:
    me.getForm().on('dirtychange', function(form, isDirty) { ...
    Trouble is, when I open more than one instance of this panel,...
  24. Having trouble with multiple instances of a panel each with itemId 'savebtn' on a button. I have made the panel instance itemId unique, and the savebtn exists on each panel. I want to access the...
  25. I turned off the yui compression, and now I can see where the error is happening, but I still don;t know how to fix it. See Capture3
Results 1 to 25 of 120
Page 1 of 5 1 2 3 4