How can I access UserControl's events after its rendering?

  1. #1

    How can I access UserControl's events after its rendering?

    Good morning,

    I have created a desktop window in runtime and place a rendered UserControl inside of it.
    There is a form on this UserControl that saves records on the database.
    After that rendering, I don't know how to access the methods from the UserControl.

    This is the method that I have used to create my Desktop Window

    BaseUserControl ucControl;
                ucControl = (BaseUserControl)this.LoadControl(string.Concat(_Url + Wind + ".ascx")); 
                DesktopWindow d = new DesktopWindow();
                d.ID = string.Concat("Wnd", Wind);
                d.Title = Wind; 
                d.Width = 410; 
                d.Height = 330; 
                d.Maximizable = true; 
                d.Minimizable = true; 
                d.Closable = true; 
                d.Icon = Icon.BuildCancel; 
                d.CloseAction = Ext.Net.CloseAction.Close; 
                d.Listeners.Destroy.Handler = "destroyFromCache(this);"; 
                d.Listeners.Close.Handler = "destroyFromCache(this);"; 
                d.Layout = "FitLayout"; 
                d.MonitorResize = true; 
                d.ContentControls.Add(ucControl); 
                X.Js.Call("destroyFromCache", new JRawValue(this.MyDesktop.ClientID)); 
                this.MyDesktop.ContentControls.Add(d); 
                X.Js.Call("putToCache", new JRawValue(this.MyDesktop.ClientID), ucControl.ControlsToDestroy); 
                d.Show(); 
                d.Render();
    If I have a button responsible to bring a method from the UserControl, how should I implement this?

    Thanks in advance!
    Last edited by geoffrey.mcgill; May 03, 2012 at 8:00 PM. Reason: please use [CODE] tags
  2. #2
    Hello again!

    Does anyone know how to solve my previous issue?

    I searched on your forums (free) and I found many questions that seems like my problem, but any of them received successfully answers.

    Our company intends to buy EXT .NET components and we are running some tests in order to check if we can use your product properly.

    Can someone help to find a way to solve my issue or suggest any alternative way? If we can't execute this kind of action, we must start to look for another tool.

    I'm available to answer any questions regarding the functions that we are trying to develop.

    Thanks for your attention!
  3. #3
    Good morning,

    Does anyone know how to answer my question.
    I have posted this thread on last friday and I'm still waiting.

    Please, help!
  4. #4
    As we didn't receive any support from EXT .NET team, we will not acquire your product.

    The forum support didn't provide any assistance to our issue/questions.

    I would like to provide a piece of advice: When someone posts a thread, at least answer the user's answer, even if you had to say "sorry, we don't know!"

    I have searched in all the threads from the free and premium forums, everytime that someone asks something difficult, you just don't answer it. You should find a way to solve this scenario.

    Thanks.
  5. #5
    Hi BPPC,

    I appreciate the feedback, and I apologise for the lack of response. Lately we've been stretched a little thin and priority has to be given to Premium Help forums.

    For others reading this thread in the future, here's a couple links which provide recommendations and tips on getting a fast and accurate response from the main Ext.NET support team:

    http://forums.ext.net/showthread.php...ing-New-Topics

    http://forums.ext.net/showthread.php...ation-Required

    It's always best if forum posts can provide a simplified .aspx (and/or .ascx) sample demonstrating as much of the scenario as possible. If we can copy+paste a sample into our local test project without having to modify the code to make it 'run', you will get an answer from the support team.

    Anyways, best of luck with your component search, and thanks again for your comments/feedback.
    Geoffrey McGill
    Founder

Similar Threads

  1. [CLOSED] Access Direct Method in Dynamic Usercontrol
    By SymSure in forum 1.x Legacy Premium Help
    Replies: 9
    Last Post: Jun 11, 2013, 11:35 AM
  2. Replies: 1
    Last Post: Aug 14, 2012, 8:51 AM
  3. Dynamic UserControl + Direct Events
    By Zdenek in forum 2.x Help
    Replies: 4
    Last Post: Jul 22, 2012, 5:51 PM
  4. [CLOSED] Managing events from a dynamically loaded UserControl
    By egvt in forum 1.x Legacy Premium Help
    Replies: 4
    Last Post: Feb 20, 2012, 4:49 PM
  5. [CLOSED] [1.0] Usercontrol Rendering
    By state in forum 1.x Legacy Premium Help
    Replies: 6
    Last Post: Nov 02, 2009, 3:19 PM

Posting Permissions