I am just learning about the app montoring features available through JConsole. I am using jdk150_06 to monitor an app in development locally on a Windows PC. I set the property (-Dcom.sun.management.jmxremote) on the statup of my app jvm. I run JConsole, the JConsole comes up, sees the JVM, I...
Not sure if this is the right place to ask the question, but here goes.
I am fairly new to working with J2EE, about a year now. I work on an existing J2EE app deployed to WL 10. At a very high level we have an enhancement project in which a back end mainframe process is going to create a...
Is there a way to get elements of different types to match exactly in size? For example, I have a textarea and a div. I want to make the div height and width match that of the text area exactly when the page loads. I have the following javascript called by onLoad()...
I have a form with several several types of input elements, hidden, text, radio, etc. The user can edit them. In which case when the form is submitted, the values are being passed. However, another action they can take is to do a search. The search performs an ajax call, returns some data...
Can the innerHTML of a div be submitted with a form on a page?
So for example, I have:
<div id=mydiv>SOME TEXT</div>
So, mydiv.innerHTML = SOME TEXT. Let's say mydiv is an element inside of the <form> tags of the page. When the page is submitted, how do I get the value SOME TEXT to go with...
Given the snippet below, let just say that elem[1] is a text input. How do I get the the type of input which would be "text", and the value that the text input contains?
var elem = document.body.getElementsByTagName('*');
var getIt = elem[1].id;
alert(getIt); //gives me the id...
I have a text area on a page that is used to hold auto generated comments based on user actions on the page. I do not want them to edit this textarea, so it is readonly. However, in IE then it will not scroll because the scrollbar is disabled too.
I have to use <textarea>, so is there a way...
I had a thought trying to get a helpful js debugger in IE. Can you put the IE Tab add-on in Firefox, load a page, switch to IE Tab and then use Firebug or Venkman to debug js? I messed with it a little (IE Tab and Firebug) and it does not seem to work. Has anyone been able to do this or am I...
I have a script that processes the innerHTML from a div on a page. The innerHTML contains <BR> tags. Basically I need to remove certain substrings from the innerHTML of the div and also its cooresponding <BR>. I am using some exist js for the removal and with the modifications I have made it...
I have never used MSXML, so bear with me. I have a small C++ app that receives a message via another app. The message received is XML format but is contained in a string and not passed as an XML doc. Stuck with this, nothing I can do about this part.
So, I need to implement MSXML, I am...
I am curious about something dealing with constructors in dialog classes. I have seen a certain way of doing the constructor and I wonder if it actually buys anything. Here is what I am talking about:
FOO::FOO(CWnd* pParent /*=NULL*/)
: CDialog(FOO::IDD, pParent),
m_pSomeObject( NULL )...
Is there a way in MS VC++ 6.0 and/or VS 6.0 to export a dialog (buttons, dropdowns, etc.) and import it into a VB form or vice versa? I am in a position where I have to create some screens in VB that exist in VC++. I would prefer not to have to re-make the screens, i.e. add all the buttons...
Where I work we have a lot of mainframe legacy still in place. I myself am a windows developer, but often have to access TSO and 3270 sessions. I go an idea about writing an app to interface with the mainframe to do some specific functions, viewing logs, resetting passwords, etc., that I now...
My dialog has a dialog data section as follows
// Dialog Data
//{{AFX_DATA(CSpecialPayeeWarningDialog)
enum { IDD = IDD_SPECIALPAYEE_WARNING };
CStatic m_payeeNames;
//}}AFX_DATA
However, when I compile the dialog I get the error.
C:\Projects\ta_root\TaGui\SpecialPayeeWarningDialog.h(81)...
I have a scenario where the size and position of a warning dialog is inconsistent depending on what is done with a modeless dialog that produces it. I have a modeless dialog that has a combo box that fires a kill focus event. If I tab out of the combo box the warning pops as expected centered...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.