Search Results

Type: Posts; User: dangerlinto

Page 1 of 2 1 2
Search took 0.01 seconds.
  1. This has been a problem nearly anywhere a combobox or selectbox element is being used.

    An example of this behaviour can be seen by using a touch screen on the examples page for Combobox overview...
  2. Specifically we are running into problems with Nullable DateTime / Nullable DateTimeOffset.

    OData services 4.0 template DateTime fields in SQL as DateTimeOffset- which as we've noted, are not...
  3. I'm having some unexpected behaviour setting the Cls property of a grid.

    Using Razor

    X.GridPanel()
    .ItemID( "Treatments" )
    .Cls( "Localize" )
    .Title( "People" )
    ...
  4. Using 4.0.0 MVC


    X.ImageButton()
    .ImageUrl( "~/Resources/Images/ComapnyLogo.gif" )
    .Href( "http://www.somecompany.com/index.html" )
    .HrefTarget( "_blank" )

    This...
  5. I'm getting unexpected behaviour using Ext.ComponentQuery<T> ( string selector)

    The following code, where the menu in question has an ID and I use Ext.GetCmp it works works fine:


    public...
  6. I would like to bind the 'Y' and 'N' keys to the 'Yes' and 'No' options presented when using DirectEvent Click Confirmation.

    Example Code



    X.MenuItem ( )
    .ItemID ( "btnLogoff" )
    .Text (...
  7. I'm looking to see what the syntax is in Razor View to apply a listener on all Radio Buttons inside a radio group. It would be fantastic to not have to apply them all individually.

    I've tried...
  8. Turns out I was able to put two halves of solutions together to make a reasonable work-around

    On the grid (Razor MVC)


    X().GridPanel()
    ...
    .Listeners(
    l =>
    {
  9. The horizontal scrollbar in a GridPanel will not be rendered unless you specifically supply a height to the grid panel. This has been fixed in ExtJs 4.2.2 (see EXTJSIV-9204) , which is not a public...
  10. Is there a way to be able to have the drop & drop functionality as in this example:

    http://mvc.ext.net/#/DragDrop_Basic/Example2/

    work alongside a drag and drop treepanel?
    ...
  11. I'm looking to make a screen designer, and have run into an issue with being able to nest Drop Zones.

    using the example at:
    http://mvc.ext.net/#/DragDrop_Basic/Example3/

    I've made a couple of...
  12. I have also found trying to add a TaskManager to a Partial view also causes JS errors - but only when loading through Script mode in PartialViews

    Is there any answer to this?
  13. Regardless of the amount of combinations I use, I can't get a free-floating store added into a partial view - these are handy when that view has a combo box editor in a grid that I want to run in...
  14. How is this accomplished in the controller?



    Ext.Net.Window oWindow = new Ext.Net.Window
    {
    ID = "WindowWorkOrder_" + id ,
    Title = "Service #" + id...
  15. This was exactly what I needed. I've applied the example and have the component loading via LodeMode.Script.

    Thanks Vladimir, much appreciated. You may close this thread.
  16. I'm having difficulty resolving an issue with Component loader in MVC using Razor views. I'm pretty sure the problem is simply the component loader only wants to have Ext.Net components, but it's...
  17. Right - I remember that from another thread.

    Thanks Vladimir.
  18. Ah, no I didn't. Is there a way to have paging done locally for ComboBox queries? Remote paging is such a chore for such a small data set - I'm only interested in saving on design real-estate
  19. I've tried that, Vladimir. If you set the PageSize of the store, it will behave oddly.

    First, you still must set the PageSize of the ComboBox to have the Paging control appear. Then, lets say...
  20. At first I thought there was something I was doing wrong, but even in the example at http://mvc.ext.net/#/Form_ComboBox/Custom_Search/ , setting PageSize to 10 doesn't work as expected - the page...
  21. OK, in a way I guess it's moot. The problem is still there, but when using MVC Helpers for ComboBox and SelectBox (ComboBoxFor, SelectBoxFor), you have to be very careful about the typing of the...
  22. As soon as I set the .SelectedItems property of either a ComboBox or a SelectBox, regardless of settings these controls are set to multiselect



    X.SelectBoxFor(model => model.SomeInt)...
  23. Was this fixed or was the override not removed? Or perhaps not fully fixed?

    The RowNumbererColumn() works fine for the first load of a store, but I've noticed it acting poorly once you reload...
  24. The direct event will post back to your controller with your model in MVC without any extra work on your behalf. As near as I can tell, I'd have to rewire everything up in the JavaScript - using the...
  25. In order to push back a lot of code as far back as possible (into the Model), we've had to use a lot of direct events in order to refresh info gained from that model. So the example here: Refresh...
Results 1 to 25 of 31
Page 1 of 2 1 2