7
Answers

show fileupload control when dropdown option click

Garima Bansal

Garima Bansal

2y
521
1

When option is selected from dropdown for eg: 

i have one dropdown in which two listitem " yes & no"

if yes is selected then fileupload control shown otherwise hide

<label for="inputText" class="col-sm-4 col-form-label">Land</label>
                            <div class="col-md-8">
                                <asp:DropDownList ID="ddl" runat="server" Height="16px" Width="132px">

                                    <asp:ListItem Value="01">Yes</asp:ListItem>
                                    <asp:ListItem Value="0">No</asp:ListItem>

          </asp:DropDownList>

            pn.Own_Land = Convert.ToInt32(ddl.SelectedValue);
 

Answers (7)
2
Ali Benchaaban

Ali Benchaaban

455 3.1k 118.7k 1y

Here is the implementation with your code by applying the white-space: nowrap; property to the label selector in the <style>
 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Employee Details</title>
    <style>
        .employee-info {
            display: flex;
            justify-content: space-around;
        }

        .table-border-end {
            height: 50px;
            border-top: 2px solid gray;
            border-bottom: 2px solid gray;
        }

        label {
            display: block;
            font-weight: bold;
            margin-bottom: 5px;
            white-space: nowrap; /* Prevents the label from breaking into multiple lines */
        }

        .requestInfo {
            padding-top: 5px;
        }

        .flex {
            display: flex;
        }

        .requestInfo-flex-div-1 {
            width: 37mm;
        }

        .requestInfo-flex-div-4,
        .requestInfo-flex-div-6 {
            width: 300px;
            border-bottom: solid 1px black;
            text-align: center;
            margin-left: 5px;
        }

        .modelData {
            font-size: 12px;
        }
    </style>
</head>
<body onload="window.print();">
    <div class="wrapper" style="height: 800px; width: 1000px;">
        <div class="form-container">
            <div class="form">
                <form>
                    <table>
                        <tr>
                            <td style="width:200px;padding-left:60px;">
                                <label>Emp. ID:</label>
                            </td>
                            <td style="width:300px;">
                                <label class="requestInfo-flex-div-6 modelData"></label>
                            </td>
                            <td style="width:200px;">
                                <label>:TEST TEST_TEST</label>
                            </td>
                        </tr>
                        <tr>
                        </tr>
                        <!-- Continue adding more rows as needed -->
                    </table>
                </form>
            </div>
        </div>
    </div>
</body>
</html>


Please if it's Ok for you accept the solution to close the subject.

Regards,
BENCHAABAN Ali

1
ahmed salah

ahmed salah

NA 547 75.4k 1y

ok can you show me how to use white-space: normal|nowrap|pre|pre-wrap|pre-line;

on my sample please 

can you show me how to use it 

1
Ali Benchaaban

Ali Benchaaban

455 3.1k 118.7k 1y

Hello, 

To achieve this you use white-space property of CSS. This property forces the contents of th to display in one line. There are many property values that exist in the white-space function.

white-space: normal|nowrap|pre|pre-wrap|pre-line;

 Try this example in jsfiddle uses white-space property to prevent cell wrapping using CSS.

https://jsfiddle.net/alibenchaaban/wmhudk4n/5/


Regards,

1
ahmed salah

ahmed salah

NA 547 75.4k 1y

so how to modify it 

please can you show me if possible please 

1
Sam Hobbs

Sam Hobbs

54 29.3k 2.1m 1y

If I understand what you are saying then the problem is that there is not enough room for all of it to be in one line. The table cell for The Reason of Resignation: has width:200px and that apparently is too small. You must make the horizontal space larger somehow.