User Profile & Activity

Martin Lie Support
martin@intersoftsolutions.com
Page
of 43
Posted: June 9, 2011 4:25 PM

Hello,

You can provide a simple working sample that uses the existing database such as WebSchedulerData.mdb. A runable sample that replicates your issue.

You can attach the sample in this post in zip file, or you can send to my email: martin@intersoftpt.com.

Ensure that the sample is working, so that I can directly test the sample on my end.

Thank you.

 

Regards,
-Martin-

Posted: June 9, 2011 3:22 PM

Hello,

Could you provide a simple working sample that replicates this issue?

Unfortunately, I couldn't replicate your issue on my end. If you try to run FirstExperience.aspx, everything works fine in IE9.

It would be helpful if you can provide a sample, so that I can directly run a test on your given sample.

Thank you.

 

Regards,
-Martin-

Hello Jim,

You can detect whether the value in the dropdownlist has changed by using OnExitEditMode client-side event in WebGrid.

When you add new handler in OnAfterExitEditMode, the code will look like following:

function WebGrid1_OnAfterExitEditMode(controlId, tableName, editObject)
{
   var WebGrid1 = ISGetObject(controlId); 
			
   return true;
}

editObject is the parameter that you can use to get the type of the edited object, which is dropdownlist.

Then, you can determine the text selected from downdownlist by using editObject.cellElement.innerText. For example:

function WebGrid1_OnAfterExitEditMode(controlId, tableName, editObject)
{
   var WebGrid1 = ISGetObject(controlId);
   alert(editObject.cellElement.innerText);
   return true;
}

With this way, you can determine the changes that you have made in the dropdownlist.

Hope this helps. Thank you.

 

Regards,
-Martin-

Posted: June 8, 2011 2:06 PM

Hello,

Unfortunately, the issue doesn't happen on my end.

I'm currently using IE9 browser and as you can see in the screenshot attached, the dropdown works fine.

Try to run our live sample in here and see how it goes on your end.

Hope this helps. Thank you.

 

Regards,
-Martin-

Hello,

The bug has been fixed by the developer team and it is scheduled to be shipped together in 2011 R1 SP1 release.

Thank you.

 

Regards,
-Martin-

Posted: June 7, 2011 12:57 PM

Hello,

Please forgive me for lack of understanding about the reported problem.

Could you explain what do you mean by clicking the dropdown arrows?

Are you trying to enable paging in detail box? Or, you want to implement client paging in timeline view?

Have you run WebScheduler samples on CarRental.aspx and DetailBox_EnablePaging.aspx? Try to run these samples and see whether you still encounter the same issue.

Thank you.

 

Regards,
-Martin-

Posted: June 7, 2011 12:07 PM

Hello,

I couldn't see the attached screenshot. There must be some errors when you try to upload the screenshot. Please re-attach the error screenshot.

Have you successfully downloaded the full installer of 2011 R1? The installer size should be around 600 MB.

You can download the full installer in here.

Thank you.

 

Regards,
-Martin-

Hello,

It seems that the developer team is still investigating this issue as I haven't received any fix for this one.

They are still working on it and I'm sure the hotfix will be ready as soon as possible.

Thank you.

 

Regards,
-Martin-

Hello,

The developer team has given me the update of this issue.

This Feature Request has been noted by the team and will be added in the next release, which means that this culture setting will be applied in the 2011 R2.

Thank you.

 

Regards,
-Martin-

 

Posted: June 6, 2011 3:01 PM

Hello,

You can set the selected date to today's date by using the following code in page_load event:

protected void Page_Load(object sender, EventArgs e)
{
   if (!IsPostBack)
   {
      WebScheduler1.ViewSettings.SelectedDate = DateTime.Now;
   }
}

Hope this helps. Thank you.

 

Regards,
-Martin-

All times are GMT -5. The time now is 2:44 PM.
Previous Next