Search Type: Posts; User: HriBB

Search: Search took 0.02 seconds.

  1. I've had a similar problem with parent who hasMany children. I solved it by using grid cellediting plugin, which works great for editing parent data, and for associated children I created a custom...
  2. http://docs.sencha.com/extjs/4.2.0/#!/api/Ext.data.Model-cfg-clientIdProperty

    I think that if you set clientIdProperty: 'clientId' on Ext.data.Model and then return clientId parameter in the...
  3. Any ideas on how to configure json reader to handle deepjson response from model.save() or store.sync()?

    I have deepjson writer functional and working. Server receives all data, creates, updates,...
  4. Yeah, same problem here. Takes waaaay to long to build.

    +1 for a "sencha package watch"

    One way ... you could just edit "build/APP/production/resources/APP-all.css", add styles, and when you're...
  5. +1
  6. Replies
    6
    Views
    3,934
    Same problem here ... will check it out tomorrow. Would be cool to have some free chrome&firebug plugin for ExtJS, such as http://www.illuminations-for-developers.com/
  7. Replies
    27
    Views
    7,459
    Another solution is to define a custom direct that proxy, that stores function references as strings, and tries to parse api functions on request. I wonder which method is better/faster?

    ...
  8. Replies
    27
    Views
    7,459
    I had a similar problem. Solved it by defining direct functions in constructor!


    Ext.define('App.model.Type', {
    extend: 'Ext.data.Model',
    idProperty: 'typeId',
    fields: [
    ...
  9. http://docs.sencha.com/ext-js/4-1/#!/api/Ext.data.association.HasMany-cfg-name

    You need to pass association name to the config. Docs say:

    The name of the function to create on the owner model...
  10. When you save a record with Ext.direct proxy and a server exception occurs, how can I reject the record? Callback function is not called, and there is no exception function on Ext.data.Operation.
    ...
  11. Thanks for the reply. It didn't work with this.items = [], I was getting "Uncaught TypeError: Cannot read property 'length' of undefined" error. After a forum search, I found the correct way:


    ...
  12. Is there any way to pass config to specific child components? Like "defaults" but only for certain titlebars for example?

    Lets say we define a titlebar and a list (without a store). We than wrap...
  13. It's the same with resizer problem ... when creating ResizeTracker in Resizer.constructor(), preventDefault:false solves my blur-event-not-firing problem. I've created overrides for Window and...
  14. I found the solution for the draggable header problem. Add the preventDefault: false to the ddConfig in Window.js at line 422


    initDraggable: function() {
    var me = this,
    ddConfig;
    ...
  15. REQUIRED INFORMATION

    Ext version tested:

    Ext 4.0.7
    Browser versions tested against:

    IE9
    FF8
    Chrome 16
  16. Same problem here.

    I have noticed that in generated css file, .x-docked is defined before .x-tab-bar, but in ext-all.css .x-docked is defined after .x-tab-bar. This causes the position to be...
Results 1 to 16 of 16