Click here to Skip to main content
15,885,365 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
HI
the application contains the sample.aspx. if i click the any button the sample.aspx page in opening in popup in EXT window. The sample.aspx page contains the two textboxes. here i cant do undo and Redo functionlites in those textboxes

The EXTJS code is like this. please refer below code
function TaskshowPopWindow(windowTitle, htmlText, width, height) {

        parent.win3 = new parent.Ext.Window({
            html: htmlText,
            title: windowTitle,
            width: width,
            height: height,
            closeAction: 'hide',
            bodyStyle: 'background:white; padding: 10px;',
            progress: true,
            modal: true,
            resizable: false,
    parent.win3.show();
}


in that above function i am passing the sample.aspx page name as htmltext parameter and passing the height and width,title.

the button containg the following java script functions. in the function i am calling the TaskshowPopWindow functions

function popup()
{
TaskshowPopWindow('sample','sample.aspx',200,200)
}


Here

if i click the button the aspx page getting open in a extjs window.
in the page has two text boxes. in those textboxes i cant able to do undo/redo operatios.. is there any prpoerty for UNDO/REDO in EXTJS
Posted
Updated 25-Apr-16 3:25am
v4

1 solution

I think this link [^] will help you
 
Share this answer
 
Comments
dhanasekaranm 22-Jun-11 5:03am    
hi in that link, i refered. but i am getting strugling to understood it. can you let me know, where i need to put the code exactly.

ThanksM.Dhanasekaran

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900