@tbettinazziaxioma-it

@tbettinazziaxioma-it

Forum Replies Created

Viewing 15 posts - 61 through 75 (of 111 total)
  • Author
    Posts
  • in reply to: SeleclAllOnFocus on NumericTextBox #108705

    I tested Your solution but I’ve a onfocus trigger

    <smart-numeric-text-box id=”e53796681″ input-format=”integer” class=”elemento_testo_valore” value=”0″ name=”e53796681″ required=”” onchange=”mostraAlertMsgOption(this)” onfocus=”on_focus(this)”>

    and this seems to inhibit the solution You proposed.

    How can I solve it ?

    Tks

    in reply to: SeleclAllOnFocus on NumericTextBox #108700

    Tks for Your help.

    I know the post is quite old but only now I’d the time to try to implement it.

    I tried with numeric textbox but it doesn’t seem to wotk.

    Here my code.<span style=”background-color: #ffffff; padding: 0px 0px 0px 2px;”><span style=”color: #000000; background-color: #ffffff; font-family: ‘Consolas’; font-size: 10pt; white-space: pre;”><span style=”color: #073642; font-weight: bold;”>function</span> </span></span>

    function numericTextboxInit() {
    console.log(“Entrato”);
    for (let i = 0; i < document.getElementsByTagName(‘smart-numeric-text-box’).length; i++) {
    console.log(“numero ” + i);
    const numericTextbox = document.getElementsByTagName(‘smart-numeric-text-box’)[i];
    numericTextbox.addEventListener(‘focus’, (e) => {
    setTimeout(() => {
    console.log(“Farei”);
    e.target.select()
    })
    });
    }
    }

    You see a loop because I can have more than one numeric textbox.

    On the console I see

    Entrato

    numero 0

    numero 1

    but nothing happen when I set the focus on a smart-numeric-text-box.

    What’s wrong ?

    Tks

    in reply to: Inserting a br in a tooltip #104182

    Elegant solution but it doesn’t fit completely in my environment.

    I know if a tooltip should contain a break line if in the text I’ve a placeholder (#br#).

    Then I need to change it in a<br/>.

    In every tooltip where is present (I don’t know how many tooltip I’ve).

    Tks

    Tullio

     

    in reply to: Inserting a br in a tooltip #104174

    No suggestions ?

    Tks

    in reply to: Inserting a br in a tooltip #104164

    In other situation I used css classes but with smart-tooltip I wasn’t able to find a suitable class.

    Tks

    in reply to: Problems with mouse wheel #104036

    Testcase sent.

    Tks

    in reply to: my app issue #103978

    Tks for your help.

    Just a few questions :

    • also DropDownList has a virtualized property, why did You suggest ListBox  in spite of DropDownList ?
    • are there drawback using virtualized propery (eg. filter don’t work or any other feature missnig) ?

    Tks

    Tullio

    in reply to: my app issue #103973

    Sent.

    Tks

    in reply to: my app issue #103967

    I created a testcase to reproduce the problem.

    Is quite huge because I copied it from my real world.

    Please provide me a way to send You the code.

    Not all the code is needed but if I can’t clean up the unneeded parts.

    The examples shows that the page buid up time is quite long (6 seconds) and it depends entierely from a large dropdown list.

    Please suggest a solution to improve significantely the response time.

    Tks

    in reply to: Progress bar as wait div #103957

    Tks for the example.

    In the example, however, I don’t see, how to put the progressbar in a modal layer and how to stop ane eliminate it at the end of the loadinbg process.

    Tks again

    Tullio

    in reply to: Differences between inputs and other tools #103953

    I already use dataSource but it seems a little better but is stil slow more than standard html select.

    Tks

    in reply to: Differences between inputs and other tools #103950

    My problem is that when the dropdown has many elements (> 500) it’s slow (more than 1 sec to show).

    I hoped that a simpler element like smart input was faster.

    Isn’t it ?

    Tks

    in reply to: my app issue #103944

    Unfortunately I can’t because my page is generated at runtime and I don’t know which kind of elements are in that page.

    Anyway I did it in a simple testcase I created and it doesn’t change the page building time.

    On the other hand the js file are cached and the loading time of the js doesn’t seem to be a problem.

    Tks

    in reply to: my app issue #103942

    Tested Your suggestion which improves the result from more thn 2 secs to 1.5 secs.

    However is still quite long time when I’ve more than a dropdown list in my page.

    Is there any way to improve further the performances ?

    Tks

    in reply to: Onchange event fires too early #103922

    Will that issue be resolved in the next release ?

    Tks

Viewing 15 posts - 61 through 75 (of 111 total)