Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i would like to know if we have something to do to keep style in a update input with a Ajax->link?

I have this code.

  <?= $this->Ajax->link('Update fields', array('controller' => 'residences', 'action' => 'edit', $residence['Residence']['id']), 
            array('update' => 'finance_dep_nourriture_commentaire')) ?>

and my div

<?= $this->Ajax->div('finance_dep_nourriture_commentaire') ?>
    <?= $this->Form->input('Residence.finance_dep_nourriture_commentaire', array('size' => '10', 'alt' => 'cash')) ?>$/l'unit&eacute;   
<?= $this->Ajax->divEnd('finance_dep_nourriture_commentaire') ?>

my field have this code before the update

<div id="finance_dep_nourriture_commentaire">
 <input id="ResidenceFinanceDepNourritureCommentaire" type="text" value="1600.00" alt="cash" size="10" name="data[Residence][finance_dep_nourriture_commentaire]" style="text-align: right;">mask=Object { attr="alt", mask="99.999999999999", type="reverse", more...}events=Object { keydown=[1], keypress=[1], keyup=[1], more...}handle=function()

$/l'unité

after the update

<div id="finance_dep_nourriture_commentaire">
  <input id="ResidenceFinanceDepNourritureCommentaire" type="text" value="2000.00" maxlength="13" alt="cash" size="10" name="data[Residence][finance_dep_nourriture_commentaire]">

$/l'unité

how i can keep the mask, style, etc?

thanks.

share|improve this question
Can you post the action/view code of residences/edit – Leo Nov 25 '11 at 18:16
Not sure to understand what you want i post? the controller? My View of residences/Edit are really big, i just posted the part of my div. Do you need all the edit.ctp file? – neimad Nov 25 '11 at 19:02

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.