QInput component behavior is not proper. #16266
Unanswered
harshalkumar-ishi
asked this question in
General - Components / Directives / etc
Replies: 1 comment 1 reply
|
Can't tell the exact specifics, but are you binding a |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Implementing Edit form for a application using Quasar Components.
Taken a QInput component for input fields in forms data is showing for the specific form but there is an issue im facing for QInput type="number" field.
If i try to delete values for that number field it is not deleting or removing means i want to set that field as blank after clearing the values inside.
In this case I'm not able to give validation for that number field.
Is this the correct behavior ?.
Providing my code as follows in case im missing something just ping me:
import JustPy as jp
def ch_submit_btn(self, msg):
...
async def input_demo_model1(request):
wp = jp.QuasarPage()
input_classes = "m-2 bg-gray-200 border-2 border-black-200 rounded xtw-64 py-2 px-4 text-gray-700 focus:outline-none focus:bg-white focus:border-purple-500"
jp.justpy(input_demo_model1)
All reactions