Oh no! Where's the JavaScript?
Your Web browser does not have JavaScript enabled or does not support JavaScript. Please enable JavaScript on your Web browser to properly view this Web site, or upgrade to a Web browser that does support JavaScript.
Not a member yet? Click here to register.
Forgot Password?

Bootstrap - input-group-addon

Asked Modified Viewed 2,076 times
C
Catzenjaeger
C
  • Senior Member, joined since
  • Contributed 408 posts on the community forums.
  • Started 137 threads in the forums
  • Started this discussions
asked
Senior Member

i learn bootstrap atm and found some things what really nice looks. One is a group addon for input fields
how can i change this:

echo form_text("figure_usedprice", $locale['figure_456'], $submitdata['figure_usedprice'],
         array(
            "inline" => TRUE,
            "width" => "400px",
            "error_text" => $locale['figure_1815'],
            "min" => "0",
            "placeholder" => $locale['figure_1808'],
            "type" => "number"
         )
      );

to this:
<form class="form-inline">
  <div class="form-group">
    <label class="sr-only" for="beispielFeldSumme">Summe (in Euro)</label>
    <div class="input-group">
      <div class="input-group-addon">€</div>
      <input type="text" class="form-control" id="beispielFeldSumme" placeholder="Summe">
      <div class="input-group-addon">,00</div>
    </div>
  </div>
  <button type="submit" class="btn btn-primary">Geld senden</button>
</form>


result:
www.php-fusion.co.uk/infusions/forum/attachments/unbenannt_10.jpg


i want this € and , 00 on begin and end -- looks nice and is unfriendly
Edited by Catzenjaeger on 17-08-2016 11:15,
Catzenjaeger attached the following file:
unbenannt_10.jpg [No information available / 184 Downloads]
0 replies
There are no post found.

Category Forum

PHPFusion Dynamics - 9

Labels

None yet

Statistics

  • Views 0 views
  • Posts 0 posts
  • Votes 0 votes
  • Topic users 1 member

1 participant

C
C
  • Senior Member, joined since
  • Contributed 408 posts on the community forums.
  • Started 137 threads in the forums
  • Started this discussions

Notifications

Track thread

You are not receiving notifications from this thread.

Related Questions

Not yet