Search Results

Type: Posts; User: ltctech

Page 1 of 2 1 2
Search took 0.01 seconds.
  1. Thanks, works fine now.
  2. @ljankowski

    While your example may work in most cases, it may not be the most maintainable solution.
    I tend to stay away from invoke and reflection; from personal experience nothing good comes of...
  3. I agree that IFrames are bad, garbage collection on most browsers is terrible for IFrames.

    I also don't think there is an easy way to make truly portable dynamic user controls.
    There is no way to...
  4. You have no store or model for your grid, there is no way it's going to work.
    See this example: https://examples2.ext.net/#/GridPanel/ArrayGrid/Simple/
  5. Have you wrapped this script in an XScript section, token replacement #{} only works in XScript sections or within ext markup.
    Also use Firefox and either open up Web Developer Tools or get Firebug,...
  6. I have a dynamic tab panel example here:
    http://forums.ext.net/showthread.php?24506-2-2-Store-name-is-undefined-when-ascx-is-loaded&p=107614&viewfull=1#post107614

    Notice that my example generates...
  7. If the grid's view is refreshed right after showing a notification, the notification will show up in the wrong place.
    Specifying alignToCfg does not affect it either.
    This did not happen with Trunk...
  8. I just thought there'd be a single call to clear the query, kind of seems convoluted.
    It appears I actually have to enable it (it is disabled upon filter already) and clear it, then filter for it to...
  9. Your example looks much more elegant, especially server-side.

    My combobox needs to have ForceSelection="true".
    When you have a query filter from combo applied and do setValue it sets nothing....
  10. OK, I reworked my example with some of your advice.
    Didn't know that listeners had single option, that was one of my major sticking points with them, thanks.

    I implemented both listener and...
  11. Well Ext JS only defers the load call in the constructor of the store.
    This is probably to avoid hanging the UI thread and having the browser popup a warning when all of the stores are loading.
    ...
  12. Apparently, Store from Ext JS also does defer for autoLoad, though I can call load myself for paging stores.
    So to set the value and page on page load I'll have to manually load store.
    Ext JS does...
  13. Yeah, posted in the wrong forum, force of habit. ;)

    Your example although works is somewhat brute force.
    It requires you to fill out the record completely instead of just using the PK/value....
  14. Ext.NET Trunk r5134

    Hi,

    I need to set a paging Combobox's value via a DirectEvent.
    Problem is that if the Combobox is not on the page with the record, it will not set it.
    Is there a way to do...
  15. Maybe just reverse the two statements, call parent then set null?

    I am using this workaround right now, calling super to bypass Ext.NET destroyStore:


    Ext.data.PagingStore.override({
    ...
  16. PagingStore:


    destroyStore : function () {
    this.data = this.allData = this.snapshot = null;
    this.callParent(arguments); //<-- data is null before calling
    },
    ...
  17. Works, Thanks.
  18. Ok, trunk version allows paging.

    I have another problem now.
    When you type a query and select something, you cannot clear the query and search for something else.
    The list that comes up is...
  19. I am using the latest release pulled from Nuget.
    Will compile trunk tomorrow; it probably has been fixed if it runs fine for you.

    I like the Nuget releases as VS tells me when there are updates,...
  20. Ext.NET 2.2.0.40838

    I am having trouble getting a combo/store to page, what am I doing wrong?
    I get a javascript error fn is not defined in Ext.data.proxy.PagingMemory under read function line...
  21. Ext.NET 2.2.0.40838

    This problem did not exist in Ext.NET 2.1.1.

    With InputWidth:
    6175

    Without InputWidth:
    6176
  22. Maybe you need to refresh view or use insert instead?

    This is how I add a row into a gridpanel that has editingPlugin and a combo.
    Maybe it will be useful...


    var addRow = function (grid,...
  23. Any update on this bug from Sencha?
    Kind of weird that it's still not been fixed now that Ext JS 4.2 is RTM.

    Have you guys considered using this workaround internally in Ext.NET, when...
  24. See this thread:
    http://forums.ext.net/showthread.php?24394-Avoiding-Redundant-JSON-with-LoadControl-via-DirectEvent

    In short, when you call component.Render() it generates JavaScript that...
  25. This is how my dynamic tab panel is implemented:

    testuctabs.aspx


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

    <%@ Register Src="~/testuctab.ascx" TagName="TestTab" TagPrefix="cstm" %>...
Results 1 to 25 of 49
Page 1 of 2 1 2