Search Type: Posts; User: Zdeno

Page 1 of 5 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    1
    Views
    102
    Hello, is there any bug when you use following block of code:


    if (!this.dialog) {
    this.dialog= Ext.Viewport.add({
    xtype : 'dialog'
    });
    }
    this.dialog.show();
  2. Replies
    2
    Views
    404
    It is up to you. Im going override clients application into Ext 4. Maybe someone else need fix this probem.
  3. Replies
    2
    Views
    404
    You have CheckboxSelection model which have defines:

    width : 42,
    header : '<div class="x-grid3-hd-checker" style="width: 20px; margin-left: 20px;"> </div>',

    However, there is still old...
  4. Replies
    2
    Views
    376
    I get same error as in following thread: http://www.sencha.com/forum/showthread.php?249215-Ext-Htmleditor-readOnly-js-error



    NS_ERROR_FAILURE: Component returned failure code: 0x80004005...
  5. If nobody did it alrady, overwrite following plugin http://loianegroner.com/2010/03/importing-an-excel-spreadsheet-into-an-extjs-datagrid-using-datadrop-grid-plugin/ into ExtJS 4
  6. Replies
    7
    Views
    883
    TabPanel in 4.1 uses Ext.tab.Bar and renderTemplate is a bit different

    //@private renderTpl: [
    '<div id="{id}-body" class="{baseCls}-body {bodyCls}<tpl if="ui"> {baseCls}-body-{ui}<tpl...
  7. Replies
    6
    Views
    336
    I didnt have a time to inspect why setTitle doesnt work in beforerender function. I just simply inspect what does this function do. What I can say now:

    1) fieldset isnt rendered yet
    2) legend...
  8. Pure way would be create own paging toolbar. As a good start you can check source code of Ext.toolbar.Paging. Another way is override this component. Look arround the private function getPageData. I...
  9. Replies
    6
    Views
    336
    Try this

    listeners : {
    beforerender : function(form) {
    form.items.get(0).titleCmp.update('New title');
    }
    }

    Live example: http://jsfiddle.net/fNjgU/1/
  10. Replies
    6
    Views
    336
    I dont have any problem change title after render. Can you post sample code how do you change the title before render? I think there is the problem why you dont see any changes on fieldset title.
  11. Any news in 2013? Are you planning any changes in licensing policy ? Would by possible to buy Desktop Packager separately?
  12. This does not work for me in 4.2.0 with:

    config.viewConfig = {
    markDirty : false,
    emptyText : 'strNoItems'
    };
  13. Replies
    2
    Views
    358
    Cheers mate :)
  14. Replies
    2
    Views
    358
    Does anybody have any simple solution how to get last edited cell/row from editingPlugin except overriding the plugin? As I checked the source code there isnt any chance to get it.
  15. Not sure it it isnt consequence of bad configuration but when you set config property forceFit to true and then you will try hide and show column, the hidden column had no width and is still hidden....
  16. Replies
    1
    Views
    138
    Does anybody know correct way how to hide/show form.field.File? When you call
    field.setVisible(false); the button is totally broken (width is arround 5px and text is missing).
    The best solution i...
  17. Replies
    4
    Views
    724
    I dont have any fixed structure. Thats why I ask in previous post, if possible create new record by model. Array of arrays is badly readable - without model on same place you dont know which value...
  18. Replies
    4
    Views
    724
    This didnt really fix my problem. When I check level data array, i will get array of objects:

    [Object {
    value = 10,
    text = "Level 10"
    },
    Object {
    value = 20,
    text = "Level...
  19. Replies
    1
    Views
    160
    If nobody did it already you can try override old ExtJS 2 plugin: http://www.sencha.com/forum/showthread.php?47025-Ext.ux.VirtualKeyboard-and-its-plugin

    or try this project:...
  20. Did you try override getPath function in Ext.Loader?
  21. Just finished simple plugin :)


    Ext.define('Ext.ux.grid.HeaderContextMenu', {
    alias : 'plugin.headercontextmenu',
    mixins : {
    observable : 'Ext.util.Observable'
    },

    ...
  22. As Evant wrote:


    ...
    viewConfig : {
    onBeforeCellContextMenu : function(htmlCelEl, colId, record, htmlRowEl, rowId, e) {
    console.log(htmlCelEl, colId, record, htmlRowEl, rowId, eg)...
  23. Replies
    2
    Views
    374
    I would like to set value to the combobox when JsonStore isnt loaded yet. I know both values for valueField and diplayField.
  24. Replies
    2
    Views
    374
    Hi, is possible to load value into Ext.form.field.Combobox in load callback? I tried call


    form.findField(fieldName);

    but this will return null. I have hiddenName property set.

    Edit 1: It...
  25. Replies
    4
    Views
    724
    Is possible to use idProperty on model which is assign to arraystore?


    Ext.define("Level", {
    extend : "Ext.data.Model",
    idProperty : 'value',
    fields : [
    { name: 'value',...
Results 1 to 25 of 118
Page 1 of 5 1 2 3 4