NetTalk Central

Recent Posts

Pages: 1 ... 6 7 [8] 9 10
71
Web Server - Ask For Help / Re: PageFooter Session Manager issue
« Last post by Bruce on June 14, 2024, 06:40:37 AM »
updated js file attached.
Will be in the 14.24 build.
72
Web Server - Ask For Help / Re: PageFooter Session Manager issue
« Last post by Alberto on June 14, 2024, 05:06:27 AM »
Beware that...
suppouse the session timeout works ok and it fires at the same time as the deletesession
If the timeout is reached
and the user is on another tab when it happens
what happens if the session manager expire/continue messsage is active?
the activate option should not be possible because the session is deleted
73
Web Server - Ask For Help / Re: Button ID or class for CSS
« Last post by Alberto on June 14, 2024, 04:59:19 AM »
see pic
74
Web Server - Ask For Help / Re: Button ID or class for CSS
« Last post by Bruce on June 14, 2024, 04:40:14 AM »
>> The  name="Button1_3"  - is unique but name is not a css selector. 

of course it is. You can select on anything in sooo many different ways. Name is an attribute, and you can use attributes in selectors. Specifically;

[name="Button1_3"] {
    /* Your CSS styles here */
    color: blue;
}

attributes are used in selectors using [ and ]

Cheers
Bruce
75
Web Server - Ask For Help / Re: Button ID or class for CSS
« Last post by rjolda on June 14, 2024, 04:38:06 AM »
Hi Alberto,
How and where do I add the class to the button - so far, everything i have tried has not done it. Can you give more specifics please.
Thanks,
Ron
76
Web Server - Ask For Help / Re: PageFooter Session Manager issue
« Last post by Bruce on June 14, 2024, 04:36:58 AM »
>> But it appears (?) to be subtracting from a counter variable: this.state.timeLeft -= 1

correct. It's incorrectly assuming that the timer is running once per second, but it's obviously running slow.
It should query the local time to determine time elapsed, not just reduce it by a second.
I'll tweak it for the next build.

77
Web Server - Ask For Help / Re: Button ID or class for CSS
« Last post by Alberto on June 14, 2024, 04:27:57 AM »
You can add a class to the button in the CSS tab and define this new class in your css
78
Web Server - Ask For Help / Button ID or class for CSS
« Last post by rjolda on June 14, 2024, 04:24:34 AM »
Hi
NT 14.21   C11.0.136
I want to be able to identify a button on a form so I can do some css on it.
Here is my button:
<button type="button" name="Button1_3" id="Button1_39ygW" value="Press to Confirm this is the Kiosk you are at" class="nt-flex nt-button nt-button-without-icon confirmKioskButton67 ui-button ui-corner-all ui-widget" data-do="server" data-formproc="a_dropoff_memform">Press to Confirm this is the Kiosk you are at</button>
The id="Button1_39ygW"  has a generated portion which changes with each iteration.  The 'ygW' portion is generated and variable so I can't use this.
The class="nt-flex nt-button nt-button-without-icon confirmKioskButton67 ui-button ui-corner-all ui-widget"  - I probably can use this as the CLASS selector but it is verbose
The  name="Button1_3"  - is unique but name is not a css selector. 
Is my best option to use the class for a selector?
Other options?
Thanks,
Ron
79
Web Server - Ask For Help / Re: PageFooter Session Manager issue
« Last post by Alberto on June 14, 2024, 04:06:05 AM »
THis, Jane, is a grate idea! thanks
80
Web Server - Ask For Help / Re: Desktop app or Service
« Last post by rupertvz on June 14, 2024, 01:25:37 AM »
Thank you Jane, Alberto ;-)
Pages: 1 ... 6 7 [8] 9 10