User Profile & Activity

Handy Surya Support
Page
of 223
Posted: January 20, 2011 8:23 AM

Hello,

We are very sory for the late response. Unfortunately, this is not a bug. When using Iframe scenario, you will need to change menu window type of contextmenu as normal.
Normally in IE, it supports 2 types such as popup and normal. In other browsers, popup is not supported.
To change the type, you will need to handle it OnContextMenu clientside events in WebDesktopManager.

Here is the snippet code:

function WebDesktopManager1_OnContextMenu(controlId, objectType, contextObject, menu)
{
            var WebDesktopManager1 = ISGetObject(controlId);
            menu.MenuWindowType = "Normal";
            return true;
}

 

Regards,
Handy

Hello,

I think it could not be done this way. As far I know, WebDesktopManager does not have any FlyPostBack response or process.
So, if you would like to create the window at server side, you will need to do it FullPostBack.
But regarding this scenario, I suggest you to handle it via clientside.
In clientside, you can freely to create or close a window.

Regards,
Handy

Posted: January 19, 2011 4:14 PM

Hello,

Yes, You should be able to do it. You only need to get the window object and use Maximize() method.
OnShortcutAfterLaunched should the proper clientside event that you can use for this scenario.

Regards,
Handy

Posted: January 19, 2011 3:05 PM

Hello Dennis,

Would you mind to be more specific about this issue? Of course you can also delete by using SQLDataSource.
If you don't mind, please provide a simple runable sample. Perhaps, there is something wrong with your delete parameter/methods in SQLDataSource.

Regards,
Handy

Posted: January 19, 2011 3:02 PM

Hello Yousif,

Thank you for your valuable feedback. I will inform this to our development team.

Regards,
Handy

Hello Fung,

Actually, you can refresh a pane by using clientside approach (SetContentURL()).
However, sometimes the loader style is not loading.
 In this case, you can trick it by loading the loader manually.
You can choose to show the loader before change the url or etc. Please see my attached sample.
I prefer to set the URL twice.
First will load a page that contains my loading image. 
Then last, will load the destination page with timeout.

Regards,
Handy

Hi Eric,

I still need a little time to figure out the scenario. Fyi, the slider issue has been fixed. We will release the fix in the short time.

Regards,
Handy

Hello,

You can use ClientVisible as true/false to turn on/off the visibility.

e.g WebDesktopManager1.Windows.GetNamedItem("Window1").ClientVisible=false;

Regards,
Handy

Posted: January 17, 2011 12:55 PM

Hello,

I think it is easier if you configure it in Node Style properties. Selected node would be referred into Active style.

Regards,
Handy 

Hello,

I think it is not possible to set the dropdown value when it is a WebGridDropDownList. Even though you can get the object of dropdownlist, it will not also be much help.
e.g to get WebGridDropDownList object, you can use 

            var dd = document.getElementById("WebGrid1_XXXX_DropDown");

XXXX is a table name.
I would like to suggest using WebCombo instead of DropDownList. Also, would you mind to let us know more details about your scenario?
Regards,
Handy

All times are GMT -5. The time now is 3:57 AM.
Previous Next