Search Type: Posts; User: dmurat

Search: Search took 0.02 seconds.

  1. After some thought, it seems to me that will be more appropriate to introduce a whole new mode, something like SIMPLE_WITH_SHIFT. I had a requirement for checkboxmodel only, but maybe this can be...
  2. Actually, it is very similar to this, except in SIMPLE mode SHIFT key doesn't work. So in effect, patch implements some kind of hybrid between SIMPLE and MULTI modes, where CTRL is not required for...
  3. I'm sorry, I wasn't explained the problem correctly, and I wrote a patch some time ago so I forgot what is it for exactly.

    Selection/deselection of rows by using their checkboxes behaves in the...
  4. When CheckboxModel is used with grid, problem is that rows can be selected only by clicking on their corresponding checkbox. I believe this is not very user friendly, and I think it will be better if...
  5. Great :-)

    For my reference, can you, please, provide forum link and ticket number if they are available? Tnx
  6. When CheckboxModel is used, header checkbox is not cleared when related store is cleared, or when all records from a store are removed. Following override fixes a problem for me:

    ...
  7. I see. If I understood correctly, then something like following will be correct?

    store.load(
    {
    params: {
    // some params
    }
    }
    );
  8. Replies
    99
    Views
    30,499
    Same request as dunamis :-). Please, can you provide dload link for version 2.0. This will be of great help for me, tnx.
  9. I've found that I can't use jsonData as config option for store.load() method. For example, I didn't manage to use something like:

    store.load(
    {
    jsonData: {
    // some json data...
  10. When using new PageAnalyzer tool, I have several layout runs for same view. Is it possible to see in PageAnalyzer what triggers specific layout run? I'm using ext 4.1.0 RC3. Tnx
  11. +1 for fixing this before GA.
    Fix by zombeerose works perfectly for me. Thank you very much, zombeerose.
  12. Replies
    99
    Views
    30,499
    As it turns out, 4.1.0-rc2 changed visibility mode to 'offsets' for Window class. For restoring correct behavior of Notification, I just set hideMode to 'visibility' in Notification's definition:

    ...
  13. Replies
    99
    Views
    30,499
    Hi,

    I'm having problems with running this extension under Ext 4.1.0.RC2. Basically, I have a button which shows and hides notification, where notification is instantiated on first show and reused...
  14. Please do if you wish. I posted here since the problem is related to builds, which are not available to everyone.

    Best regards,
    Damir Murat
  15. I know these are not release versions, but this bug scares me pretty much, since it brings down my whole app, and I'm already working with ext-4.1-20120323 build. Here are details... Following code...
  16. When executing code below, you will see that load mask doesn't mask form's buttons:


    Ext.onReady(function() {
    var simpleForm = Ext.widget({
    xtype: 'form', layout: 'form', collapsible:...
  17. With dataview example taken from documentation, if initComponent method is added to a dataview, TypeError is thrown:


    Ext.onReady(function() {
    Ext.define('Image', {
    extend:...
  18. I wasn't aware of single option, tnx for the tip. I've also tried with afterrender, but it seems that it fires to early since the layout is not fixed in that case.

    Damir Murat
  19. Code bellow demonstrates the bug for vbox layout:


    Ext.onReady(function() {
    Ext.create('Ext.panel.Panel', {
    renderTo: Ext.getBody(),
    title: 'Some panel',
    ...
  20. Reported warning is "Store defined with no model. You may have mistyped the model name."

    To reproduce, one can use ExtJS TreeGrid Example (ext-4.0.7/examples/tree/treegrid.html) and modify...
Results 1 to 20 of 20