User Profile & Activity

Andi Santoso Support
Page
of 53
Posted: July 7, 2010 11:51 PM

Hi Yiannis and Ben,

     Actually, we do not have special price or category for ClientUI(WPF+Silverlight). All of them will be included in WebUI Studio for Silverlight. Also, we will not having a different price on that. So the price will be same, WebUI Studio for Silverlight(Single Developer License) is on $799.00 and for WebUI Studio for Silverlight(Full Subcription) is on $999.00.

     Please noted that we will offer 20% discount for Subcription only in pre-order within this month. Please contact our sales at sales@intersoftpt.com for more information.

      Also, the installation is not locked to one PC. Our license works based on Developer. So, one license will only can be use for one Developer and at the same time, He/She can work in multiple computer (i.e His/Her PC and Laptop).

      I hope my explaination can help you guys. Please do not hesitate to ask if you haev any further questions. Thank you and have a nice day.

Best Regards,

Andi Santoso

Posted: July 7, 2010 10:49 PM

Hi Yiannis Alexopoulos,

      At this moment, we do not have any predefined themes for Client UI(WPF&Silverlight) controls yet. This feature is in working progress and will be available later on. However, we do have a template that can be used for a starter.

      I hope it helps. Thank you and have a nice day

Best Regards,

Andi Santoso

Posted: July 5, 2010 3:59 AM

Hi Kenny,

    Forgive me for a delay responsive. Here is the fixed Framework that you will need to apply. Please ensure to copy those file into your GAC. Also, I attached you a modified sample that you have provided. In there, it will show you on how to use a right method for render control.

    For your information, .RenderControl is usually used to render the ASP.Net controls. For our control, we can use .RefreshModifiedControls. I hope it helps. Thank you and have a nice day.

Best Regards,

Andi Santoso

Posted: July 5, 2010 3:56 AM

Hi Cristian,

     Fogive me, however, this issue is still under investigation. This delay is occured becuase we were having a busy time preparing the new WebUIStudio 2010. But, I have followed up regarding this issue with a high priority.

     I hope it helps. Thank you and have a nice day.

Best Regards,

Andi Santoso

Posted: July 4, 2010 10:38 PM

Hi Jean,

     Thank you for your suggestion. However, at this moment we do not have a stand alone of a color picker component.

Best Regards,

Andi Santoso

Hi Wolfgang Pichler,

    Forgive me for the late response. However, your issue is still under investiagtion. This delay occured because our developer was working on our upcoming release product of WebUI Studio 2010. 

    However, I have forwarded this issue as a high priority to our Developer and I am pretty sure that it will be fix in a couple days ahead. Thank you for your patience and have a nice day.

Best Regards,

Andi Santoso

Posted: June 30, 2010 10:47 PM

Hi David,

     We do not have an example of showing on how to create a hierarchical WebGrid using FlyPostBack, since we cannot do so. It can be created either through design view or on programmatic. 

     I hope it can help. Thank you and have a nice day.

Best Regards,

Andi Santoso

Posted: June 29, 2010 11:15 PM

Hi Kenny,

     Forgive me, I think I will need more time to investigate this scenario. I will surely let you know when I have news regarding this. Thank you and have a nice day.

Best Regards,

Andi Santoso

Hi David,

     Forgive me, however I am not able to replicate your issue. Even when I set the style for the page body without set the font in InitializeRow, WebGrid will overwrite the style with its default style which in this case, the font will be using Segoe UI. At this moment, I am using WebGrid version 7 build 403. 

     However, if you set the font family like I did (during the InitializeRow), does it also changes the font when you set any other stlye on the row on on the cell ?

     I hope it helps. Thank you and have a nice day.

Best Regards,

Andi Santoso

Hi David,

     In this example, the changes will not be occured since we are using the default style. With this sets to true, it will take the default style as an important style and replace the other (which we declared on the outside of WebGrid).

     In your case, to have the font changes only for the yellow cells, we can simply add the font family during the InitializeRow server side event. Here is the snippet in order to do so:

    protected void WebGrid1_InitializeRow(object sender, ISNet.WebUI.WebGrid.RowEventArgs e)
    {
        if (isEvenRow)
            e.Row.Style.BackColor = System.Drawing.Color.LightGray;

        bool isEvenColumn = true;
        foreach (WebGridCell cell in e.Row.Cells)
        {
            if (isEvenRow && isEvenColumn)
            {
                cell.Style.BackColor = System.Drawing.Color.Yellow;
                cell.Style.Font.Name = "Monospace";
            }
            isEvenColumn = !isEvenColumn;
        }

        isEvenRow = !isEvenRow;
    }

       I also attached you my screenshot of this snippet, kindly take a look if it meets your scenario. I hope it can help you. Thank you and have a nice day.

Best Regards,

Andi Santoso

All times are GMT -5. The time now is 2:12 AM.
Previous Next