Search Results

Type: Posts; User: tjbishop

Page 1 of 2 1 2
Search took 0.01 seconds.
  1. How do we get on the private developer test? I would be interested in testing that our for you on a MVC 3 Razor platform.
  2. Just another note, these are common HTML tags that are being re-formatted. (like the H1, div, p tags)
  3. It seems that after I add EXT to my page it messes with basic styles. I added RenderStyles="None" to the resources manager and that put my stuff back to normal but of course doesn't style EXT...
  4. How can position a window over an existing div on the page. I was thinking of passing the divs x and y to the window in the BeforeShow listener.
  5. Oh yeah, forgot to add the add & delete events...



    <EventAdd Fn="CompanyX.record.add" Scope="CompanyX" />
    <EventDelete Fn="CompanyX.record.remove" Scope="CompanyX" />
  6. I was having an issue saving the data when I would click on details. I found that this is because the window that open is now part of the calendar object and not the edit window object. The example...
  7. Is there a way to wait for a call to a DirectMethod wait before proceeding? I am calling a DirectMethod in a for loop and I want to update a progress bar every time the method get's called. The...
  8. It seems that it was an order of operations issue. I used X.AddScript to execute the javascript after I loaded my treepanel...


    ...
  9. Oh yeah, I am adding the nodes on Page_Load. Could it be an order of operations issue?
  10. Could I be adding my nodes wrong in the code behind? All other functionality seems to be working okay.
  11. That didn't seem to work. Here is my code sample. I put your Ext.onReady code in the head of my page. The rest of the Treepanel is being built in code behind.



    ...
  12. How can I make the a treepanel node become selected by right clicking as well as left clicking?
  13. Great, thanks!
  14. So in the handler I would have to call a javascript function that detects the browser and then executes the proper code?
  15. Sorry about that, here you go...



    <ext:Window ID="winViewPatientInfo" runat="server"
    Icon="User"
    ...
  16. Any ideas why el.setSize in a BeforeRender handler does not work in Internet Explorer 8?



    <Listeners>
    <BeforeRender Handler="el.setSize(window.innerWidth - 100,...
  17. Go it! The maximize had to be moved after .show(). The following code works...



    DesktopWindow newDesktopWindow = new DesktopWindow();
    newDesktopWindow.ID =...
  18. If I try the following code, I do not get the error anymore but nothing happens.



    DesktopWindow newDesktopWindow = new DesktopWindow();
    newDesktopWindow.ID =...
  19. I am trying to create a new desktop window from code behind in a DirectMethod. I understand that this was previously not possible. Is it now? If so, I am receiving this error when I try to call the...
  20. Perfect, thanks!
  21. I need to execute js from an ajax postback that was initiated from an ext:TaskManager. The task manager and js code are all on the child page but the Ext:ResourceManager resides on the Masterpage....
  22. Should I just add a handler to the .show, event to refresh the iFrame in the ext window?
  23. Well, actually it's when I close the window and re-open (with .hide, .show). So technically it's just being hidden again. I'm not sure if ext is reloading the iFrame.
  24. Is there anyway to make sure a fresh (non-cached) page is being loaded in an iFrame from ext.net? I tried adding the following to no avail in the actual iFrame page...



    Response.Expires = -1;...
  25. You are using the DropDownField. At least I was on the right track. Thanks!
Results 1 to 25 of 26
Page 1 of 2 1 2