Search Type: Posts; User: evant

Page 1 of 5 1 2 3 4

Search: Search took 0.18 seconds.

  1. Not possible, AFAIK.
  2. Because you're just passing a string:



    return this.save(this.contentCallback);
  3. Probably just a documentation error, it's intended that you can override it if needed.
  4. Could possibly be a bug with an older version not using getGroupString properly, I tested it on the latest (see attached screen).
  5. Using which version? The current code reads:



    removeUIClsFromElement: function(cls) {
    var me = this,
    baseClsUi = me.baseCls + '-' + me.ui + '-' + cls,
    result...
  6. Replies
    4
    Views
    106
    Right. It's not a bug in the code, but with the locale file. The getMonthNumber function isn't localized appropriately for the fi locale.

    It should read something like:



    Ext.Date.monthNames...
  7. Replies
    4
    Views
    106
    How are you setting the value using setValue()?
  8. We have an open issue for this: EXTJSIV-9490.

    Thanks for the post.
  9. The form tracks fields at any depth underneath, so what you've got is fine.
  10. This isn't a bug. The transform method on the Sorter (Grouper) is used to transform the value when sorting the store, for example:



    transform: function(v) {
    if (v == 'first') {
    ...
  11. I can't reproduce this:



    Ext.require(['Ext.chart.*', 'Ext.chart.axis.Gauge', 'Ext.chart.series.*', 'Ext.Window']);

    Ext.onReady(function () {

    console.log(store1.first());
    ...
  12. These "compat" modes aren't supported by Ext. As you can see, the emulation doesn't work like the real browser.
  13. That looks like IE10. Are you saying you're running the app in IE10 and choosing a non-IE10 document mode?
  14. I can't reproduce this on 4.2.0 using IE9, please post a test case:



    Ext.require('*');

    Ext.onReady(function() {

    new Ext.panel.Panel({
    width: 400,
  15. Ext doesn't do anything extra with frames. When you've got Ext loaded, there's more memory being used, but other than that, there's no special handling.
  16. Because you never use the view anywhere. All you've done is define a class. How will it know where to insert this view?

    You need to:
    a) Put it in views



    controllers: ['ui.Navigations'],...
  17. Why not using a mapping: http://docs.sencha.com/touch/2.2.0/#!/api/Ext.data.Field-cfg-mapping
  18. I don't really understand your code. You've got:

    a) A panel with no layout, which will be auto -> The "tab"
    b) A form with auto layout
    c) The grid

    Why not just:
  19. Stretch the grid to a maximum of what? How are you using it?
  20. You will never see a scrollbar, because auto height means stretch to the size of the content.
  21. You can, just not in afterlayout.
  22. update() triggers a layout on the component, so you can't call update inside afterlayout.
  23. http://www.sencha.com/forum/showthread.php?260106-Tooltips-on-forms-and-grid-are-not-resizing-to-the-size-of-the-text
  24. for ( i = 1; i <= 4; i++) {
    picturesListeners.push({
    element: 'element',
    delegate: 'div.img' + i,
    event: 'tap',
    fn: (function() {
    return...
  25. You can use this pattern to capture the index:



    var fns = [],
    i = 0;
    for (i = 0; i < 4; i++) {
    fns.push((function(captured) {
    return function() {
    ...
Results 1 to 25 of 108
Page 1 of 5 1 2 3 4