Click here to Skip to main content
15,923,852 members
Home / Discussions / ASP.NET
   

ASP.NET

 
GeneralRe: Disadvantages of XSLT and Ajax in XSLT! Pin
pmarfleet30-Jan-08 8:29
pmarfleet30-Jan-08 8:29 
GeneralRe: Disadvantages of XSLT and Ajax in XSLT! Pin
SIJUTHOMASP30-Jan-08 8:45
professionalSIJUTHOMASP30-Jan-08 8:45 
GeneralRe: Disadvantages of XSLT and Ajax in XSLT! Pin
pmarfleet30-Jan-08 9:48
pmarfleet30-Jan-08 9:48 
GeneralRe: Disadvantages of XSLT and Ajax in XSLT! Pin
SIJUTHOMASP30-Jan-08 10:49
professionalSIJUTHOMASP30-Jan-08 10:49 
GeneralRe: Disadvantages of XSLT and Ajax in XSLT! Pin
pmarfleet30-Jan-08 11:38
pmarfleet30-Jan-08 11:38 
GeneralRe: Disadvantages of XSLT and Ajax in XSLT! Pin
led mike30-Jan-08 8:33
led mike30-Jan-08 8:33 
QuestionCan templated controls define tags for sub components? Pin
Kir Birger30-Jan-08 6:10
Kir Birger30-Jan-08 6:10 
GeneralWorking with IE7 not in Firefox Pin
MSinha30-Jan-08 5:37
MSinha30-Jan-08 5:37 
Hi,
I am using a javascript onclick function to get values of an input button. Then I am using webservices to input the value in table. This is working fine with IE7,IE6. But not working for Firefox. Part of the code is given below:


function SegmentUpdate(okButton)
{
// Get a refence to the containing cell, it's up a few levels in the DOM
var containingCell = okButton.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode.parentNode;

cancelButtonName = okButton.name.replace('OkButton', 'CancelButton');
cancelButton = document.getElementById(cancelButtonName);

// Get the necessary Id's (They are written on the table data element for this cell).
var segmentId = containingCell.sourceSegmentId; // Here the problem is. containingCell not accepting value in the variable segmentId.
var userId = containingCell.userId;
var languageCode = containingCell.languageCode;
var milestoneName = containingCell.milestoneName;
var contextualLevel = containingCell.contextualLevel;
var isArchived = containingCell.isArchived;

// Get a reference to the relative form elements (Their names are written on the table data element for this cell).
var txtTQMReasonClientId = document.getElementById(containingCell.txtTQMReasonClientId);
var ddlTQMReasonClientId = document.getElementById(containingCell.ddlTQMReasonClientId);
divTargetTextClientId = document.getElementById(containingCell.divTargetTextClientId);
txtOverrideTranslatedTextClientId = document.getElementById(containingCell.txtOverrideTranslatedTextClientId);
txtOverrideTranslatedTextClientId = document.getElementById(containingCell.txtOverrideTranslatedTextClientId);
divPanel2ClientId = document.getElementById(containingCell.divPanel2ClientId);
panel1Id = containingCell.divPanel2ClientId;

// Get the values from the form elements to make the update
var reason = "";
if (txtTQMReasonClientId != null)
{
reason = txtTQMReasonClientId.value;
}
var reasonId = -1;
if (ddlTQMReasonClientId != null)
{
reasonId = ddlTQMReasonClientId.value;
}
var overrideText = "";

if (txtOverrideTranslatedTextClientId != null)
{
overrideText = txtOverrideTranslatedTextClientId.value.trim();

}

ABCD.WebServices.Approval.OverRideTargetSegmentText(segmentId, userId, overrideText, reasonId, reason,
languageCode, milestoneName, contextualLevel, isArchived.toLowerCase(), OnUpdateTargetSegmentComplete);

}
QuestionRe: Working with IE7 not in Firefox Pin
newc130-Jan-08 5:48
newc130-Jan-08 5:48 
GeneralRe: Working with IE7 not in Firefox Pin
MSinha30-Jan-08 18:57
MSinha30-Jan-08 18:57 
GeneralRe: Working with IE7 not in Firefox Pin
Not Active30-Jan-08 5:57
mentorNot Active30-Jan-08 5:57 
GeneralRe: Working with IE7 not in Firefox Pin
MSinha30-Jan-08 19:08
MSinha30-Jan-08 19:08 
GeneralRe: Working with IE7 not in Firefox Pin
Not Active31-Jan-08 1:11
mentorNot Active31-Jan-08 1:11 
GeneralRe: Working with IE7 not in Firefox Pin
MSinha31-Jan-08 19:20
MSinha31-Jan-08 19:20 
GeneralRoll Your Own Ajax in DataList Control Pin
Brady Kelly30-Jan-08 4:16
Brady Kelly30-Jan-08 4:16 
QuestionThis java script is not working in Content pages Pin
Raam30-Jan-08 2:50
Raam30-Jan-08 2:50 
GeneralRe: This java script is not working in Content pages Pin
Sandeep Akhare30-Jan-08 3:18
Sandeep Akhare30-Jan-08 3:18 
GeneralRe: This java script is not working in Content pages Pin
newc130-Jan-08 3:45
newc130-Jan-08 3:45 
GeneralRe: This java script is not working in Content pages Pin
Sandeep Akhare30-Jan-08 3:56
Sandeep Akhare30-Jan-08 3:56 
Generalgridview filtering with drop down lists Pin
newbieAl30-Jan-08 2:40
newbieAl30-Jan-08 2:40 
QuestionConvert a web application build in 1.1 to 2.0? Pin
Gandalf_TheWhite30-Jan-08 2:21
professionalGandalf_TheWhite30-Jan-08 2:21 
GeneralRe: Convert a web application build in 1.1 to 2.0? Pin
Sandeep Akhare30-Jan-08 3:32
Sandeep Akhare30-Jan-08 3:32 
GeneralRe: Convert a web application build in 1.1 to 2.0? Pin
bokuceres30-Jan-08 20:01
bokuceres30-Jan-08 20:01 
QuestionObtaining client info when using no authentication Pin
ScottM130-Jan-08 2:00
ScottM130-Jan-08 2:00 
QuestionCan I call a palette in VS.NET 2003 Pin
Infernojericho30-Jan-08 1:27
Infernojericho30-Jan-08 1:27 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.