Search Results

Type: Posts; User: Geenin

Page 1 of 2 1 2
Search took 0.01 seconds.
  1. I create few charts in the code behind, and I need to export them as image via email.

    I already deploy Ext.NET.SVG to my local server, but I don't know how to transfer the Chart object into image...
  2. Hi Danii,

    It works perfectly, thanks a lot!
  3. Thanks Daniil ! It works... very appreciate....... :-)


    Geenin
  4. protected void Page_Load(object sender, EventArgs e)
    {
    if (!IsPostBack)
    {
    this.Load_Group_View();
    }
    }


    It's called by...
  5. Hi Danii,

    The below is my testing code:


    protected void Page_Load(object sender, EventArgs e)
    {
    List<TEST> _ts = new List<TEST>();
    _ts.Add(new...
  6. Hi Danii,

    Thanks! Here is .aspx code:


    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Test2.aspx.cs" Inherits="sample.Dashboard.Test2" %>

    <!DOCTYPE html>

    <html...
  7. I got the error message when I added MasterPageFile in the aspx file.

    here is my code:

    aspx


    <asp:Content runat="server" ID="BodyContent" ContentPlaceHolderID="MainContent" >...
  8. Hi Ext.Net,

    I have a FormPanel and a GridPanel. When user double click on a row, the system will load record to the form. The question is that I have a TimeField and always gets the message like...
  9. Hi Geoffrey,

    You save my day!!! Thanks a lot!

    Paggy
  10. Hi Ext.Net,

    I got a strange case recently : the button won't show up if I put it inside <ext:Buttons>; but, if I put in <Items>, the button shows perfectly.

    The unworkable code is below:

    ...
  11. Hi Danii,

    Thanks a lot :)

    Paggy
  12. Hi,

    I would like to copy the data from clipboard and then paste in the grid. For example, there are column A ~ G in my grid and only column E is editable. When page is loaded, 30 records are in...
  13. I tried this and get error.


    this.LoadChart(this.ChartPanel, demoDT, "標題");


    System.Xml.XmlException: 指定編碼中有無效字元。 行 1,位置 4220。 於 System.Xml.XmlTextReaderImpl.Throw(Exception e) 於...
  14. Hi Daniil,


    this.LoadChart(this.ChartPanel, demoDT, "Chart_ID_1");

    For example, changing "Chart_ID_1" to Japanese or Chinese word and then get exception. Is there any solution?



    Does it...
  15. Hi Daniil,

    Thanks, I found the issue now, it related to encoding issue, is there any possible that I can export the chart in the code behind? can I change to code below into C# code?



    var...
  16. test case
    --------------------------------

    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="AMWS.Examples.Report.Test.Default" %>

    <%@ Import...
  17. Hi Daniil,

    Yes, I installed SVG with version 1.5.2.


    Best Regards,
    Paggy
  18. [DirectMethod]
    public void ExportSvg(string svg)
    {
    if (string.IsNullOrEmpty(svg))
    {
    X.Msg.Alert("SVG is empty", "Provided SVG is null or empty");
    ...
  19. Hi,

    I created few charts in the C# code, and I also need export function to export those charts;

    The structure is --> FormPanel --> Panel (ChartPanel) --> Panel1 (generate from C# code) -->...
  20. Hi Danii,

    Thanks! But, I'm not familiar with CSS, could you please give me some tips ?

    Paggy
  21. Hi,

    I have a project and need to make the default font size larger, include the label text and content. For example, grid column title and data content.
    Is there any way to do it in a quick shot?...
  22. Thanks Daniil, it works. ;-)

    Best Regards,
    Paggy
  23. Thanks Daniil, is it possible to change the progress bar color?

    Best Regards,
    Paggy
  24. I got a requirement for ProgressBarColumn.

    if the data is > 80%, then the progressbar need to change to color RED,
    if the data is > 60%, then the progressbar need to change to color Yellow

    Is...
  25. I tried to load the chart from Page_Load with below code and it works,
    and then I add a Button in the aspx file, and use OnDirectClick="LoadSimpleChart", but the chart didn't show up.



    ...
Results 1 to 25 of 30
Page 1 of 2 1 2