Search Results

Type: Posts; User: Yury

Page 1 of 4 1 2 3 4
Search took 0.02 seconds.
  1. Hello,

    In case where EmptyText equal Value, TextFieldFor omit value and set only empty text.

    Example:

    m.City == "City"
  2. Other words, How to add plugin with collection of editors.

    I tried to add custom collection of editors



    public class DataViewCellEditorCollection : ItemsCollection<DataViewCellEditor> { }
    ...
  3. Hello Daniil,

    I've tried to add custom plugin with collection of custom editors. This plugin should implement editing like in CellEditing plugin but only for DataView.

    Custom editor (part of...
  4. Hello,

    It seems that the password validation is not working. Code below.


    using System;
    using System.ComponentModel.DataAnnotations;

    namespace ExtNetTest.Test.Models
    {
  5. Hello,

    Example:


    @using Ext.Net;
    @using Ext.Net.MVC;

    @{
    Layout = null;
  6. Hello,

    Will be nice if VerticalMarker plugin for chart allows determine summary tooltip for all series.
    Example:
    https://www.equitymultiple.com/invest/ (Scroll down on this page to see chart)
  7. Thank you, Daniil.

    I've found one more bug. If series has ChartTip, VerticalMarker doesn't work too.
  8. Hello,

    It seems that the VericalMarker plugin doesn't work. Example below:



    @using Ext.Net;
    @using Ext.Net.MVC;

    @{
  9. Hello,

    ChartLabel.Font doesn't work. Code below


    @using Ext.Net;
    @using Ext.Net.MVC;

    @{
    Layout = null;
  10. Hi, Daniil.

    Can you suggest how to use StoreFor(m => m) in view and StoreResult in action method together with identical enumeration type?
    Can you add something like Type property to...
  11. Thank you for suggestions, but I think, ModelFor will be easier way to set IdProperty and other model attributes.
  12. Hello,

    StoreFor creates model when enum property is interpreted as number but in StoreResult and Store.Data returns enum values as strings.
    Please, unify this.

    View:


    @using Ext.Net;...
  13. Hello,

    In Html.X() I see StoreFor and ModelNameFor methods, but ModelFor method is missed. But this method very useful if some model values (e.g. IdProperty) can be changed. For example:


    ...
  14. Hello,

    SelectOnFocus(true) doesn't work in Chrome. In Firefox all fine.
  15. Hello Ext.Net team,

    StoreFor method doesn't check nullable properties and can set default value to the grid cell. I think it isn't correct in case if value is null.



    public class Test
    {
    ...
  16. Thank you, Daniil

    Today I've received same issue from Safari on Mac.
    I've overridden from "if(Ext.isChrome)" to "if(Ext.isWebKit)" and all works correctly.
    I think it will be reproduced on all...
  17. Hello,

    If extjs field from component view in all dataview items then all works fine, but if at list one item doesn't contain extjs field then all fields immediately lose focus after focus.
    ...
  18. It wasn't fixed in v3.2.0
  19. Hello,

    AutoLoadingState(true) loading mask doesn't hide if Before handler in click event return false.



    @using Ext.Net;
    @using Ext.Net.MVC;

    @{
  20. Hello,

    I've found and fixed this issue.

    Original code (ext.net overrides)


    Ext.form.field.Date.override({
    createPicker: function () {
    var me = this,
  21. Hi,

    Impossible select date from DateField[Type=Month] in GridPanel using CellEditing plugin in Chrome 43.0.2357.132 m



    @using Ext.Net;
    @using Ext.Net.MVC;

    @{
  22. Hello,

    Fields with "For" suffix like TextFieldFor, DisplayFieldFor set id which equals model field name. It isn't comfortable because I have 2 different forms with identical models on one page (I...
  23. Hello,

    ComboBox doesn't prevent selection when BeforeSelect returns false.


    .Listeners(l =>
    {
    l.BeforeSelect.Handler = "return...
  24. Hello,

    Somebody knows how to use async/await action methods with Ext.Net.MVC?

    I've tried to use async/await actions with ComponentLoader, but it doesn't work. As I can see it is problem for...
  25. Hello,

    I try to use async/await in DirectMethods, but I get "App.direct.Method is undefined" error.

    code


    [DirectController]
    public class MyController : Controller
    {
Results 1 to 25 of 85
Page 1 of 4 1 2 3 4