iam using fck editor in my application....here iam facing problem with firing fck events in test site in ie7 after deployment in test server ......but it is working fine from local code....y not from test site....
when user type [[ in html editor then iam getting custom dropdownlist(suggestion box).For tht we are firing fck events to get custom dropdownlist....by using this code FCK.EditorDocument.attachEvent( 'onkeyup', myEditor.showSuggestion ) ; when user type [[ in editor it will Display custom drop down list .......it was working fine from local code not after deployment in test site ......
i mean after deployment in test site iam not able to get custom dropdownlist when user types [[ in editor where as it works from local code....y like tht
while showing dropdownlist(suggestion box ) we are writing one javascript function called myEditor.showSuggestion in onkeyup event see below code:
In tht function finally we are calling one webservice call (WEB METHOD)...Here .iam not getting whether web servcie call is not firing or fck events are not firing from test site?but it works fine from local code...whts the problem pls help me out...
//WIRE UP THE CUSTOM EVENT HANDLERS WHEN FCK EDITOR IS READY
FCK.Events.AttachEvent( 'OnAfterSetHTML', myEditor.SetupCustomListner ) ;
//WIRES UP EVENT HANDLERS TO THE FCKEDITOR
myEditor.SetupCustomListner = function()
{
FCK.EditorDocument.attachEvent( 'onkeypress', myEditor.captureValue ) ; //store value before making modification to content
FCK.EditorDocument.attachEvent( 'onkeyup', myEditor.showSuggestion ) ; //Display drop down list
FCK.EditorDocument.attachEvent( 'onkeydown', myEditor.hideSuggestion ) ; //hide drop down list
FCK.EditorDocument.attachEvent( 'onclick', myEditor.DisableAJAX ) ; //hide drop down list
}
problem with displaying custom dropdownlist in fck editor after deployement in test server ..pls help me out..very urgent..iam not getting y iam not able to see custom dropdownlist in fck editor when user types [[ in fck editor .......
when user type [[ in html editor then iam getting custom dropdownlist(suggestion box).For tht we are firing fck events to get custom dropdownlist....by using this code FCK.EditorDocument.attachEvent( 'onkeyup', myEditor.showSuggestion ) ; when user type [[ in editor it will Display custom drop down list .......it was working fine from local code not after deployment in test site ......
i mean after deployment in test site iam not able to get custom dropdownlist when user types [[ in editor where as it works from local code....y like tht
while showing dropdownlist(suggestion box ) we are writing one javascript function called myEditor.showSuggestion in onkeyup event see below code:
In tht function finally we are calling one webservice call (WEB METHOD)...Here .iam not getting whether web servcie call is not firing or fck events are not firing from test site?but it works fine from local code...whts the problem pls help me out...
//WIRE UP THE CUSTOM EVENT HANDLERS WHEN FCK EDITOR IS READY
FCK.Events.AttachEvent( 'OnAfterSetHTML', myEditor.SetupCustomListner ) ;
//WIRES UP EVENT HANDLERS TO THE FCKEDITOR
myEditor.SetupCustomListner = function()
{
FCK.EditorDocument.attachEvent( 'onkeypress', myEditor.captureValue ) ; //store value before making modification to content
FCK.EditorDocument.attachEvent( 'onkeyup', myEditor.showSuggestion ) ; //Display drop down list
FCK.EditorDocument.attachEvent( 'onkeydown', myEditor.hideSuggestion ) ; //hide drop down list
FCK.EditorDocument.attachEvent( 'onclick', myEditor.DisableAJAX ) ; //hide drop down list
}
problem with displaying custom dropdownlist in fck editor after deployement in test server ..pls help me out..very urgent..iam not getting y iam not able to see custom dropdownlist in fck editor when user types [[ in fck editor .......