Search Type: Posts; User: makana

Page 1 of 5 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    22
    Views
    4,063
    @KajaSheen:

    Pretty fixed lines in examples/themes/themes.js
    #899

    If your theme extends the classic theme or looks similar to it, you can add


    function getSizing(id) {
    var theme =...
  2. Replies
    22
    Views
    4,063
    Yes, I got this, too.

    I'll try to point out some things I encountered and which I think should be fixed/changed.

    1. The "null is not a color for mix" error:

    It's in line 124 in...
  3. Hello guys,

    I thought I could share my SilverBlue/SilverRed themes. I use them since 4.1.
    Porting it to 4.2.0 took some time since the docs/guides regarding theme creation/sencha cmd are...
  4. Replies
    22
    Views
    4,063
    @london_lawyer: Thank you very much! That really helped a lot!
  5. I want to share a messagebox extension that allows you to display selectable options via radiobuttons or checkboxes.



    /**
    * @class Ext.ux.window.OptionsMessageBox
    * @extends...
  6. Hi, folks!

    Want to share my implementation of array types for model fields. Comments are welcome.



    /**
    * @class Ext.data.Types
    * Additional Types for {@link Ext.data.Field}
    */
  7. Replies
    3
    Views
    1,773
    After long debugging deep into the ExtJS internals, I found out, that my problem exists due to this one.
    http://www.sencha.com/forum/showthread.php?247316
    Seems it got fixed in later versions, i...
  8. Replies
    3
    Views
    1,773
    I have a similar problem and think it relies on the same internal behaviors.

    If I edit a grid cell and the renderer returns html (a string with span tags in my case, html is valid) for the new...
  9. Replies
    31
    Views
    8,387
    Hey guys,

    I just want to toss in another CheckComboBox implementation that I use. It's just a plugin to visually include the checkboxes into the combobox list. It doesn't do any other logical...
  10. I use the Ext.Function utilities and the controller's init function to achieve this. Nontheless I agree that there's a lack of the functionality to define objects ({fn: ..., buffer: ...} etc.) in the...
  11. Hello everyone!

    Since I find it very useful, I ported Animals Field HelpText plugin to ExtJS4.
    (see http://www.sencha.com/forum/showthread.php?77984)

    I want to share the code here.



    /**
  12. Yes, that's what I mean. I think they intent to hide the mask (that is what onLoad does) on exceptions. but they don't bubble the exception event from proxy to the store, so there's no exception...
  13. There's one line in ExtJS code that shows that Sencha thought about hiding the mask on exceptions.

    bindStore in LoadMask.js


    me.mon(store, {
    scope: me,
    beforeload: me.onBeforeLoad,
    ...
  14. Always set iconCls, even if it is not in the config, so that an old one is removed in that case.



    Ext.define('Ext.override.window.MessageBox', {
    override: 'Ext.window.MessageBox',
    ...
  15. Hey guys,

    I use this override to fix this. It also handles suspendEvents(true) with the true-parameter to queue the events and fire them later with the resumeEvents method.

    In general, it seems...
  16. I'm trying to access the fields of a model in that way (like documented)


    var fields = myModel.fields;

    (BTW: There's also a getFields() method that is NOT documented and returns this.fields)
    ...
  17. Problem is still available.

    Ext.grid.column.Column needs an empty initResizable method:


    Ext.grid.column.Column.override({
    initResizable: Ext.emptyFn
    });
  18. REQUIRED INFORMATION

    Ext version tested:

    Ext 4.0.2a


    Browser versions tested against:

    FF6 (firebug 1.8.1 installed)
  19. REQUIRED INFORMATION

    Ext version tested:

    Ext 4.0.2a


    Browser versions tested against:

    FF6 (firebug 1.8.1 installed)
  20. Replies
    2
    Views
    859
    I confirm that. Same with extended Toolbars.
  21. Hello bclinton,

    you can use Ext.util.Observable.capture.



    Ext.util.Observable.capture(myHTMLEditor, function() {
    console.log(arguments);
    });
  22. A plugin to adjust a grid column width to its content if you doubleclick on the column's splitter.



    /**
    * @class Ext.ux.grid.plugin.HeaderAutoResizer
    *
    * Plugin to add a "Adjust column...
  23. Nothing is impossible. But sometimes difficult ;)

    I had the same issue and overrode Ext.grid.feature.Grouping.


    Ext.grid.feature.Grouping.override({
    /**
    * Override the default...
  24. Replies
    4
    Views
    3,433
    Hi Ekambos,

    actually I haven't developed a working AIR adapter for ExtJS 4.0 due to a lack of time during the last months.
    I started some work some months ago, but had huge problems using ExtJS...
  25. Grids with flexed columns now reserve the space for the scrollbar. I updated the code in the first post.
Results 1 to 25 of 117
Page 1 of 5 1 2 3 4