Search Results

Type: Posts; User: RaphaelSaldanha

Page 1 of 12 1 2 3 4
Search took 0.03 seconds.
  1. On the following example, scroll to the field Email Field (last). It will scroll the form as you type an invalid email.

    The problem only happens when you have field containers on the form.


    ...
  2. On Ext.net.FilterHeader.getStrValue it invokes value.toLowerCase() but if the value is not a string, a number for instance, an exception will be thrown



    getStrValue: function (value) {
    return...
  3. I have extensive experience in Ext.NET using it since version 1.0 (2010). In addition, i actively participate in the Ext.NET forum, what can be seen through my older account:...
  4. Ext.Net.MVC.AjaxResult
  5. Any update?
  6. Any update?
  7. On the following example, we have a "Download File" button, that attempts do download a file from the server. As any server-side operation, an exception may occur and we have to handle it properly.
    ...
  8. I have extensive experience in Ext.NET using it since version 1.0 (2010). In addition, i actively participate in the Ext.NET forum, what can be seen through my older account:...
  9. I have extensive experience in Ext.NET using it since version 1.0 (2010). In addition, i actively participate in the Ext.NET forum, what can be seen through my older account:...
  10. When FileUpload's id is not defined, the id is initialized by the constructor, that invokes field's getId, that initializes the id as xtype + '-' + me.getAutoId().

    For some reason, FileUpload's id...
  11. On chrome and on FireFox, if FileUpload's id is not defined, the upload fails on all requests.
  12. At version 4.x image's imageUrl is absent and as far i can see it has been replated by image's src.

    I took a look on version's breaking changes and we have the following:
    ...
  13. It's possible to overcome the issue by doing the following:


    Ext.net.Image.override({
    afterRender: function () {
    var me = this, loadMask = me.loadMask;
    me.imgEl.on("error",...
  14. On the following example, image remains masked on error (load failure)
    24657


    <!DOCTYPE html>
    <html>
    <head runat="server">
    </head>
    <body>
    <ext:ResourceManager ScriptMode="Debug"...
  15. On the following example, the second Image shows an alternate image because it was not able to load the image defined on ImageUrl property (line 29)



    <!DOCTYPE html>
    <html>
    <head...
  16. It may be related to FileUpload's ClearOnSubmit because it's possible to upload files multiple times when that property is set to false.

    But unfortunately, in my scenario, it's not possible to...
  17. When FileUpload's id is defined (line 22) it's possible to upload files multiple times

    On the following sample, select a file then press Upload button
    It outputs:


    File Count: 1
    File Name:...
  18. Any update?
  19. In addition, please take a look on: http://docs.sencha.com/extjs/6.0/6.0.2-classic/#!/api/Ext.form.field.VTypes. There is no password validation in Extjs.
  20. It's not an ExtJs / Sencha issue. It's a Ext.NET functionality, as you check on src\Build\Ext.Net\extnet\extnet-all-debug.js
  21. The current Ext.form.VTypes.Password uses the costly upand down functions (line 4), on every call.

    In addition, on line 4, Ext.isString(field.initialPassField) will always be true.

    Going...
  22. I am trying to set TabStrip's AutoGrow to true, but in my opinion it's not working as expected

    24601


    <!DOCTYPE html>
    <html>
    <head runat="server">
    </head>
    <body>
  23. Based on the scenario 1, presented on post #1:

    GridPanel's EmptyText does not work as expected when GridPanel's EnableLocking is set to true.


    <!DOCTYPE html>
    <html>
    <head id="Head1"...
  24. It's possible to overcome the issue by applying the following style:


    <style type="text/css">
    .x-focus.x-mask {
    border-color: transparent !important;
    }
    </style>
  25. On the following example, focus grid's view during its load. The Load Mask is focusable, so it shows a border.
    24598



    <!DOCTYPE html>
    <html>
    <head id="Head1" runat="server">
    </head>
    <body>
Results 1 to 25 of 293
Page 1 of 12 1 2 3 4