This repository was archived by the owner on Oct 14, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathradiobutton.php
More file actions
66 lines (64 loc) · 2.47 KB
/
Copy pathradiobutton.php
File metadata and controls
66 lines (64 loc) · 2.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<?php
require_once '../EJ/AutoLoad.php';
?>
<body>
<div class="cols-sample-area">
<div class="frame">
<div class="radioalign">
<br />
Category
<br />
<br />
<div class='chkrad'>
<?php
$radio=new EJ\RadioButton('fresher');
echo $radio->name('category')->checked(true)->render()
?>
<label for='fresher' class='clslab'>Fresher</label>
</div>
<div class='chkrad'>
<?php
$radio=new EJ\RadioButton('experienced');
echo $radio->name('category')->render()
?>
<label for='experienced' class='clslab'>Experienced</label>
</div>
<br />
<br />
<span class='btn_label'>Experienced</span>
<br />
<br />
<div class='chkrad'>
<?php
$radio=new EJ\RadioButton('Radio2');
echo $radio->name('experience')->checked(true)->render();
?>
<label for='Radio2' class='clslab'>1+ years</label>
</div>
<div class='chkrad'>
<?php
$radio=new EJ\RadioButton('Radio4');
echo $radio->size('medium')->name('experience')->render()
?>
<label for='Radio4' class='clslab'>2.5+years</label>
</div>
<div class='chkrad'>
<?php
$radio=new EJ\RadioButton('Radio5');
echo $radio->size('medium')->name('experience')->render()
?>
<label for='Radio5' class='clslab'>5+years</label>
</div>
<br />
</div>
</div>
<style>
.frame {
width: 100%;
}
.chkrad {
white-space: nowrap;
display: inline-block;
}
</style>
</body>