Search Results

Type: Posts; User: Sergei

Search took 0.01 seconds.
  1. Hi!

    Try this solution. It is not perfect, but it works.



    <%@ Page Language="C#" %>

    <%@ Register Assembly="Ext.Net" Namespace="Ext.Net" TagPrefix="ext" %>
  2. Hi all!

    I have a solution to the issue for the case, if user press key "1".


    <%@ Page Language="C#" %>

    <%@ Register Assembly="Ext.Net" Namespace="Ext.Net" TagPrefix="ext" %>

    <!DOCTYPE...
  3. Hi!

    You can use .setUI() method for this purpose.

    http://docs.sencha.com/extjs/5.0.1/#!/api/Ext.Component-method-setUI

    Example:

    <ext:Button runat="server" Text="Test" UI="Primary"...
  4. Try delete this row also:

    win.Layout = LayoutType.Form.ToString();




    I think it is so.
  5. Hi!

    You need add ID attribute for your panels.


    subpanel.ID = "subpanel";
    otherpanel.ID = "otherpanel";


    And add this css rule:
  6. Hi,



    You can detect platform using this class.
    http://docs.sencha.com/extjs/5.0.1/#!/api/Ext.os
  7. Hi!



    You can use this solution:



    Ext.grid.PropertyColumnModel.prototype.nameText = 'NewName';
    Ext.grid.PropertyColumnModel.prototype.valueText = 'NewValue';
  8. Hi!

    If you need a simple HTML wrapper for your values, you can use a Column's Renderer, like in this sample:



    <%@ Page Language="C#" %>

    <%@ Register Assembly="Ext.Net" Namespace="Ext.Net"...
  9. Hi!

    Try this css solution for mozilla:



    .x-form-focus::-webkit-input-placeholder { /* WebKit browsers */
    opacity: 0;
    }
    .x-form-focus:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
  10. You can use global solution also:


    Ext.form.field.Base.prototype.labelSeparator = "";
  11. Hi!

    In this example https://examples3.ext.net/#/GridPanel/ArrayGrid/Simple/ you can see .x-grid-item-selected css class on the <table> tag.
    Maybe you can use this class.
  12. Hi!

    Here are two alternative approaches to resolve the problem.

    You can add Layout="FitLayout" for Viewport and delete StyleSpec="height:100%" for Panel.

    Or css solution:
  13. Hi, here a simple solution using only css, based on this example: https://examples2.ext.net/#/GridPanel/ArrayGrid/Simple/



    <%@ Page Language="C#" %>

    <%@ Register Assembly="Ext.Net"...
  14. In this thread http://forums.ext.net/showthread.php?1395-PDF-Export you can find solution export content grid panel to pdf, but solution for ext.net 1.x
    For 2.x solution is similar.
  15. Can you give more information about this problem?
    Need an example(Very Helpful), as described in this thread: http://forums.ext.net/showthread.php?3440
  16. Hi Ahmed, if we take this example:
    https://examples1.ext.net/Examples/Calendar/Overview/Basic/

    You can emulate next and previous button using this javascript code:



    ...
  17. You can find a solution to a similar problem in this thread: http://forums.ext.net/showthread.php?18307&p=79005&viewfull=1#post79005

    There is an alternative approach. In this example...
Results 1 to 17 of 17