User Profile & Activity

Hans Kristian Member
Page
of 69

Hello,

This issue has been reported in another thread as well:
http://intersoftpt.com/Community/ClientUI/Webgrid-8-ie-10/

We have forwarded this issue to the developer team.

I apologize for the inconvenience.

Regards,
Hans K.

Posted: May 8, 2014 11:24 PM
Hello,

I apologize for the inconvenience.

I have forwarded this issue to the developer team.

I will let you know if there is an update regarding this issue.

Thank you.

Regards,
Hans K.
Posted: May 8, 2014 11:17 PM
Hello,

Thank you for the question regarding WebCombo.

I have workaround that you might try.
I use WebCombo DoResize() method in onresize body tag event.
Here’s the snippet javascrip code:
<body onresize="bodyResize()">
</body>

function bodyResize()
{
    var WebCombo1 = ISGetObject("WebCombo1");
    WebCombo1.DoResize();
}

I attached the example sample as well.
You could get the sample from this link: http://1drv.ms/1g1HsLi

Hope this helps.
Regards,
Hans K.

Hello,

I apologize for the inconvenience and for the late reponse.

Since you use 2013 R1, you should use License Key for WebDesktop v4, you can’t use WebDesktop v3 License Key for WebDesktop v4.

For further information regarding License Key purchasing, you could contact Sales & Account Representative, martin@intersoftpt.com

Regards,
Hans K.

Posted: April 20, 2014 10:44 PM
Hello,

Thank you for the reply.

By default, if we want to use Intersoft control in HTML 4 doctype. We should declare the HTML 4 doctype, like this line of code below:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"><html>

We don’t need any system identifier in doctype declaration while using HTML 4 doctype.

However, if you want to use system identifier in your doctype declaration, please try to use XHTML doctype instaed HTML 4 doctype.

I have tried modifying my WebGrid using XHTML doctype:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">

Then set the “RenderingMode” property to “XHTML” and the result is no rendering issue.

I apologize for the inconvenience.

Regards,
Hans K.

Posted: April 16, 2014 6:04 AM

Hello,

I am sorry; currently there isn’t any plan to add this work around as a WebGrid feature.
I will forward this scenario to the developer team.
I will let you know if there is an update regarding this scenario.

Thank you and I apologize for the inconvenience.

Regards,
Hans K.

Posted: April 16, 2014 6:03 AM
Hello,

As your suggestion, I tried to run the WebGrid in Internet Explorer 8 browser.
But unfortunately, I didn’t get any rendering issue as well.

I use HTML 4.0 doctype. Here the doctype snippet code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

If you don’t mind, could you please resend the screenshot and sample? However, this time please try to upload those files in another server, then provide me the download link.

I attached the screenshot regarding the result on my end and my WebGrid sample.
If you can’t the file properly, please follow this link: http://1drv.ms/1hPGyuQ

Regards,
Hans K.

Hello,

I have replied your thread (http://intersoftpt.com/Community/WebGrid/WebGrid-height-not-static-in-IE8/).
I am looking forward for the reply.

Regards,
Hans K.

Posted: April 15, 2014 12:04 AM
Hello,

Thank you for the question.

I try to run a WebGrid sample in Internet Explorer 9 and I set the Browser Mode to IE8.
Then I try to filter the WebGrid, however I didn’t get any rendering issue.

Could you inform me more information regarding your WebGrid?
Could you provide me you WebGrid configuration and the screenshot regarding your issue?
So that I can investigate the issue furthers more.

For your information, currently Intersoft control doesn’t support compatibility view mode.
I apologize for any inconvenience this problem may have caused you.

Thank you for your help.

Regards,
Hans K.
Posted: April 14, 2014 11:07 PM

Hello,

Thank you for your question regarding WebGrid.

I made a work around that you might try. I add validation code in OnBeforeRequest client side event.
The code validate whether the input is a valid date format or not.
The code will continue the filtering process if the date format is valid.

function DoBeforeRequest(gridId, action) {	var grid = ISGetObject(gridId);
	if (action == "ColumnFilter") {
		var selObj = grid.GetSelectedObject();
		var rowObj = selObj.ToRowObject();
		var cellRequiredDate = rowObj.GetCells()[5];
		var dateValue = cellRequiredDate.Value.toString();
		if (dateValue == "Invalid Date") {
			alert("Please insert valid date");
			return false;
		}
		else {
			alert("Thank you");
			return true;
		}
	}
}

I implement the validation code in one of WebGrid Sample Solution, PreserveCheckedRows.aspx page.
Please kindly have review on the attached sample to see the result.

If you can’t get the sample properly, please try to follow this link: http://1drv.ms/1hPGyuQ

I apologize for any inconvenience this problem may have caused you.

Regards,
Hans K.

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