Search Type: Posts; User: willigogs

Page 1 of 5 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    8
    Views
    247
    The issue is that your locationItems array is empty when the store is initialized - and even though you may update this array later - that doesn't update the items in the store. You would have to...
  2. http://docs.sencha.com/extjs/3.4.0/#!/api/Ext.Button-cfg-pressed
  3. Check the sticky thread above this one...

    http://www.sencha.com/forum/showthread.php?260398-Ext-JS-3.4.1.1-Available-Full-Public-Release!
  4. Replies
    4
    Views
    597
    Don't use font tags?

    Instead append a class / id, and then use CSS/an external stylesheet to style the content with "font-size" and "line-height" properties.
  5. One possibility:

    Use a flag (such as valid=false). If flag = false, return false to cancel tab change and perform your Ajax call. On success set the flag to true, and fire the method to change...
  6. Could you provide a working example in code / on JSFiddle, as I've never encountered this :\
  7. I assume he probably means "replace all existing text strings with those of the selected language"?

    For starters, I guess he would have to dynamically remove the existing locale file and attach...
  8. Get the rows in your store beforeLoad event, then on load use the selectionModel's selectRows() method:
    http://docs.sencha.com/extjs/3.4.0/#!/api/Ext.grid.RowSelectionModel-method-selectRows
  9. Try using the following on your tabPanel:


    hideMode: 'offsets'


    http://docs.sencha.com/extjs/3.4.0/#!/api/Ext.TabPanel-cfg-hideMode
  10. Have you tried updating to 3.4.1.1 which includes IE10 support?
    http://www.sencha.com/forum/showthread.php?260398-Ext-JS-3.4.1.1-Available-Full-Public-Release
  11. And once again, why are you putting HTML into the store?

    What requirement have you been given that has lead you to even attempt this?

    I see no reason why you would ever need to (since you can...
  12. You still haven't explained why though.

    Have you looked into column renderers in the API?
  13. Putting HTML into a store is not a normal method.

    It might be a better idea to explain what you're trying to achieve, as there must be a better way to do it...
  14. I guess the real question should be, why are you putting HTML into your store in the first place? :/
  15. Without any further information, it's highly unlikely...
  16. Replies
    9
    Views
    256
    Hmm, yes I see what you mean now...

    I've never encountered this issue before, since all my EXT applications always use viewports - but it certainly seems a requirement for the vbox/hbox layout to...
  17. Replies
    9
    Views
    256
    I added the layoutConfig option that I mentioned earlier, and it seems to work correctly?

    http://jsfiddle.net/Whinters/u4QGD/
  18. Replies
    9
    Views
    256
    Sorry - just realised I was missing something ridiculously obvious :D

    You need to give the child panels a "flex" value :)
  19. Replies
    9
    Views
    256
    In that case it might be due to panel1 having a layout of 'form'.

    Try wrapping your panel1 with a container which uses a 'fit' layout.

    If that doesn't work I'll actually try and diagnose it in...
  20. Replies
    9
    Views
    256
    Try adding the following to your vbox panel:


    layoutConfig: {
    align: 'stretch'
    }
  21. I'm assuming he wants the fieldLabel to be all on one line...

    To do this, increase the labelWidth config.
  22. Use the checkOnly:true config option under the checkboxSelectionModel:
    http://docs.sencha.com/ext-js/3-4/#!/api/Ext.grid.CheckboxSelectionModel-cfg-checkOnly
  23. You would need to return an empty array instead of your null value :)

    Alternatively, detect the null being received, then load an empty array into the store.
  24. I've come across this before, and it's due to the container which the tabs are dropped into having a maximum width. This can be overwritten to make the container wider (I'll have a look later for the...
  25. Sorry, I'm not sure I'm understanding what you're trying to achieve?

    Adding CSS inline isn't a good approach to take - instead give your combo an ID or class, and then write your css based on this...
Results 1 to 25 of 118
Page 1 of 5 1 2 3 4