User Profile & Activity

Product Support Moderator
Page
of 22
Posted: August 21, 2009 1:12 AM

 And about the select file for attachment-> No, it is not working anyway. Am using ff 3.5.2.


I've just tried to perform "Select File" using Firefox 3.5.2, and I can click on the Select File button without issue (unlike previously). Try to clear your cache, and then test again.

Note: You should wait until the document is loaded completely before you can click on the "Select File".

Please let me know if you still encounter the problem.

Yes, the hotfix will still be released after the service pack. Stay tuned for the announcement.

Thanks!

Posted: August 21, 2009 1:07 AM

I see your problem. Yes, you can remove the "extra" column while using AutoFitColumns feature.

Try pasting the below code to the OnInitialize client side event in your Grid:

        function WebGrid1_OnInitialize(controlId)
{
var grid = ISGetObject(controlId);
grid.HidePadColumn = true; // hide extra column in AutoFitColumns
}

Let me know if that works for you.

 

Posted: August 21, 2009 12:50 AM

The WebCombo issue is clarified fixed, and will be included in the SP1.

The "close" icon in the dialogbox is actually an image. The default image used a generic black "x" which is also used in many other places that require "close" indicator, and unfortunately doesn't look suitable in the dialog box with default blue background color.

The easiest solution is to customize the dialogbox close image for non IE browsers. Fortunately, we have a nicer "x" image with white background in WebDesktop Resource, so you can easily use it in your solution. 

Here's how to customize the dialogbox close image using Javascript:

  1. Handle the DialogBox's OnCreated client side event.
  2. Use the following script to change the close image.

    function OnCreated(controlId)
    {		    
         setTimeout(function()
         {
    	  var dialogBox = ISGetObject(controlId);
    	  var closeButton = dialogBox.Window.GetCloseButtonElement();
        		    
              closeButton.children[0].src = "ISRes.axd?D/webdings_close.gif";
         }
         , 1);
    }
    

Let me know if that works for you.

Posted: August 21, 2009 12:10 AM

Hello,

The Select File for attachment has been further enhanced (for Firefox 3.5), and it should work fine now. Please give it a spin.

Regarding your appearance issue in IE7, that is due to the "padding" style that you add in the heading style. IE7 doesn't support box-sizing yet in XHTML document type, and thus doesn't translate "padding" correctly as other browsers do.

There are two possible solutions to this issue:

  1. Use HTML Transitional document type instead of XHTML. HTML used conservative boxing style which is consistent to all browsers.

    To use HTML doctype, simply replace your existing doc type to:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >

  2. Avoid using padding in your styles.
Hope this helps.

Posted: August 20, 2009 11:17 PM

Hi Dan, thanks for pointing out about JSON compression.

Actually, this issue is related to the setting in IIS 7 compression, not WebGrid. By default, all text content, which includes xml in this case, will be compressed in both dynamic and static compresion. But, this is not the case for JSON. Our live server also doesn't enable compression for JSON yet.

To enable compression on JSON, simply add "application/json" to the dynamicTypes of your IIS 7. When the setting is added, the JSON response should be compressed as well. Please click here to learn more about IIS 7 httpCompression. You may have to restart your server to get the new setting applied.

Hope this helps.


Posted: August 20, 2009 10:55 PM

Hi Dan,

Thanks for following up on this duplicate issue.

We've found the issue which appears to be in WebInput, and has been resolved. The fix will be available in upcoming service pack.

Posted: August 20, 2009 10:52 AM

Please refer to the deployment guide here: http://www.intersoftpt.com/Build/DeployIn5Minutes

I hope that solves your problem.

Posted: August 20, 2009 9:49 AM

Vince, you can expect the official service pack to be available by next week. The service pack includes cumulative enhancements and stability improvement which involves framework and various products. 

Thus, the HotFix will not be made available this month. The HotFix will continue to be made available after the service pack (next month and so).

Let me know if you have any other questions. 

Posted: August 20, 2009 9:39 AM

Vincenzo, 

Okay, it seems an enhancement is made in the latest build which is going to be released in the cumulative service pack next week. So using SetForceNoEdit is already correct, and should work fine after you applied SP1 build later on.

Thanks!

All times are GMT -5. The time now is 1:42 PM.
Previous Next