Search Type: Posts; User: bt_bruno

Page 1 of 5 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    6
    Views
    2,353
    Nice catch! I've just updated the code and tested against IE, Firefox and others... Should be ok now.
  2. Replies
    4
    Views
    360
    I've just updated it. You might want to check again ;)
  3. I noticed the same change... My workaround was this:


    {
    xtype: 'segmentedbutton',
    allowDepress: false,
    items: [{
    text: 'One',
    itemId: 'one',
    pressed: true
  4. Proxy has a onDestroy method that also destroys Reader and Writer, you might want to add this on your override.


    Ext.define('ProxyDestroyFix', {
    override:'Ext.data.proxy.Proxy',

    ...
  5. Easy workaround:
  6. The best would have engineer fix this, but a workaround is use the old way:


    MyApp.view.Login.superclass.initialize.apply(this, arguments);

    Or a short version (new for me, but I guess it...
  7. You have a typo when declaring the fieldset items. You used item, change for items. Not only there, but when declaring form items as well.
  8. I believe you can do that with renderer, just like the original index.html example available with the source code https://github.com/mitchellsimoens/Ext.ux.touch.grid


    {
    header :...
  9. I think you're missing scope:this.


    this.form.getForm().submit({
    url: 'handler.php',
    method: 'POST',
    scope: this, //<--- fix scope problem
    success: function(form, action) {
    ...
  10. Touch has a repaint method:

    http://docs.sencha.com/touch/2-0/#!/api/Ext-method-repaint
  11. Replies
    6
    Views
    1,539
    I felt like writing a quick example, here it is: Animate components in a view
  12. Replies
    6
    Views
    1,539
    Hello @allisterf, sorry for the waiting. To animate components you can use showAnimation or hideAnimation config options. So you could init your button with hidden: true, and then call...
  13. Replies
    5
    Views
    2,760
    Wow, all the theming looks perfectly on Architect! Good initiative Luca. Mind if I blog about it as well? ;)
  14. Another Ext to NodeJS project?

    Yes, yes... I know that there are a bunch of other guys trying to export Ext JS capabilities to Node, but they all sound to much for me! Some try to rewrite all Ext...
  15. The problem is, once you tell the datastore to load, there's nothing you could do to prevent grid of being populated. You can't do post-processing and check if the data loaded is really from the...
  16. I think the best would be abort old request, so we save some processing and stuff. We could make your store local, and fill it with a regular Ext.Ajax request. Maybe this snippet could help you out: ...
  17. Ok, so the default font-size is 12px. I don't know if this is an issue from your browser (try to check the zoom), or really an issue with the default font-size.

    You can also easily customize the...
  18. Yes you're right, you can't guarantee that out of the box. But I can't understand the use of a store for the details view. Could you maybe explain with some code how is your master/details structure...
  19. Hi @PMfaithoffly, welcome aboard! The activate should be put in tabpanel children, not in tabpanel itself. Once a tab is activated, the event is triggered.


    Ext.create('Ext.tab.Panel',{
    ...
  20. IE simply doesn't implement the CSS features required. That's why we have ugly table structure bounded to image sprites.

    Prior to Ext 4 you had to do it completely manually, cutting images in...
  21. In ExtJS examples there's a specific section called "Accessibility". Check the Keyboard Feed Viewer. Basically you can navigate through <tab>, and to "enter" a component use <enter>, and to return to...
  22. This is the definition of clearFilter methods:
    clearFilter: function(suppressEvent) {
    var me = this;

    me.filters.clear();

    if (me.remoteFilter) {
    ...
  23. One temporary workaround:


    Ext.override(Ext.tab.Tab,{
    overCls: Ext.baseCSSPrefix + 'tab-top-over'
    });

    Of course it's temporary, because it fails when the Tabs are at the bottom. If your...
  24. It's seems to be bug, reported here: x-tab-top-over never inserted into any element. I gave a workaround solution, so check this previous link.

    Basically, Ext has this CSS class defined: ...
  25. I believe it facilitates server side paging. Some servers use a single page parameter, others use a combination of start and limit.

    You can easily switch it off by setting pageParam to undefined,...
Results 1 to 25 of 119
Page 1 of 5 1 2 3 4