Problem working with Mozilla

E

Eric S

Hi All,

I am using a Web User Control for some fields to perform a search on a
database. So when user a clicks a tab the particular Web Control is loaded
within the index.aspx page. It works fine with IE8 or IE7 but working with
Mozilla 3.5.30729 I noticed too much movement with some text below the Web
Control fields from the previous control to the current one, .

That problem can be seen only with high speed internet connection.

Appreciate any feedback.

Regards,

Eric
 
G

Guest

Hi All,

I am using a Web User Control for some fields to perform a search on a
database. So when user a clicks a tab the particular Web Control is loaded
within the index.aspx page. It works fine with IE8 or IE7 but working with
Mozilla 3.5.30729 I noticed too much movement with some text below the Web
Control fields from the previous control to the current one, .

That problem can be seen only with high speed internet connection.

Appreciate any feedback.

Regards,

Eric

Hi Eric,

is it possible to see an example?

Thanks
 
E

Eric S

Hi Alexey,

I am using Javascript for Tab binding and highlighting the tab image
according to search condition.
Here just I am using one simple javascript and CSS for tab highlighting.
Please see the below code for control visible true and false

..style.visibility
..style.display

****************************************************************************
//People Search
function PeopleSearch(tab, control) {
if (tab == 1) {

PeopleSearchDisplay("visible", "hidden", "hidden", "hidden", "hidden",
"hidden", "block", "none", "none", "none", "none", "none", control);
PeopleSearchImage(control, "Images/tabs/over/name_bu_ON.gif",
"Images/tabs/address_bu.gif", "Images/tabs/phone_bu.gif",
"Images/tabs/email_bu.gif", "Images/tabs/social_bu.gif",
"Images/tabs/6.jpg"); document.getElementById("ctl00_PageContent_" + control
+ "_hid_tab_value").innerText = tab; loadXML(tab, control); } else if (tab
== 2) { PeopleSearchDisplay("hidden", "visible", "hidden", "hidden",
"hidden", "hidden", "none", "block", "none", "none", "none", "none",
control); PeopleSearchImage(control, "Images/tabs/name_bu.gif",
"Images/tabs/over/address_bu_ON.gif", "Images/tabs/phone_bu.gif",
"Images/tabs/email_bu.gif", "Images/tabs/social_bu.gif",
"Images/tabs/6.jpg"); document.getElementById("ctl00_PageContent_" + control
+ "_hid_tab_value").innerText = tab; loadXML(tab, control);
}
}

function PeopleSearchDisplay(Name1, Address1, Phone1, Email1, SSN1,
advance1,Name, Address, Phone, Email, SSN, advance, control)
{
document.getElementById("ctl00_PageContent_" + control +
"_tblName").style.visibility = Name1;
document.getElementById("ctl00_PageContent_" + control +
"_tblAddress").style.visibility = Address1;
document.getElementById("ctl00_PageContent_" + control +
"_tblPhone").style.visibility = Phone1;
document.getElementById("ctl00_PageContent_" + control +
"_tblEmail").style.visibility = Email1;
document.getElementById("ctl00_PageContent_" + control +
"_tblsocial").style.visibility = SSN1;
document.getElementById("ctl00_PageContent_" + control +
"_tbladvance").style.visibility = advance1;
document.getElementById("ctl00_PageContent_" + control +
"_tblName").style.display = Name;
document.getElementById("ctl00_PageContent_" + control +
"_tblAddress").style.display = Address;
document.getElementById("ctl00_PageContent_" + control +
"_tblPhone").style.display = Phone;
document.getElementById("ctl00_PageContent_" + control +
"_tblEmail").style.display = Email;
document.getElementById("ctl00_PageContent_" + control +
"_tblsocial").style.display = SSN;
document.getElementById("ctl00_PageContent_" + control +
"_tbladvance").style.display = advance;
}


function PeopleSearchImage(control, Name, Address, Phone, Email, SSN,
advance)
{
if (control == "BindControl_ctl02") { Dynamictabs.init("dolphinnav", 0)
document.getElementById("ctl00_PageContent_BindControl_ctl01_imgName").src =
Name;
document.getElementById("ctl00_PageContent_BindControl_ctl01_imgAddress").src
= Address;
document.getElementById("ctl00_PageContent_BindControl_ctl01_imgphone").src
= Phone;
document.getElementById("ctl00_PageContent_BindControl_ctl01_imgemail").src
= Email;
document.getElementById("ctl00_PageContent_BindControl_ctl01_imgssn").src =
SSN;
document.getElementById("ctl00_PageContent_BindControl_ctl01_imgadvance").src
= advance;
document.getElementById("ctl00_PageContent_BindControl_td_error").style.display
= "none";
document.getElementById("ctl00_PageContent_BindControl_td_norecord").style.display
= "none"; Clear_PeopleSearch();
}
}

Thanks,

Eric
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,780
Messages
2,569,611
Members
45,277
Latest member
VytoKetoReview

Latest Threads

Top