Ext.NET v2.x Example Issues (Summary)

Page 3 of 7 FirstFirst 12345 ... LastLast
  1. #21
    Seems that examples with HtmlEditors are broken in Version 2 (at least on my computer, both in IE (9) and Firefox)
    Please check https://examples2.ext.net/#/Layout/FormLayout/Overview/
    Form3 is empty.
  2. #22
    Quote Originally Posted by Dominik View Post
    Maybe it was noticed before, but in sample https://examples2.ext.net/#/Miscella...sizable/Basic/ it is not working the Draggable propery on the Resizable control when the "Show me" button is pressed.
    Quote Originally Posted by cwolcott View Post
    Agreed the picture of the boy and girl is not draggable. I tried it in IE 7 and Firefox 3.6.25. The resizing works fine.
    Hi,

    Thanks for the report and apologize for the delay.

    Resizable doesn't support the Draggable anymore on the ExtJS level.

    They have removed the "is draggable" text for the example:
    http://docs.sencha.com/ext-js/4-0/#!...zer/basic.html

    We have removed this text as well and, certainly, the Resizable Draggable property at all.

    Please use the common drag&drop functionality if you need dragging.

    Thanks for the report again.
  3. #23
    Quote Originally Posted by cwolcott View Post
    One other issue with this example is the last example "Resizable Panel" looks different between IE 7 and Firefox. In IE 7 the panel only shows the words "Resizable Panel" and none of the website. It stills all resizing. While in Firefox the resizable panel shows atleast 100px height of the website to begin with.
    I've reproduced with the example below in IE7/IE8. Though it works correctly in IE9 and FireFox.

    Commenting out the ResizableConfig fixes the problem with height.

    We will investigate.

    Example
    <%@ Page Language="C#" %>
    
    <%@ Register Assembly="Ext.Net" Namespace="Ext.Net" TagPrefix="ext" %>
    
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title>Ext.NET v2 Example</title>
    </head>
    <body>
        <form runat="server">
            <ext:ResourceManager runat="server" />
            <ext:Panel 
                runat="server" 
                Title="Resizable panel" 
                Width="400" 
                Height="200">
                <Loader runat="server" Url="http://www.ext.net" Mode="Frame" />
                <ResizableConfig 
                    runat="server" 
                    MinHeight="200" 
                    MinWidth="200" 
                    Width="400" 
                    Transparent="true" />
            </ext:Panel>
        </form>
    </body>
    </html>
    Last edited by Daniil; Apr 24, 2012 at 5:14 PM.
  4. #24
    Quote Originally Posted by cata View Post
    Seems that examples with HtmlEditors are broken in Version 2 (at least on my computer, both in IE (9) and Firefox)
    Please check https://examples2.ext.net/#/Layout/FormLayout/Overview/
    Form3 is empty.
    Hi,

    Thanks for the report.

    It has been already fixed in SVN and will also work with the next public release.
  5. #25
    Quote Originally Posted by Daniil View Post
    I've reproduced with the example below in IE7/IE8. Though it works correctly in IE9 and FireFox.

    Commenting out the ResizableConfig fixes the problem with height.

    We will investigate.

    Example
    <%@ Page Language="C#" %>
    
    <%@ Register Assembly="Ext.Net" Namespace="Ext.Net" TagPrefix="ext" %>
    
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" 
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title>Ext.NET v2 Example</title>
    </head>
    <body>
        <form runat="server">
            <ext:ResourceManager runat="server" />
            <ext:Panel 
                runat="server" 
                Title="Resizable panel" 
                Width="400" 
                Height="200">
                <Loader runat="server" Url="http://www.ext.net" Mode="Frame" />
                <ResizableConfig 
                    runat="server" 
                    MinHeight="200" 
                    MinWidth="200" 
                    Width="400" 
                    Transparent="true" />
            </ext:Panel>
        </form>
    </body>
    </html>
    The following Resizable option must be removed.
    Width="400"
    It's redundant and, in addition, causes the problem.

    The change has been applied for the online examples and committed to SVN.

    Thanks for the report.
  6. #26

    Request Failure of GridFilters Remote

    https://examples2.ext.net/#/GridPane...ilters_Remote/

    When I try filter of "Size" column,it's failed.
    error msg:
    {serviceResponse:{success:false,message:"Cannot cast Newtonsoft.Json.Linq.JArray to Newtonsoft.Json.Linq.JToken."}}
    Last edited by Daniil; Apr 26, 2012 at 9:49 PM. Reason: Please use [CODE] tags
  7. #27
    The directevents added in codebehind in the simple portal does not work
    https://examples2.ext.net/#/Portal/Basic/Simple/

    Same sample in old demo site is working
    https://examples1.ext.net/#/Portal/Basic/Simple/

    rgds /Peter
  8. #28
    Thanks for the report.
    DirectEvent is broken in Ext.Net 2 Beta. It is fixed already.
    The fix will be available in next public release
  9. #29
    Quote Originally Posted by Vladimir View Post
    The fix will be available in next public release
    Ok thanks, do you have a current list of fixes?
    I tried to search the forum but didn't find the problem mentioned elsewhere

    rgds /Peter
  10. #30
    Quote Originally Posted by howardyin View Post
    https://examples2.ext.net/#/GridPane...ilters_Remote/

    When I try filter of "Size" column,it's failed.
    error msg:
    {serviceResponse:{success:false,message:"Cannot cast Newtonsoft.Json.Linq.JArray to Newtonsoft.Json.Linq.JToken."}}
    Hi,

    Thanks for the report. It has been already fixed and will work with the next public release which should appear soon (Beta 2).
Page 3 of 7 FirstFirst 12345 ... LastLast

Similar Threads

  1. Summary Row in GridPanel?
    By jsemple in forum 1.x Help
    Replies: 1
    Last Post: Mar 17, 2012, 3:36 PM
  2. Accessing Summary Value
    By asztern in forum 1.x Help
    Replies: 0
    Last Post: Aug 15, 2010, 1:17 AM
  3. How to add a summary row in GridPanel?
    By whs2893 in forum 1.x Help
    Replies: 2
    Last Post: Sep 22, 2009, 2:58 AM
  4. Summary Row Without Grouping
    By Tbaseflug in forum 1.x Help
    Replies: 0
    Last Post: Apr 27, 2009, 2:59 PM
  5. validation summary
    By [WP]joju in forum 1.x Help
    Replies: 1
    Last Post: Mar 20, 2009, 1:20 PM

Tags for this Thread

Posting Permissions