User Profile & Activity

Glenn Layaar Support
Page
of 99
Posted: July 11, 2010 11:05 PM

Personally, we have not tested the compatibility of our product with other third party product.

However, our silverlight control is tested to accept observable collection data. If the IdeaBlade DevForce 2010 ModelView class return an observable collection data our Silvelight control should work with it.

Posted: July 11, 2010 10:36 PM

Analysing your attached web.config, it seems you are using IIS7 and as I mentioned previously if you are using IIS7 you are still missing some entry that has been detailed in the article "IIS 6 and IIS 7 Integrated mode support" on the WebTextEditor documentation.

The missing entry is WebFileUploader handler in <handlers> and <modules> section under <system.webServer>. Below is an excerpt from the documentation:

The following configuration applies for ASP.NET application that target IIS 7.
- Add WebFileUploader hander to <handlers> section under <system.webServer>:
  <add name = "WebFileUploaderHttpHandler" verb="GET" path="WebFileUploaderHttpHandler.axd" type="ISNet.WebUI.WebTextEditor.WebFileUploaderHttpHandler, ISNet.WebUI.WebTextEditor" preCondition="integratedMode" />
- Add WebFileUploader module to <modules> section under <system.webServer>:
  <add name = "WebFileUploaderHttpModule" preCondition="managedHandler" type="ISNet.WebUI.WebTextEditor.WebFileUploaderHttpModule, ISNet.WebUI.WebTextEditor">

In my test in order to update the text and image during button click per your scenario you will only need to update the property of the ImageSource and Text. Here is the snippet:

private void DemoUpdateParentButtonWithDelay(WebFishEyeButton button, WebFishEyeStackButton stackButton) 
{
    Storyboard story = new Storyboard()
    {
        BeginTime = TimeSpan.FromSeconds(.1)
    };

    story.Completed += (s, args) => { 
        BitmapImage bmp = (BitmapImage)stackButton.ImageSource; 
        button.ImageSource = new BitmapImage(new Uri(bmp.UriSource.OriginalString, UriKind.RelativeOrAbsolute));
        button.Text = stackButton.Text;
    };
    story.Begin(); 
}

 

Posted: July 9, 2010 3:34 AM

Based on my discussion with the developer, there will be some more sample with the RTM. One of the planned sample will use parent/child data.

In my test using the scenario you described I could successfully replicate the issue. This issue seems to be caused by a bug. I have submitted a bug report to the developer regarding this issue.

In my test using the provided configuration I did not encounter any issue. Attached is the test page I am using.

I remove all the client side events from the configuration since I do not have the event handler. If you would like, you could try to isolate which event handler is causing the issue and if possible provide us with the simple scenario for the event handler for further analysis.

In order to modify the text you will need to implement the OnEditingFormShow client side event handler and set the text manually. Here is the snippet:

function WebScheduler1_OnEditingFormShow(controlId, action, eventView, eventType, newType)
{
var scheduler = ISGetObject(controlId);

setTimeout(function ()
{
scheduler.EditingDialogBox.Window.SetCaption("Custom Title");
}, 1);
}


Using the images/Products folder and loading the template from the Product Overview.html, both resource is already in WebTextEditor sample, I could not replicate the "Out of Memory Issue" error. Either during the initial page load or when uploading an image file.

Do you mind providing us with steps tp replicate the scenario? How large is the total file size in the folder you are adding as resource? If the issue occurs during upload, how large is the image you are trying to upload?

Currently the bug status is still active. Since the WebUI Studio 2010 R1 released is being delayed our developer will try to fix the active issues in a hotfix in the next few months.

In my test, if you are using XHTML doctype the header and content will be misaligned. Did you used XHTML doctype in your page? A bug report has been submitted previously for the issue in this thread

Currently you could try using the HTML doctype in your page if possible to resolve the issue.

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