Search Results

Type: Posts; User: KBorkiewicz

Page 1 of 3 1 2 3
Search took 0.01 seconds.
  1. In Test1.cshtml, I have nothing but this:



    @using Ext.Net
    @using Ext.Net.MVC
    @(
    Html.X().Container()
    .ContentFromAction("Test2", "Test2", new {id = 0})
    )
  2. Is this possible in Ext.Net 2.x?
  3. I can't find this in any documentation.



    <ext:GridPanel runat="server" SelectionSubmit="False"></ext:GridPanel>
  4. Nevermind, this was an issue due to security settings.
    Please close or delete this thread.
  5. Here is an example of what tabs look like in every other browser:
    7172

    And in IE8:
    7173

    The relevant code is:
  6. I am having this issue too - it works fine locally, but gets a "communication failure" error on the server. I have a timeout of 600000 on my DirectEvent, but it still fails after 30 seconds or so, so...
  7. I got the polling working by following the example, thanks.

    However I'm still stuck on the file download. I don't understand what you mean by "generate link (anchor tag) to download generated...
  8. Is there anything else you can suggest? Getting the data takes up to a minute and I would like to display something to the user during that time, so they know something is actually happening.
  9. I see.
    So how can I return a file, as well as showing and dismissing a wait dialog?
  10. I am exporting an Excel file on the click of a button. This is in my View:


    <ext:Button runat="server" ID="btnExport" Text="Export" StandOut="True" Icon="PageWhitePut" ToolTip="Export...
  11. Sometimes when I click the refresh button, I get a "Request Failure" with "Status Code: 200, Status Text: OK".
    What am I doing wrong?

    View:

    ...
  12. Currently I am using the following in my GridPanel to edit a row on mouse-over:


    .ColumnModel(columnModel =>
    {
    columnModel.Add(Html.X().ComponentColumn().Text("ID").DataIndex("ID")
    ...
  13. As a temporary solution, I'm just hiding the whole panel that contains the pdf when the dialog appears.

    Any tips on a more elegant solution would be appreciated.
  14. I see, thanks.

    But everything on my page is inside one viewport, and I'm using razor. I'm not sure how I can split it up using <div>s, as the thread you linked to suggests.
  15. I want to display a pdf inside my page and am using the following to accomplish that:


    viewport.Add(Html.X().Panel()
    ...
    .Loader(new ComponentLoader{Url = "/relativepath.pdf", Mode =...
  16. In my controller, I want to check if X.GetCmp<Toolbar>("toolbarId") returns an element. Simply checking if it is !=null always returns that it exists, even when it doesn't. How can I check whether or...
  17. The width of the list is not 70. It seems to be about 120.
    And the problem isn't just with the list, but also the field.

    I added .ListConfig(Html.X().BoundList().MinWidth(50)) and it did not...
  18. How do I make the width of the ComboBox be the same as the width of the column?

    Here is what's happening:
    5521

    Here is my code:

    columnModel.Add(Html.X().ComponentColumn()
    ...
  19. Only just figured it out:


    .ServerProxy(Html.X().AjaxProxy().Url(Url.Action("GetDataForRefresh")))
  20. I would like to change the way the CheckboxSelectionModel looks. How can I make this happen?

    I want to add a column name instead of the [] that allows for selecting all. Or at least, a column name...
  21. I have a GridPanel with ComponentColumns that are set to Editor(true).OverOnly(true) -- i.e., rows are editable on mouse-over.

    One of the columns is a CheckBoxSelectionModel. If I select a...
  22. Thank you. That solved it.
  23. When mousing over the field in the row, the ComboBox becomes editable. However, when you click to display the list, and move your mouse down to select one of the options, the ComboBox is no longer...
  24. So I take it this is not possible...
  25. What I mean is, I want the formatting of my rows to look like this: 5395 (<- click to see image)
    But I want the address to have separate editable fields for street, city, state, and zip code.
Results 1 to 25 of 61
Page 1 of 3 1 2 3