Search Results

Type: Posts; User: paul-2011

Page 1 of 10 1 2 3 4
Search took 0.02 seconds.
  1. Never mind, was roboform's browser extension slowing things down, please close the thread.
  2. Running Chrome 71.0.3578.98 here, noticed that Ext.Net pages with a lot of TabPanels and nested controls seem to have become slow as far as of UI snappiness is concerned, before Chrome 71 we could...
  3. Solution:

    parent.Ext.WindowMgr.getActive().close()
  4. Hi there, I'm looking for an alternative method of closing an EXT window from within since parentAutoLoadControl does not exit anymore on 4.x.
    Thanks
  5. Hey guys, I'm using Ext.Net 3.2 and I'm experiencing this issue:



    EXTJS-18135 Inserted at zero record in a grid store displays as a blank row when scrolled down.

    Is there any way to get...
  6. Tried the following code bellow to move Grid rows up and down but the record is always inserted at the original index despite the index that I pass via "insert(index, records)".

    Any idea?
    Thanks...
  7. Hi,
    After copying the sample from the example page to my app I noticed something strange, even though the filter works fine when I clear it the nodes which were contained within several different...
  8. Never-mind, it was the .NET XmlSerializer class that leaks memory.
    Thanks!
  9. Hi all, I'm experiencing a memory leak when using the TaskManager together with a ProgressBar, I pretty much copied the sample code from the samples, when I check the Windows Task Manager the number...
  10. Hi Vladmir, thanks for point out that the script is no good, in fact it used to work with older versions of Ext that I played with.
    Here's a good script for ExtJs4 that I just found:


    new...
  11. Hi, I'm able to load external pages inside a window when I use html components but when using Ext.Net components the window displays blank, could you please take a quick look at the code snippet...
  12. Hi there, I have a tabpanel with several panels as tabas and one of them has a frame loader that contains a page with a vertical row layout of 50%/50% for a grid on top and another panel on the...
  13. That's right, thanks.
  14. solution.


    private void selectComboByValue(Stringvalue)
    {
    combo1.SelectedItems.Clear();
    combo1.SelectedItems.Add(new Ext.Net.ListItem() { Value = value });
    ...
  15. In the sample bellow I would like to select "b",


    <%@ Page Language="C#" %>

    <!DOCTYPE html>


    <script runat="server">
    protected void btOK_Click(object sender, DirectEventArgs e)
  16. this code would help if I could get it to run:


    var menuItem = Ext.create('Ext.menu.Item', {
    text: 'menu item'
    });

    throws:

    TypeError: b[e] is not a constructor
  17. I found out how to insert always at the top, now I need a click listener and image:


    Ext.getCmp('mnuComponent').insert(0, {text:'test'})
  18. Hello, I'm using the code bellow to add an item to a menu without the need to run a directmethod however I'm not sure how to add a click listener, image and the index to the menu item, when I add it...
  19. Hello, I would like to hide and show a few panels in a more fancy manner and I've been experimenting with the animations but can't really get it to animate slower, it's too fast imop and the result...
  20. I found out what the problem was, I had this on the top of my client page:


    ClientIDMode="Static"

    Do you know any workaround to use the option above without breaking the DirectMethods?
    Thanks
  21. I forgot to add the resource manager when I re-created the sample, the tip to disable the proxy id is nice however I can't reproduce the error that happens on some of my pages using the sample I...
  22. Here it is:

    Master

    <%@ Master Language="C#" %>


    <%@ Register Assembly="Ext.Net" Namespace="Ext.Net" TagPrefix="ext" %>
  23. but how can I post a master page + child page runable content here?
  24. done that and no go, no errors but function doesn't get triggered, I always had DirectMethods working since version 1.4, not sure what I'm missing here.
Results 1 to 25 of 235
Page 1 of 10 1 2 3 4