User Profile

Collapse

Profile Sidebar

Collapse
KishoreM
KishoreM
Last Activity: Jun 29 '07, 08:24 AM
Joined: Jun 28 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • KishoreM
    replied to Select all radio buttons
    Hi,
    Please change the names of radio to resolve this probs but don't change the
    id because javascript code is using id.here is updated code........

    [HTML]
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dt d">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type"...
    See more | Go to post

    Leave a comment:


  • KishoreM
    replied to Select all radio buttons
    Sorry,

    It was by mistake not intentionally.. .........
    See more | Go to post

    Leave a comment:


  • KishoreM
    replied to Select all radio buttons
    Hi,

    Here I have written a sample code hop it will be useful for you if you have any more probs plez revert to me.

    regards,

    Kishore M
    [HTML]
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dt d">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta...
    See more | Go to post

    Leave a comment:


  • Hi,
    here I have created a sample html page as per you requirement please go through the code and if you have any probs revert to me.

    regards,

    Kishore M

    [HTML]
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dt d">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>...
    See more | Go to post

    Leave a comment:


  • Please specify what exatly problem you are facing ??...
    See more | Go to post

    Leave a comment:


  • [HTML]
    <html>
    <script>
    function fun1()
    {

    if(document.for ms[0].testcheck.chec ked == true)
    {
    document.forms[0].username.style .visibility='hi dden';
    }
    else
    {
    document.forms[0].username.style .visibility='vi sible';
    }
    }
    </script>
    <body>
    <form>
    checkbox testing example.
    <input type="text"...
    See more | Go to post

    Leave a comment:


  • KishoreM
    replied to How to use ajax for file(browse)
    if you want to fill text field with some value which will come from server then in this case you can call a function on onChange() of file and this function will ultimatily make ajax call to server and get response and then you can fill that response value in the text field you want.

    if any more doubt plez tell me .
    regards
    Kishore M...
    See more | Go to post

    Leave a comment:


  • KishoreM
    replied to throw an exception in code
    in Java
    Hi,
    please see the updated code with required exception handling mechanism.

    <Removed>

    regards,

    Kishore M...
    See more | Go to post
    Last edited by r035198x; Jun 28 '07, 09:29 AM. Reason: Please don't spoon feed

    Leave a comment:


  • KishoreM
    replied to calling static functions
    in Java
    Hi,
    you can call any static function(method ) from a non-static function however you can not call a non-static function from a static function.

    regards,

    Kishore M...
    See more | Go to post

    Leave a comment:


  • KishoreM
    replied to String to Double or Float
    in Java
    You have to modify your promptForInt() method as follow

    [CODE=java] static float promptForInt(St ring prompt) {

    System.out.prin t(prompt);
    System.out.flus h();
    String s= "";

    BufferedReader ds =
    new BufferedReader( new InputStreamRead er(System.in));
    try {
    s = ds.readLine();
    } catch (IOException e){
    System.out.prin tln(e);...
    See more | Go to post
    Last edited by r035198x; Jun 28 '07, 08:40 AM. Reason: added the missing code tags

    Leave a comment:


  • KishoreM
    replied to Private Class Declaration
    in Java
    Hi,

    first thing It is not right that you can not create a private or protected class.....you can create but this class should not be Top level class in the file means you can create private/protected innerclasses.

    second thing what is the sense to create a Top level class as private/protected because anyway it is not going to be accessed by outside programs.

    regards,

    Kishore M
    See more | Go to post

    Leave a comment:

No activity results to display
Show More
Working...