Search Type: Posts; User: nukboon

Page 1 of 3 1 2 3

Search: Search took 0.06 seconds.

  1. Replies
    1
    Views
    124
    I saw this todo on setValue of combobox, and my question when this todo will finish? or how about your (Sencha) plan to do this todo?

    [ext-all-dev.js line 139548] combobox.setValue todo:
    // TODO:...
  2. Wait for response.
  3. Ext.create('Ext.data.Store', {

    remoteSort : true,
    groupField : 'name',

    autoLoad : false,

    fields : ['name'],
    sorters : [
    {
  4. autoLoad: false ignored when we config remoteSort: true
  5. http://www.sencha.com/forum/showthread.php?173629-Store.getGroupString-ignores-Grouper.getGroupString

    Problem not solved.
  6. Oh, sorry i found this
    http://www.sencha.com/blog/ext-js-4-1-rc-2-released
    :((
  7. this Model.load(id)

    #1 id not is idProperty
    #2 callback params incorrect

    callback result:
    record = undefined,
    oparation.resultSet no records

    related topic
  8. Replies
    5
    Views
    1,410
    I strongly agree with @themightychrist that CSS dependency management is required. The problem about CSS loading that still remains is acceptable if we synchronously use "require" to the file (which...
  9. Replies
    2
    Views
    572
    Ext.util.Format.number is wrong thousandSeparator and decimalSeparator position

    ex.


    Ext.util.Format.number(1000,'0,000.00');
    // now output 1.000,00
    // should be 1,000.00
  10. Replies
    1
    Views
    661
    When i have config this:
    remoteSort: true
    OR
    remoteGroup: true

    Then
    autoLoad: false not work

    This's a bug? or remoteSort/remoteGroup = true auto cancel autoLoad = false
  11. You can try store.filter,sorters,groupers to handle any params you want to send to server

    and to easy handle store request i have extended store like this:



    Ext.define('Ext.data.myStore', {...
  12. Replies
    10
    Views
    3,955
    I try to config scope but it's wrong for me.
  13. Replies
    5
    Views
    1,410
    It is very good. If the Ext.require import CSS file of some ux.
  14. 4.1RC1 has bug

    Tileview.js change to:
    metaTableTpl: ['{%if (this.openTableWrap)out.push(this.openTableWrap())%}',
    ............
    '{%if...
  15. Ext.create('Ext.form.Panel', {
    title: 'Simple Form',
    bodyPadding: 5,
    width: 350,
    // The form will submit an AJAX request to this URL when submitted
    url: 'save-form.php',
    ...
  16. Version 4.1bx
    I cannot call addCls method from any Ext.Element object.
    32591
  17. I found solution
    remove
    sm.view.refresh(); in selectionchange but i don't know why

    ????
  18. give me your example :)

    this full code


    Ext.create('Ext.data.Store', {
    storeId:'simpsonsStore',
    fields:['name', 'email', 'phone'],
    data:{'items':[
    { 'name': 'Lisa', ...
  19. this is my code that not work:

    var sm = new Ext.selection.CheckboxModel();

    .......
    selModel: sm,
    listeners: {
    scope: this,
    itemdblclick: function(){
    console.log(this);
  20. this's full code that i config selModel with Ext.selection.CheckboxModel()
    i try to test by v4.0.7 - 4.1b2
    it's not work but when i removed selModel: sm it's work (itemdblclick not fire)

    ...
  21. rejectChanges : function() {
    .......
    for (i = 0; i < len; i++) {
    //now > 4.1 beta1
    me.insert(0, recs[i]);
    //should be > my suggestion
    ...
  22. Wow, Thank!
  23. Request to dev-team
    Some grid i when to set column's text:
    #1 a keyword
    #2 expand / description

    31273
  24. Height is 300 but when we add width config in parent panel it be 300-60
    Please try my sample code
  25. Ext.create('Ext.panel.Panel',{
    renderTo: Ext.getBody(),
    height: 300,
    //width: 400, //when we defined width it's no problem!
    layout: {
    type: 'border',
    padding: 5
    ...
Results 1 to 25 of 62
Page 1 of 3 1 2 3