Search Type: Posts; User: fangzhouxing

Page 1 of 5 1 2 3 4

Search: Search took 0.06 seconds.

  1. sorry, this problem is not related to the autoHeight property. All my grids have the same problem.
  2. When set autoHeight true, the first column of grid is not sortable, and is not resizable, and its width is fixed!
    Anyone can help? Thanks in advance!
  3. Replies
    917
    Views
    567,025
    I use ExtJS 2.3.0, and I add following patch to css that solve the same problem(not need to change editableitem.js )


    /* patch */
    img.ux-gridfilter-text-icon,
    img.ux-rangemenu-gt,...
  4. I found that the Ext 3.0 version of this extension can be used with Ext 2.3 with small modifications:


    /*
    * ColumnLock v1.7.1 for Ext 3 (changed for 2.3)
    */
    Ext.ns('Ext.ux.grid');
    ...
  5. Thanks!
  6. Replies
    6
    Views
    1,066
    see: http://www.extjs.com/forum/showthread.php?p=381895#post381895
  7. Replies
    5
    Views
    3,946
    @makana, thank you for your help.

    I found that you also must override the getTotalCount method in Ext.data.Store like this:



    divo.data.T_PROJECT_CONTRACTOR = "t_project_contractor"...
  8. Replies
    5
    Views
    3,946
    I have the same problem.
  9. Anyone?
  10. I change the Ext.air.FileProvider in ext-air-debug.js like this:


    Ext.air.FileProvider = function(config){
    Ext.air.FileProvider.superclass.constructor.call(this);

    this.defaultState = {...
  11. Anyone use the ux.ManagedIFrame extension in the Adobe Air application?

    I just see the error message 'Inline frames are NOT enabled/supported by your browser'
    by Introspector.
  12. Replies
    2
    Views
    1,099
    Anyone can explain the difference between constructor and onRender method, when should I put code in constructor, and when should I put code in onRender method?
  13. Has anyone used autosuggestion/autocomplete textfield just using ExtJS core?
  14. My complete working code here, wish it helps:


    form.member.MemberCorpEditForm = Ext.extend(Ext.form.FormPanel, {
    myId : function(id) {
    return this.id + "-" + id
    },
    initComponent :...
  15. I always do it like this:


    var areaFld = {
    hideLabel : true,
    xtype : 'combo',
    name : 'areaCode',
    id : 'area', <---------- use id in Ext.getCmp...
  16. hi, mystix, I used your code in my project of Ext 2.3.0, is it ok? (I removed Ext.isNumber and Ext.isDefined).
  17. @ JamesC, thank you, the problem in 2.3.0 is also solved!
  18. I am using ExtJS 2.3.0, and have the same problem when show msg by markInvalid in form. When I move the cursor above the textfield, then the missing borders appear!
  19. see: http://extjs.com/forum/showthread.php?p=369867
  20. I have found that this bug was caused by the use of Ext.ux.grid.GridViewMenuPlugin!

    see: http://www.extjs.com/forum/showthread.php?p=370138#post370138
  21. Replies
    60
    Views
    23,355
    Using 'Ext.util.CSS.createStyleSheet' will have problem in IE7.

    see: http://extjs.com/forum/showthread.php?p=369735
  22. I just upgraded to ExtJS 2.3.0, and I found a bug (see attached pic for detail!):
    After some time, my Ext.window stop showing in IE7.

    The IE7 error (invalid call or invalid argument) come from...
  23. Replies
    5
    Views
    1,349
    hi,@jarlau,can you explain why use the buffer config item?
  24. I just tested it,and this bug is fixed in version 2.3.0.
  25. @meisong,在iframe中加载的ExtJS代码可以这样调用父窗口的代码:


    parent.Ext.MessageBox.hide();

    这个例子就是在父窗口发出了Ext.MessageBox.wait...,等到iframe中的代码加载和初始化完毕后,让父窗口的提示框消失。

    希望上面的例子对你有所启发。
Results 1 to 25 of 120
Page 1 of 5 1 2 3 4