User Profile & Activity

Gordon Tumewu Support
Page
of 19
Posted: October 1, 2009 2:43 AM

Hi TIA,

Thanks for the sample, it helps me to replicate the issue. I will forward this to our development team and they will check it first. If it's confirmed as bug from our control then we will provide hotfix for the issue.

Best Regards,

Gordon Tumewu

Posted: October 1, 2009 12:24 AM

Hi,

I am really sorry but the event only in client side, for now WebGrid didn't have server side event to handle the error. If you want, you can submit this as feature request in our developer network >> My Community Center >> Product Feedback so our development team can check the possibility to implement this feature.

Best Regards,

Gordon Tumewu

Posted: October 1, 2009 12:00 AM

Hi Dasha,

Actually once you have tab the menu command by tabbing, then after the menu command got focussed, you just need to use the down navigation arrow of your keyboard to expand.

If you cannot expand the menu command using the down navigation arrow of your keyboard, could you inform me your WebDesktop and Framework build version?

Best Regards,

Gordon Tumewu

Posted: September 30, 2009 11:54 PM

Hi Zahid,

I am sorry but the scenario cannot be done from client side, you need to do it server side.

Best Regards,

Gordon Tumewu

Posted: September 29, 2009 5:29 AM

Hi Vince,

Unfortunately WebCombo didn't support the masking feature. You can submit it as feature request in our developer network >> Community center >> Product Feedback and our development team will check and can consider to implement this feature. 

Best Regards,

Gordon Tumewu

Posted: September 29, 2009 5:16 AM

Hi Michael,

Try to use the following code to add the new row:

function wbtInsert_OnClientClick(controlId, parameter)
{
	var wbtInsert = ISGetObject(controlId);

        var grd = ISGetObject("WebGrid1");
        var newRow = grd.RootTable.NewRow();
        var cells = newRow.GetCells();

        cells.GetNamedItem("ProductName").SetText("xxx", true);
        cells.GetNamedItem("ProductID").SetChanges("false");
        newRow.AddPendingChanges();
            
        return true;
}

Hope this helps.

Best Regards,

Gordon Tumewu

Posted: September 29, 2009 2:17 AM

Hi Zahid,

Could you be more spesific about what size that you want to resize? Is it WebGrid size? Or it's WebDesktop windows size?

Best Regards,

Gordon Tumewu

Posted: September 29, 2009 12:52 AM

Hi,

You can use OnUnhandledError client side event to change the error message. Below is the sample:

function WebGrid1_OnUnhandledError(controlId, tblName, lastRequestObject, errorString)
{
    var grid = ISGetObject(controlId);
    grid.SetIdle();
    grid.IsInProgress = false;
    grid.SetStatus1("", "ready", "CommonText/Ready")

    alert("String was not recognized as a valid date");
    return false;
}

Best Regards,

Gordon Tumewu

Posted: September 28, 2009 11:54 PM

Hi,

Could you attach the html structure of the page? Also step to reproduce the issue?

Best Regards,

Gordon Tumewu

Posted: September 28, 2009 11:19 PM

Hi Al,

Try to use the following code:

function CloseWindows()
{
	var dm = ISGetDesktopManager();
        var length = dm.Windows.length;
        for (var i=0; i<length; i++)
        {            
        	var win = dm.Windows[0];
                if (win.ClientVisible == true)
                {
                    win.Close();
                }
        }
}

Hope this helps.

Best Regards,

Gordon Tumewu

All times are GMT -5. The time now is 11:06 AM.
Previous Next