Hi all,
I am currently using Version=11.1.20111.2135.
I have a WHDG which does a very basic initialization and bind to a datasource.
The issue I am having is that I can see the grid in the page source and IE developer tools.
It has correctly initialized with columns, data & styling, except for the following.
<table id="x:1468945442.0:mkr:outerTbl.hdn" style="width: 100%; display: none; visibility: visible; table-layout: fixed;" border="0" cellSpacing="0" cellPadding="0" mkr="outerTbl.hdn">
Inline the display is set to none.
I have verified my css and code-behind initialization, and the display style attribute or control visibility property is not used anywhere.
Is there any reason why the control will set the display to none?
Regards.
Hello jcad ,
I’ve tried the scenario that you’ve specified but still the same issue did not occur. I am probably missing something.
Please take a look at the attached simple sample.
As for DOCTYPE I don’t think it should have any implication in this case but I would be helpful if I can review the full scenario that causes your issue.
Best Regards,
Maya Kirova
Developer Support Engineer
Infragistics, Inc.
http://es.infragistics.com/support
Hello Maya,
If the page is a nested IFrame which parent pages all have <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> as the doctype specification.
Any ideas if this will have an implication?
Regards,
Hello jcad,
I still can’t seem to reproduce the same behavior on my side even when I wrap the WebHierachicalDataGrid in an Update panel.
Please refer to the attached sample. If possible please modify it so that it would reproduce the issue.I haven't come across such an issue with the DOCTYPE before.
Here is some information on the DOCTYPE setting you can refer to:
http://www.w3.org/TR/WD-html40-970917/sgml/loosedtd.html
http://www.w3.org/QA/2002/04/valid-dtd-list.html
Have you had any issues regarding the following?
If I change my .aspx DOCTYPE to
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
from
<!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">
everything works.
As soon as I have the DOCTYPE set to xhtml and place the grid inside an update panel I start loosing grid visiblility.
Any ideas?
Thank you for your reply.
We are only using IE, I testing with IE9 at the moment.
What I have found now is that as per a solution suggested by Tsvetelina, I need to put the grid inside an update panel and turn off Ajax. This relates to webimage button issues I am having after sorting.
However if I remove the grid from the update panel, it is visible.