User Profile & Activity

Hans Kristian Member
Page
of 69
Posted: March 11, 2013 4:48 AM

Hello,

Thank you for the question.

I use WebScheduler samples, ViewMode_Timeline_Day15Minutes.aspx sample, to replicate your issue on my end.
I attach the video about the result that I get when I am trying to reproduce your issue.
I drag one event to the area before the visible start time of the timeline view.
Please kindly have review on the video and please let me know whether you get the same issue or not.

In order to prevent the event disappear from WebScheduler, you could add validation code on Before Add client side event.
I made the example validation code that you might try to use. Here’s the snippet example validation code:

function WebScheduler1_OnBeforeEdit(controlId, evt){
    var WebScheduler1 = ISGetObject(controlId);
    //Get Start Time of the selected event
    var evtStartTimeHours = evt.StartTime.getHours();
    var evtStartTimeMinutes = evt.StartTime.getMinutes();
    var evtStartTimeString = evtStartTimeHours.toString() + evtStartTimeMinutes.toString();
    if (evtStartTimeMinutes.toString() == "0")
        evtStartTimeString = evtStartTimeString + "0";
    var evtStartTimeInt = parseInt(evtStartTimeString, 10);
    //Get End Time of the selected event
    var evtEndTimeHours = evt.EndTime.getHours();
    var evtEndTimeMinutes = evt.EndTime.getMinutes();
    var evtEndTimeString = evtEndTimeHours.toString() + evtEndTimeMinutes.toString();
    if (evtEndTimeMinutes.toString() == "0")
        evtEndTimeString = evtEndTimeString + "0";
    var evtEndTimeInt = parseInt(evtEndTimeString, 10);
    //Get Start Time of the Timeline View Settings
    var startTime = WebScheduler1.ViewSettings.TimelineView.StartTime;
    var startTimeSplit = startTime.split("t")[1];
    var startTimeInt = parseInt(startTimeSplit, 10);
    //Get End Time of the Timeline View Settings
    var endTime = WebScheduler1.ViewSettings.TimelineView.EndTime;
    var endTimeSplit = endTime.split("t")[1];
    var endTimeInt = parseInt(endTimeSplit, 10);
    if (evtStartTimeInt < startTimeInt || evtEndTimeInt > endTimeInt)
        return false;
    else
        return true;
            
}

I also modify the ViewMode_Timeline_Day15Minutes.aspx sample by adding the validation code.
Please also kindly have review on the sample to see how to implement the code.

Hope this helps and please correct me if I wrong.

Regards,
Hans.

Hello,

If you are in “Deployment” phase, you just simply replace all assembly file in application’s bin folder, that using assembly file version 2011 R2, to assembly version 2008 R2.

If you are in “Development” phase, you should uninstall the Intersoft WebUI Studio 2011 R2 product from your environment and then reinstall the Intersoft WebUI Studio product using 2008 R2 version.
Before you re-install the Intersoft WebUI Studio product, please ensure that there aren’t any Intersoft files in your Program File folder and in your Registry (Clean Uninstall).

And regarding License Key matter, it is important to remove your product license before uninstalling WebUI Studio product. Otherwise, you may run out of allowed activations and thus receive a “license key used too many times” error message.

After re-install the Intersoft WebUI Studio 2008 R2, you should replace all assembly file in your application’s bin folder to use assembly file version 2008 R2 as well.

You could get your Intersoft WebUI Studio 2008 R2 license key in Intersoft Developer Network website (http://dev2.intersoftpt.com/). Please try to login with your registered account.

NB: I have replied your email in Intersoft Developer Network website (Downgrade intersoft [IS-05822979-5F4A-412B-9895-FC7A84BA1F39]) regarding this issue.

Regards,
Hans.

Hello,

I am not sure if we can just enhance the HTML5 in IE7. Some processes and renders might be depending on the browser itself that support HTML5. This became issue because IE7 itself does not support it.
Even though the CRM is used by Microsoft, we could not follow it. It is not well standard. The correct standard is following the W3School standard. I would like need to discuss with our developer to see the possibility first.

Regards,
Hans.

Hello,

Thank you for the sample and the image.

I also can reproduce your issue on my end.
In order to fix this issue please try to add “meta” tag in your html page.
Here’s the example snippet code how to implement the meta tag.

<html><head runat="server">
    <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE9">
    <title></title>
</head>
<body>
    <form id="form1" runat="server" style="height: 100%;">
    <div id="container">
        <ISWebGrid:WebGrid ID="WebGrid1" runat="server" Height="90%" UseDefaultStyle="True"
            Width="99%" DisableFileSystemChecking="true" EnableWebResources="Never" DataCacheStorage="PageCache">
            <LayoutSettings AutoFitColumns="true" VirtualLoadMode="Default" VirtualPageSize="10"
                PagingMode="VirtualLoad" AllowGrouping="Yes">
            </LayoutSettings>
        </ISWebGrid:WebGrid>
    </div>
    </form>
</body>
</html>

Hope this helps.

Regards,
Hans.

Hello,

Thank you very much for the video.

Now I can reproduce the issue on my end as well.
This issue occurs also due to WPF limitation itself. However, the developer team will try to fix this issue.
I will let you know if there is an update regarding this issue.

Thank you for your understanding.

Regards,
Hans.
Posted: March 3, 2013 11:55 PM

Hello,

First of all, please forgive me for lack of understanding about the reported problem.

I have a simple WebCombo that using Client Binding operation mode.
This sample is show how to rebind the WebCombo to use another data source.
There are two WebCombo in this sample; the data in second WebCombo is depending on the first WebCombo’s value.

You could get the sample from this link.
Please have review on the sample and let me know whether this sample can help you or not.

Thank you very much.

Regards,
Hans.

Hello,

Thank you for your reply.

I tried to reproduce your issue with WPF – Ribbon Application sample on my end.
I try to show the File dropdown then drag the app window to the right of the screen. But unfortunately I can’t replicate your issue on my end.

I attached the video about how I try to reproduce your issue.
Please correct me if I wrong.

Thank you very much.

Regards,
Hans.

 Hello,

Thank you for waiting.

The hotfix regarding this ClientBinding issue is already available now.

You could the hotfix through Intersoft “Update Manager” Application.

And please let me know whether the issue still persists or not.

Thank you very much.

Regards,

Hans.

Hello,

Thank you for your valuable feedback.

I try to set the browser mode to "IE7" and the document mode to "IE9 standards" and the result is I can replicate your issue on my end as well.
This issue occurs due to Internet Explorer 7 doesn’t support HTML5 doctype indeed.
You shouldn’t use HTML5 doctype in Internet Explorer 7.
The layout problem occurs due to we can’t use HTML5 doctype in Internet Explorer 7 as well.

Regards,

Hans.

Posted: February 28, 2013 10:31 PM

Hello,

Thank you for your reply.

It seems you are using ASP.NET product in your application.

After upgrading from 2011 R2 to 2012 R2, you should upgrade all assembly file in your application’s Bin folder as well.

However, if the issue still persists, could you please try to run your application using the latest assembly version?

You could get the latest assembly version through Intersoft “Manager Update” application.

But if those workaround still can’t resolve your issue, would you mind provide me more detail about your current application or perhaps a simple sample that replicates this issue?

Thank you very much.

Regards,

Hans.

All times are GMT -5. The time now is 9:24 AM.
Previous Next