Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

استفاده از render #315

Open
hmahdavi921 opened this issue Sep 24, 2024 · 2 comments
Open

استفاده از render #315

hmahdavi921 opened this issue Sep 24, 2024 · 2 comments

Comments

@hmahdavi921
Copy link

در بوت استرپ 5 المانی داریم با نام Floating labels که میخوام دیت پیکر رو روی اون اجرا کنم .
کامپوننتی که نوشتم به این صورت هست :

function InputDatePicker(props: { id: string; name: string; value: number; label: string; }) {
    return (
        <div className="form-floating mb-2">
            <input className="form-control text-center" id={props.id}
                name={props.name}
                defaultValue={props.value}
                type="text" placeholder={props.label} />
            <label htmlFor={props.id}> {props.label}</label>
        </div>
    );
}
export default InputDatePicker;

و به این صورت هم استفاده کردم :

 <DatePicker
     render={<InputDatePicker id={"[" + i + "].FirstSetupDate"}
         name={"[" + i + "].FirstSetupDate"}
         value={item.serviceTime}
         label={"تاریخ نصب"}
         key={"[" + i + "].FirstSetupDate" }
     />}
     className="rmdp-mobile "
     value="1403/07/01"
     format="YYYY/MM/DD"
     calendar={persianCalendar}
     locale={persian_fa}
 />

اما خوب کلا کار نمیکنه و دیت پیکر باز نمیشه. اگر render رو حذف کنم کاملا اوکی هست.

@shahabyazdi
Copy link
Owner

shahabyazdi commented Sep 24, 2024 via email

@hmahdavi921
Copy link
Author

به این صورت تغییر دادم و درست شد

function InputDatePicker(props: { id: string; name: string; value: number; label: string; onFocus: FocusEvent, onChange: ChangeEvent }) {

    return (
        <div className="form-floating mb-2">
            <input className="form-control text-center" id={props.id}
                name={props.name}
                defaultValue={props.value}
                type="text" placeholder={props.label}
                onFocus={props.onFocus}
                onChange={props.onChange}
            />
            <label htmlFor={props.id}> {props.label}</label>
        </div>
    );
}

export default InputDatePicker;

سپاس

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants