User Profile

Collapse

Profile Sidebar

Collapse
mrbadboy
mrbadboy
Last Activity: Apr 21 '08, 12:53 PM
Joined: Jul 10 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • mrbadboy
    replied to Columntree width problem in ExtJs
    Thanks for your reply... actually somebody has tried with
    layout:'fit',
    viewConfig: {
    forceFit:true
    }

    URL :
    http://extjs.com/forum/showthread.php? t=31880&highlig ht=columntree+f orcefit

    to fix it... even total width of the columntree is not working...


    Thanks....
    See more | Go to post

    Leave a comment:


  • mrbadboy
    started a topic Columntree width problem in ExtJs

    Columntree width problem in ExtJs

    Hi,

    i tried to set columntree width using widht and forcefit property (in ExtJS). but im not getting the proper solutions. If i change the screen resolution its not fit with full width. i've attached below my code.
    [CODE=javascript]
    createTree = function (){
    tree = new Ext.tree.Column Tree({
    el:'adminGridDi v',
    id:'producttree ',
    width:700,
    rootVisible:fal se,
    expandable:fals e,...
    See more | Go to post
    Last edited by acoder; Apr 21 '08, 10:45 AM. Reason: Added code tags

  • mrbadboy
    replied to redirect using PHP script
    in PHP
    hi kathir,

    pls check with your code any where you are using "echo or print" statement. bcoz before redirection statement we cann't use echo/print in php....
    See more | Go to post

    Leave a comment:


  • mrbadboy
    replied to Mail delay problem
    in PHP
    hi mark,
    thanks for your reply... actually i've to do two operations. one is to insert records to database (im using mysql) and another one is to send a mail to somebody.
    In my code first im using insert query then im using mail(). The problem is, while submitting my form i cann't able to do any another operation which is related to corresponding table (where i inserted records) like i cann't select particular records (using SELECT...
    See more | Go to post
    Last edited by ronverdonk; Feb 28 '08, 10:05 AM. Reason: warning and code within tags

    Leave a comment:


  • mrbadboy
    started a topic Mail delay problem
    in PHP

    Mail delay problem

    Hi,

    I need to insert some records to a table and then need to send a mail. while using mail() function in php, it takes 20 to 25 seconds to send a mail. insert query executes immediately. but if i do any operation in the page it takes 20-25 seconds. it works properly when i get the mail.

    code which im using my page.
    $headers = "From:kamal@com pany.com \n";
    $headers .= "Content-Type:...
    See more | Go to post

  • mrbadboy
    started a topic Multiple form submit using single button
    in PHP

    Multiple form submit using single button

    Hi,

    I need to submit multiple forms with using single button. I've mentioned my code below.

    <?
    if(isset($_POST )){
    print_r($_POST) ;
    }
    ?>
    <script type="text/javascript">
    function form2Submit() {
    document.f2.act ion="formsubmit 2.php"
    document.f2.sub mit();
    alert('Form2 Submitted');
    }

    function...
    See more | Go to post

  • Hi,

    I've downloaded activewidgets code from site. I got an error when i add / remove a row after sort that grid.

    function deleteRow(dataG rid, myArray, index, lastActionPerfo rmed){
    if (confirm("You wanna delete me?")) {
    delRow = myArray.splice( index,1);
    dataGrid.setRow Property("count ", myArray.length) ;
    dataGrid.refres h();
    alert ("Deleted row: "...
    See more | Go to post

    Leave a comment:


  • mrbadboy
    started a topic getRowValues problem in ActiveWidGets Grid

    getRowValues problem in ActiveWidGets Grid

    Hi,

    Im not able to find where getRowValues() function is defined in the grid framework.
    Can anybody help me to find where the function is defined or
    Can anybody explain how getRowValues() works in with the flow

    Error : While updating row after sorting error was fixed.

    Initially i had sorting error in the grid.

    It was not properly working when the grid was first sorted and...
    See more | Go to post

  • mrbadboy
    started a topic File Attachment problem with PHPMailer class
    in PHP

    File Attachment problem with PHPMailer class

    Hi,

    I tried to send a mail with PHPMail class. Its sending properly if i write the attachment file name directly( I have mentioned my code bellow)

    [code=php]
    $mail = new PHPMailer();
    $mail->IsSMTP();
    $mail->Host = "192.168.111.11 1";
    $mail->SMTPAuth = true;
    $mail->Username = "";
    $mail->Password = "";
    $mail->From ...
    See more | Go to post
    Last edited by Atli; Oct 7 '07, 05:41 PM. Reason: Added [code] tags.

  • mrbadboy
    started a topic Email attachment with word documen
    in PHP

    Email attachment with word documen

    Hi,

    How to attach word document file (*.doc) in a mail ? I tried to attach it with the blow codes...

    $headers .= "Content-Type: application/msword; charset=iso-8859-1\n";
    $headers .= "Content-Transfer-Encoding: ". "base64\n";
    $headers .= "Content-Disposition: attachment\n\n" ;
    $filedata = implode(file('m ailattach.doc') , '');
    $headers .= chunk_split(bas e64_encode($fil edata));...
    See more | Go to post

  • mrbadboy
    started a topic Display image in xsl page
    in XML

    Display image in xsl page

    Hi,

    I need to display image in xsl page from XML node. Is it possible to display it without using any <img> tag in xsl page ?

    Thanks
    See more | Go to post

  • mrbadboy
    replied to DIV align problem
    Dear Simon27,

    Its working properly.. Thanks for your Information....
    See more | Go to post

    Leave a comment:


  • mrbadboy
    started a topic CSS HOVER Problem

    CSS HOVER Problem

    Hi,

    I tried to change text color using HOVER. It works in Mozilla but not in IE. I've mentioned my codes are below.

    p.hvr{
    font-family:verdana;
    font-size:12pt;
    color:red;
    }
    p.hvr:hover{
    font-family:verdana;
    font-size:12pt;
    color:green;
    }

    <p class="hvr">Hov er</p>


    How to salve this problem ?
    ...
    See more | Go to post

  • mrbadboy
    started a topic DIV align problem

    DIV align problem

    Hi,

    I tried to set aling DIV to center using text-align:cener. It works in IE but not in Mozilla. Whats the alternate solution for Mozilla ?.

    Thanks.
    See more | Go to post

  • mrbadboy
    started a topic MySQL Client-Server Programming

    MySQL Client-Server Programming

    Hi,

    How to write Client-Server programming in MySQL and How to Add/Modify/Delete records from another system.

    Thanks
    -NM
    See more | Go to post

  • mrbadboy
    started a topic Position of mouse pointer wrt DIV

    Position of mouse pointer wrt DIV

    Hi,

    How to find the x,y position of mouse pointer with respect to DIV and not to WINDOW.


    Thanks
    - NM
    See more | Go to post

  • mrbadboy
    replied to Access javascript value from flash
    Dear Motoma,

    Thanks for your reply....
    See more | Go to post

    Leave a comment:


  • mrbadboy
    started a topic Access javascript value from flash

    Access javascript value from flash

    Hi,

    I need to access javascript value from flash or i need to access html controls value(like hidden or text box value) from flash. How can i get i from flash. Can you help me how to get it ?

    - Thanks.
    See more | Go to post

  • mrbadboy
    started a topic Get a value from HTML to Flash

    Get a value from HTML to Flash

    Hi,

    I need to get a value from HTML page hidden value from Flash. Then i have to store this value to some variable in flash. Can you help me how to get it ?

    - Thanks.
    See more | Go to post

  • mrbadboy
    started a topic Dynamically remove TD using javascript.

    Dynamically remove TD using javascript.

    Hi,

    How to remove TD dynamically using javascript. I've mentioned below my code.

    <table id="firstTbl" border="0" cellspacing="0" cellpadding="0" width="100%">
    <tr id="firstTr">
    <td id="firstTd"> </td>
    <td id="secondTd"> </td>
    </tr>
    </table>...
    See more | Go to post
No activity results to display
Show More
Working...