Browser compatibility Error
-
Hello Friends ... i migrated ASP.NET 1.1 application to 2.0 . i completed all the things after that i check with browser compatibility . and i changed HTML 4.0 v to HTML 4.01 v . in this .IE 7 working properly in MOZILA "OVERFLOW" CSS Property is not supporting and also its shows error on bellow line in CSS file top:expression(this.offsetParent.scrollTop-0); this is the overflow line ..
Please help for this ... Thank u Nanthakumar
-
Hello Friends ... i migrated ASP.NET 1.1 application to 2.0 . i completed all the things after that i check with browser compatibility . and i changed HTML 4.0 v to HTML 4.01 v . in this .IE 7 working properly in MOZILA "OVERFLOW" CSS Property is not supporting and also its shows error on bellow line in CSS file top:expression(this.offsetParent.scrollTop-0); this is the overflow line ..
Please help for this ... Thank u Nanthakumar
nandhububbly wrote:
top:expression(this.offsetParent.scrollTop-0);
expression doesn't support in non-IE browsers. So, you may need to handle this by using Javascript. There are some CSS tricks that can be used instead of "expression." (eg: You can use
max-width
instead ofwidth:expression(*** + "px")
;) but it's too large to cover. maybe. you can tell us more details about why you use this and what it does in your application.Thanks and Regards, Michael Sync ( Blog: http://michaelsync.net) If you want to thank me for my help, please vote my message by clicking one of numbers beside "Rate this message". Why vote? Plz Read it here. Thank you. :)
-
nandhububbly wrote:
top:expression(this.offsetParent.scrollTop-0);
expression doesn't support in non-IE browsers. So, you may need to handle this by using Javascript. There are some CSS tricks that can be used instead of "expression." (eg: You can use
max-width
instead ofwidth:expression(*** + "px")
;) but it's too large to cover. maybe. you can tell us more details about why you use this and what it does in your application.Thanks and Regards, Michael Sync ( Blog: http://michaelsync.net) If you want to thank me for my help, please vote my message by clicking one of numbers beside "Rate this message". Why vote? Plz Read it here. Thank you. :)
Hello sir ... thank u soo much i followed ur way but its not working actual process this project is reg Hospital management system. in one .aspx i need to add patient name and details and that same page i search exit patient option is there if i click search button that another page will come in that exit patient details is there so if i selected that one patient . that patient details comes previous .aspx page here blow that page one gridview is there that patient details comes under that page so in that grid header contains patient id, name , ph no .. below that header name and id comes. if i scroll that datagrid that patient details overflow to that grid header this is actual function , this is working in IE but in Mozilla that datagrid header also overflow . .CSS file .gridFixedHeader { background-color:white; font-size: 9pt; color: #FFFFFF; position: relative; font-family: Airal,sans-serif; border:#0066CC; max-width :100px; top:expression(this.offsetParent.scrollTop-0);// this line shows top doesn't have this property) z-index: 1; } .aspx datagrid code
plz help for this Thank u
-
nandhububbly wrote:
top:expression(this.offsetParent.scrollTop-0);
expression doesn't support in non-IE browsers. So, you may need to handle this by using Javascript. There are some CSS tricks that can be used instead of "expression." (eg: You can use
max-width
instead ofwidth:expression(*** + "px")
;) but it's too large to cover. maybe. you can tell us more details about why you use this and what it does in your application.Thanks and Regards, Michael Sync ( Blog: http://michaelsync.net) If you want to thank me for my help, please vote my message by clicking one of numbers beside "Rate this message". Why vote? Plz Read it here. Thank you. :)
Hello sir ... thank u soo much i followed ur way but its not working actual process this project is reg Hospital management system. in one .aspx i need to add patient name and details and that same page i search exit patient option is there if i click search button that another page will come in that exit patient details is there so if i selected that one patient . that patient details comes previous .aspx page here blow that page one gridview is there that patient details comes under that page so in that grid header contains patient id, name , ph no .. below that header name and id comes. if i scroll that datagrid that patient details overflow to that grid header this is actual function , this is working in IE but in Mozilla that datagrid header also overflow . .CSS file .gridFixedHeader { background-color:white; font-size: 9pt; color: #FFFFFF; position: relative; font-family: Airal,sans-serif; border:#0066CC; max-width :100px; top:expression(this.offsetParent.scrollTop-0);// this line shows top doesn't have this property) z-index: 1; } .aspx datagrid code
-
nandhububbly wrote:
top:expression(this.offsetParent.scrollTop-0);
expression doesn't support in non-IE browsers. So, you may need to handle this by using Javascript. There are some CSS tricks that can be used instead of "expression." (eg: You can use
max-width
instead ofwidth:expression(*** + "px")
;) but it's too large to cover. maybe. you can tell us more details about why you use this and what it does in your application.Thanks and Regards, Michael Sync ( Blog: http://michaelsync.net) If you want to thank me for my help, please vote my message by clicking one of numbers beside "Rate this message". Why vote? Plz Read it here. Thank you. :)
Hello sir ... thank u soo much i followed ur way but its not working actual process this project is reg Hospital management system. in one .aspx i need to add patient name and details and that same page i search exit patient option is there if i click search button that another page will come in that exit patient details is there so if i selected that one patient . that patient details comes previous .aspx page here blow that page one gridview is there that patient details comes under that page so in that grid header contains patient id, name , ph no .. below that header name and id comes. if i scroll that datagrid that patient details overflow to that grid header this is actual function , this is working in IE but in Mozilla that datagrid header also overflow . .CSS file .gridFixedHeader { background-color:white; font-size: 9pt; color: #FFFFFF; position: relative; font-family: Airal,sans-serif; border:#0066CC; max-width :100px; top:expression(this.offsetParent.scrollTop-0);// this line shows top doesn't have this property) z-index: 1; } .aspx datagrid code DIV id="div-datagrid" style="overflow :auto ;Width :100%;HEIGHT: 100%"