Search Results

Type: Posts; User: mturnhout

Search took 0.01 seconds.
  1. We have a customer that uses a laptop with a resolution height of 768. The application runs in a iframe with above it a header and above that the browser frame. So there is not much height left for...
  2. We have an issue with the CartesianChart. As far as I can see it tries to retrieve the Draw.js from "Ext.Net.dll" resources but failes to do this. To reproduce this:
    - Create new web forms project...
  3. Can retrieve the right value in the console with:
    Ext.getCmp('Input_currencyField').getValue()

    But at server side:
    Value = -1.7976931348623157E+308
    Text = ""

    It sends the value to the server...
  4. Doesn't work.
    Value is send to server with currency sign and thousand seperator.
    Then in NumberFieldBase.Number it does the following:

    Convert.ToDouble(this.Value == null ? this.EmptyValue :...
  5. The only thing missing for now is indeed the DateColumn which is probable best to keep the same as DateField.

    Will have a look at inheriting the controls server side and setting the format from...
  6. I'm now including the following:

    Ext.define("Ext.locale.nl.grid.NumberColumn", { override: "Ext.grid.NumberColumn", format: '0.000,00/i' });
    Ext.define("Ext.locale.nl.grid.DateColumn", {...
  7. Yes, sorry for not specifying this.

    Seems this is indeed the problem.
    The Dutch localization file hasn't been updated since '8 Aug 2008'.
    And is missing the override for BooleanColumn,...
  8. It's being attached:

    <script type="text/javascript" src="/extnet/locale/ext-lang-nl-js/ext.axd?v=10712"></script>

    Containing the following:

    Ext.define("Ext.locale.nl.form.field.Date", {
    ...
  9. Ext.NET 2.4.0 through NuGet
    ASP.NET 4.5.1
    Windows 8.1 Pro

    In the web.config I set globalization as followed:

    <globalization enableClientBasedCulture="false" culture="nl-NL" uiCulture="nl-NL" ...
  10. Thanks!

    Made something for which I used "Field" which doesn't have "Text" but got it working with:

    var value = control is TextFieldBase ? ((TextFieldBase)control).Text : control.Value;

    Is...
  11. Latest ExtNet 2.4 WebForms from website
    .NET 4.5
    VS2012
    IE11

    The value of the DropDownField is always null when I changed the value and pushed the save button.


    <%@ Page Language="C#"...
  12. ExtNet 1.6 from website
    .NET 4
    VS2012
    IE8, IE10

    NumberField and SpinnerField with value same as MinValue returns NULL and empty text on DirectEvent.

    According to ExtJs MinValue is the...
  13. That was long time ago ;-)
    But very usefull if before event isn't present.

    http://www.sencha.com/learn/legacy/Manual:Utilities:Function
    createInterceptor

    createInterceptor (API reference)...
Results 1 to 13 of 13