User Profile & Activity

Glenn Layaar Support
Page
of 99
Posted: January 22, 2010 2:08 AM

Thank you for the sample page. We have successfully replicate the issue in our environment. The issue is caused because the zIndex of the content window is set lower than the shadow window. A quick workaround for this isssue would be to set a greater value for the zIndex of the content window after invoking the showDialog client side event. Here is the snipppet:

function msgbox(text, header) {

//message box WebDialogBox1
var activeWin = ISGetActiveWindow();

var nameofwin = activeWin.Name;

/* important: get existing instance if already existed to avoid duplicate instances */
var dialogBox = ISGetObject(nameofwin);

if (dialogBox == null) {

//more logic processing

}
dialogBox.SetContentTemplate(text);
dialogBox.Text = header;

dialogBox.ShowDialog();

dialogBox.SetZIndex(dialogBox.HostWindow.DialogBoxWindows[0].DropShadow.Element.style.zIndex + 5);
}


I have marked this issue as urgent in the bug report that I submitted, however currently I could not give any estimation on when the fix will be available.

We will inform you if there is any update / progress for the submitted bug report.

Posted: January 21, 2010 1:33 AM

Do you mind giving a more detail explanation regarding this issue? What kind of datasource did you connect the WebGrid to? A running simple sample will help us determine the cause of the issue quicker.

We have numerous sample of WebGrid using different data source, for example BindtoAccessDataSource.aspx, BindtoCustomObject.aspx, BindtoLinqDataSource.aspx, and other sample page that starts with BindTo[...].aspx. You could try to run and analyse the sample if it match your scenario.

Posted: January 21, 2010 1:22 AM

I am having diffculty running the snippet you provided in my environment. Do you mind sending a running page / sample so we could test and determine the issue quickly.

Posted: January 20, 2010 11:21 PM

Currently such feature has not been supported by WebScheduler. However, since WebScheduler support adding Holiday programatically, if you could parse / read the exported holiday from outlook you could add the religion holiday programatically. Here is the snippet in order to insert new holiday programatically during PreInitialize WebScheduler server side event:

protected void WebScheduler1_PreInitialize(object sender, EventArgs e)
{
WebSchedulerHoliday holiday = new WebSchedulerHoliday();
holiday.Date = new DateTime(2008, 3, 1);
holiday.Description = "Holiday inserted programatically";
holiday.IsGeneral = false;
holiday.Name = "Custom";

WebScheduler1.Holidays.Add(holiday);
}


Posted: January 20, 2010 11:09 PM

This issue occurs because the behavior in VB WebApplication project. In my research, VB WebApplication will not be able to read from the App_Code folder if the bin folder already exist. You could check the behavior for ObjectDataSource control which will have the same behavior as ISDataSource in VB WebApplication.

The workaround is to be creat the dataset in the bin folder for VB WebApplication. This will allow the wizard to show your dataset in the  schema dropdown list.

Regarding issue #1, a bug report has been submitted to our developer.

My test show that issue #2 and #3 is related. The JS error is caused by the function  Calendar.SetSelectedDate() when Day View and Week View is disabled. It seems the Calendar.SetSelectedDate() issue is caused by a bug. A bug report has been submitted to the developer.

The onMouseOver web menu issue has been reported previously by another user in this thread. The thread also contains a link to a new WebDesktop nightly build that already include the fix for this issue.

We will inform you if there is any update / progress for the submitted bug report.


Posted: January 20, 2010 4:47 AM

In my simple test project, using WebApplication or WebSite project will not result in empty schema list in the ISDataSource wizard. The empty schema list might occur if you already reference a large number of dll in your project or if there is some error in the project.

Please try create a simple WebApplication project with dataset that points to nortwind.mdb data and ISDataSource, if the issue does occur, please attached the simple project so we could analyze the issue further. 

Posted: January 20, 2010 2:58 AM

I have created a feature request for this issue in hope for a support in allowing report caption height to be adjustable in future version of WebGrid.

Posted: January 20, 2010 2:47 AM

The bug report regarding this issue is still active, this mean the issue is still currently in the process of being fixed by the developer. Currently we do not have any estimation on when the fix will be finished. We will inform you if there is any update or progress regarding this issue.

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