User Profile & Activity

Andi Santoso Support
Page
of 53
Posted: July 23, 2010 10:11 AM

Hi Yiannis,

     The evaluation period will be 30 days long for the client RC Components. However, if you need more that than, we will gladly to get you an extension, so that, you will have a better experience on our component. You can simply send an email to our accounts department at accounts@intersoftpt.com and ask for an extension.

     Thank you and have a nice day.

Best Regards,

Andi Santoso

Posted: July 22, 2010 3:54 PM

Hi Maged,

     First of all, terribly sorry for the inconvenience. Our WebEssential which included in our WebStudio 2010 RC, does not have any license key yet, since it is only a RC version. We will release our full version in a couple weeks ahead, by that time, we will announce them in our WebSite. By then, you should be able to get them through your Developer Network.

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

Best Regards,

Andi Santoso

Posted: July 22, 2010 12:05 PM

Hi Brad,

     Yes, forgive me, but it is still under investigation of our Developer. I have put a high priority for your work item. For your record, your work item is number 713. I will let you know in a couple days. Thank you and have a nice day.

Best Regards,

Andi Santoso

Posted: July 22, 2010 10:49 AM

Hi Huy,

     Unfortunately, we do not have any products fro Window UI Control. As you might noticed that all our product is actually a web base product. Thank you and have a nice day.

Best Regards,

Andi Santoso

Posted: July 21, 2010 11:54 AM

Hi Ca,

     I have tried our sample of WebFlyPostBackManager, WebServiceJson.aspx, and everything seems to be fine in my end. Perhaps, it would be convenient if you could kindly provide me with a simple sample under Northwind data base that replicate the issue.

     Thank you and have a nice day.

Best Regards,

Andi Santoso

Hi Mike,

     The issue is still under investigatin of our Developer team. For your record, your issue has been submited under Work item number 753 and has been follow up as a high priority. I will let you know once I have news from Developer Team. Thank you and have a nice day.

Best Regards,

Andi Santoso

Hi Zhao Qing,

     May I know on what event do you put these code? Perhaps, it would be easier for me to investigate your issue if you can provide me with a simple runable sample. Thank you and have a nice day.

Best Regards,

Andi Santoso

Posted: July 19, 2010 10:19 AM

Hi Ca,

    Yes, if we are using a grouped WebGrid, the group header will be counted as a Row. That is why, using that approach will give us an ugly result. In your case, I think we will need to use GetSelectedObject, instead of getting its row by GetRow. Here is the snippet:

        function WebGrid1_OnCellClick(controlId, tblName, rowIndex, cellIndex, cellEl) {
            var indexNumber;

            var WebGrid1 = ISGetObject(controlId);
            var rootTable = WebGrid1.RootTable;
            var columnLength = rootTable.Columns.length;
            
            if (rootTable.GroupedColumns.length > 0)
                indexNumber = 2;
            else
                indexNumber = 1;

            setTimeout(function () {
                var getObject = WebGrid1.GetSelectedObject().ToRowObject();
                if (getObject.Type != "GroupHeader") {

                    for (var i = indexNumber; i <= columnLength; i++) {

                        getObject.RowElement.cells[i].style.setAttribute("backgroundColor", "Red", true);
                    }
                }
            }, 500);
            return true;
        }

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

Best Regards,

Andi Santoso

Posted: July 16, 2010 11:02 AM

Hi Kristian Cowart,

     First of all, I will assume that you are having this scenario under javasript code. We can simply add WebGrid.Refresh() after all the scenario is done, is this case, it would be getting all the checked rows informations. Here is the snippet to do so, in here I only show how many check box is checked.

        function Button1_onclick() {
            var WebGrid = ISGetObject("WebGrid1");
            alert("Total checked row : " + WebGrid.RootTable.GetCheckedRows().length);
            WebGrid.Refresh();
        }

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

Best Regards,

Andi Santoso

Posted: July 15, 2010 9:36 AM

Hi Arun,

     Terribly sorry for the mistaken, yes, our WebScheduler supports to use DragDropExtender to WebGrid. Here is the blog on how to implement DragDropExtender to WebScheduler. Please let me know if you have any further questions. Thank you and have a nice day.

Best Regards,

Andi Santoso

All times are GMT -5. The time now is 9:29 PM.
Previous Next