| Welcome, Guest |
You have to register before you can post on our site.
|
| Forum Statistics |
» Members: 97,594
» Latest member: ee88kiwi
» Forum threads: 2,426
» Forum posts: 11,371
Full Statistics
|
| Online Users |
There are currently 998 online users. » 1 Member(s) | 993 Guest(s) Applebot, Bing, Facebook, Google, betbdtt9com
|
| Latest Threads |
WebApplication.IP change ...
Forum: IntraWeb General Discussion
Last Post: MJS@mjs.us
09-11-2026, 09:49 PM
» Replies: 1
» Views: 129
|
Hook/callback to handle t...
Forum: IntraWeb General Discussion
Last Post: Lenfors
09-08-2026, 09:03 AM
» Replies: 0
» Views: 120
|
Reproducible IIS crash in...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
09-08-2026, 01:48 AM
» Replies: 0
» Views: 135
|
The packages IW16.xx inc...
Forum: IntraWeb General Discussion
Last Post: hsbelli
09-03-2026, 11:46 AM
» Replies: 2
» Views: 423
|
Redirection issues with F...
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 10:03 AM
» Replies: 0
» Views: 213
|
Source Code
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 08:11 AM
» Replies: 3
» Views: 594
|
TContenthandler requires ...
Forum: IntraWeb General Discussion
Last Post: valmeras
08-30-2026, 02:35 AM
» Replies: 0
» Views: 204
|
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
08-20-2026, 05:12 PM
» Replies: 8
» Views: 2,179
|
Change Language DataTable
Forum: IntraWeb General Discussion
Last Post: Rigoberto Mercedes
08-19-2026, 03:21 PM
» Replies: 1
» Views: 338
|
How to terminate HTTP Thr...
Forum: Indy
Last Post: rlebeau
08-14-2026, 08:01 AM
» Replies: 5
» Views: 945
|
|
|
| CG Sub Grid issue with IW 15.3.9 |
|
Posted by: joelcc - 08-02-2023, 09:52 PM - Forum: IntraWeb General Discussion
- Replies (8)
|
 |
I posted the following to cgdevtools newsgroup but I do not know if I will get a response.
"Since upgradding Intraweb from 15.2.x to 15.3.9 the grid as SubGrid no longer works in the CGDevtools. It will not display the grid when the plus is clicked on the master row.
This can be seen by running cg Grid Demo 1 > Functionality / Misc > Grid as SubGrid."
Does anyone know if there is an easy fix to this?
|
|
|
| Changing class parameters programatically |
|
Posted by: bostjan - 08-01-2023, 10:06 AM - Forum: IntraWeb General Discussion
- Replies (5)
|
 |
How do I change class parameters programatically, for example, I'm using Bootstrap and would like to change class parameters at validation:
Original class parameter:
<input type="text" class="form-control">
If user write wrong information, I would like to change it to:
<input type="text" class="form-control is-invalid">
|
|
|
| iw.Common.StrDictionary.hpp compiler error |
|
Posted by: FrancescoSgaravatti - 07-31-2023, 09:25 PM - Forum: IntraWeb General Discussion
- Replies (5)
|
 |
Hi,
I am trying to migrate my C++ Builder project (Embarcadero RAD Studio XE3) from Intraweb XIV (14.0.52) to the new Intraweb release 15.3.10 but I got a compiler error in module IW.Common.StrDictionary.hpp:
__property LoadFactor = {read=GetLoadFactor}:
IW.Common.StrDictionary.hpp(91): E2024 Declaration terminated incorrectly
Can Anyone help to me ?
I thank you in advance.
Francesco Sgaravatti
|
|
|
| Help file for next release |
|
Posted by: MJS@mjs.us - 07-25-2023, 11:01 AM - Forum: IntraWeb General Discussion
- Replies (5)
|
 |
C++ declarations in addition to Delphi declarations.
4,000+ new place holders - 10,000+ topics total.
Added Interfaces, Fuctions, Records, Enums, Types, Constants.
'IntraWeb Components' node matches IDE palette.
Fixed links to Atozed source.
|
|
|
| TIWVideo |
|
Posted by: troberts - 07-21-2023, 09:46 PM - Forum: IntraWeb General Discussion
- Replies (10)
|
 |
Hi,
I have tried the new TIWVideo component in IW15 and got it working. I am wondering if it can support a live video stream (either rtsp or multi-part jpeg)?
Thanks,
Tim
|
|
|
| Intraweb caching JavaScript files (Priority support) |
|
Posted by: valmeras - 07-20-2023, 09:57 PM - Forum: IntraWeb General Discussion
- Replies (7)
|
 |
I am using Intraweb 15.3.10 with C++ Builder 10.2.3
I am using Bootstrap 5.3 templates with my Intraweb application.
The template loads some JavaScript files:
<script src="bootstrap-js/bootstrap.bundle.min.js"></script>
<script src="wysiwyg-editor/dist/js/wysiwyg.js"></script>
Both Js files are in the wwwroot and Templates folders. Unfortunately I noticed that even if the Js is modified, Intraweb is using an old version.
The changes I make in wysiwyg.js are not reflected in the Browser during the execution of the program. When running the browser is showing the code below for a click on a button:
content += '<div class="form-group form-group-sm">';
content += ' <div class="form-row">';
content += ' <label class="col-xs-12 col-sm-4">Class:</label>';
content += ' <div class="col-xs-12 col-sm-8">';
content += ' <input type="text" class="form-control" id="urlClass" placeholder="CSS class name..." />';
content += ' </div>';
content += ' </div>';
content += '</div>';
But the real code in the Js file is below:
content += '<div class="mb-3">';
content += ' <div class="row mb-3">';
content += ' <label class="col-12 col-sm-4">Tile:</label>';
content += ' <div class="col-12 col-sm-8">';
content += ' <input type="text" class="form-control" id="urlTile" placeholder="Title of link..." />';
content += ' </div>';
content += ' </div>';
content += '</div>';
So the 2 codes which are supposed to be from the Js file are different!!
It is not related to the browser because I cleared the cache and tried 2 different browsers.
So it is Intraweb which is caching the wrong version and using it ignoring the changes I am making!
In the browser, the Js version used is located at http://localhost:20300/wysiwyg-editor/dist/js/wysiwyg.js
I tried to relocate the application cachedir, TIWTemplateCache::Instance->ClearCache(). But nothing is resolving the issue!
So, where is Intraweb is getting this old and wrong version from?
|
|
|
|