| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 84,538
» Latest member: aaamxmx
» Forum threads: 2,413
» Forum posts: 11,327
Full Statistics
|
| Online Users |
There are currently 628 online users. » 2 Member(s) | 623 Guest(s) Applebot, Bing, Google, aaamxmx, xjili8org
|
| Latest Threads |
Need Help Integrating Mic...
Forum: IntraWeb General Discussion
Last Post: capheny
Yesterday, 06:43 AM
» Replies: 0
» Views: 29
|
OpenSSL and concurrent re...
Forum: Indy
Last Post: kbriggs
07-05-2026, 02:41 PM
» Replies: 5
» Views: 168
|
Projeto Intraweb
Forum: IntraWeb General Discussion
Last Post: vonirpereira
07-03-2026, 06:51 PM
» Replies: 0
» Views: 96
|
Intraweb + Lazarus
Forum: IntraWeb Dúvidas Gerais
Last Post: vonirpereira
07-03-2026, 06:35 PM
» Replies: 0
» Views: 50
|
Image question on tiwjqdb...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
07-01-2026, 12:19 AM
» Replies: 4
» Views: 4,280
|
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
07-01-2026, 12:04 AM
» Replies: 4
» Views: 635
|
CSS file not reloading af...
Forum: IntraWeb General Discussion
Last Post: Gustave
06-30-2026, 09:00 PM
» Replies: 0
» Views: 106
|
IW 16.2.0 Missing librari...
Forum: IntraWeb General Discussion
Last Post: Gregory_Twedt
06-24-2026, 04:40 AM
» Replies: 5
» Views: 804
|
VCL conversion
Forum: Delphi General Discussion
Last Post: tobenschain
06-20-2026, 05:00 AM
» Replies: 0
» Views: 146
|
TIWjQDBGrid changing UI
Forum: IntraWeb General Discussion
Last Post: BoostedCruiser
06-08-2026, 02:02 AM
» Replies: 36
» Views: 70,981
|
|
|
Updating a jquery value -- HOW TO? |
|
Posted by: pdinsd - 10-25-2019, 12:53 AM - Forum: IntraWeb General Discussion
- Replies (2)
|
 |
I have a gauge rendered on my form using the raphael jquery library. The gauge renders correctly using the following code (placed inside a script property of a div element):
Code: $('.PEERSON').kumaGauge({
value : 20,
showNeedle : false,
valueLabel : {display : true,
fontColor : '#000',
fontSize : 20},
title : {
// show or hide this label
display : true,
// String the value of the title
value : 'PEERS ON',
// The font family of this label
fontFamily : 'Arial',
// The font color of this label
fontColor : '#000',
// Integer of The font size of this label (without px)
fontSize : 20,
// The font weight of this label
fontWeight : 'normal'
}
});
How can I change the "value" from Intraweb so that the gauge updates? I know it's probably simple, but I can't see an easy way to update a jquery element's value from Delphi/Intraweb.
Any help would be greatly appreciated.
|
|
|
| secure idFTP server |
|
Posted by: Toni Santa - 10-23-2019, 08:44 AM - Forum: Indy
- Replies (1)
|
 |
Hi,
I've build a secure idFTP Server with self-signed cert.pem and key.pem. Launching it on a PC of my LAN I can access to it from a idFTP-client without problems. Trying to access through cuteFTP-client or FileZilla-client there is some trouble.
From FileZilla the log says:
Stato: Disconnesso dal server
Stato: Connessione a 192.168.0.56:21...
Stato: Connessione stabilita, in attesa del messaggio di benvenuto...
Stato: Inizializzazione TLS in corso...
Stato: Verifica del certificato in corso...
Stato: Connessione TLS stabilita.
Stato: Accesso effettuato
Stato: Lettura elenco cartelle...
Comando: PWD
Risposta: 257 "/" is working directory.
Comando: TYPE I
Risposta: 200 Type set to I.
Comando: PASV
Risposta: 500 Could not bind socket. Address and port are already in use.
Comando: PORT 192,168,0,56,213,120
Risposta: 200 PORT Command successful.
Comando: MLSD
Risposta: 125 File status okay; about to open data connection.
Risposta: 426 Data connection closed abnormally.
Errore: Non è stato possibile leggere il contenuto della cartella
Stato: Connessione chiusa dal server
It seems the connection was closed by the server with "426 Data connection closed abnormally"
Any help appreciated.
best regards
Toni
|
|
|
| IWBootstrap app and Apache |
|
Posted by: troberts - 10-20-2019, 09:01 AM - Forum: IntraWeb General Discussion
- Replies (8)
|
 |
I have an IWBootstrap app based on one of the bootstrap demos. I have compiled it as a service and configured it to run on port 44001 and it runs correctly when accessed directly via the LAN using the server's local IP address. It switches from desktop to mobile as required.
I am wanting to deploy it with Apache. In the conf file I have created a VirtualHost entry for it as follows:
<VirtualHost *:80>
ServerName mywebsite.com
ProxyPass / http://127.0.0.1:44001/ disablereuse=on
ProxyPassReverse / http://127.0.0.1:44001/
</VirtualHost>
I can browse to the website from outside, but the desktop version is always rendered. It does not switch to the mobile version when browsing to it from a mobile device. Any ideas?
|
|
|
| Pagination separator |
|
Posted by: Rassamaha78 - 10-19-2019, 11:06 PM - Forum: IntraWeb General Discussion
- No Replies
|
 |
I use IWBSList with BSListType = bsltPagination property. When there are a lot of pages, I would like to use a space - a separator between pages, for example:
1, 2, 3, 4 ... 50.
How can I add "..." between buttons ?
|
|
|
| TIWGrid + TIWBSButton |
|
Posted by: Rassamaha78 - 10-19-2019, 11:00 PM - Forum: IntraWeb General Discussion
- Replies (1)
|
 |
Hello. I am rewriting my project from regular IW to IWBootstrap (3).
I have a table (TIWGRid) in which several dynamic buttons are created, the code was like this:
Code: with grdGetNumber.Cell[ i, 4 ] do
begin
Control := TIWButton.Create( Self );
with TIWButton( Control ) do
begin
Caption := 'Buy';
Width := 60;
Height := 24;
Name := 'BTNGETNUMBER' + IntToStr( i );
OnAsyncClick := OnBuyKeyAsyncClick;
Tag := i;
end;
end;
Now I want to use TIWBSButton, I added Parent to the code:
Code: with TIWBSButton( Control ) do
begin
Parent := TWinControl( grdGetNumber );
BSButtonStyle := bsbsPrimary;
...
end;
The buttons on the page are displayed, but the page does not load to the end, the loading animation icon is constantly visible. How to add TIWBSButton to TIWGrid ?
|
|
|
|