Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 98,942
» Latest member: nctylekeonc55
» Forum threads: 2,426
» Forum posts: 11,371

Full Statistics

Online Users
There are currently 954 online users.
» 1 Member(s) | 950 Guest(s)
Applebot, Bing, Google, nctylekeonc55

Latest Threads
WebApplication.IP change ...
Forum: IntraWeb General Discussion
Last Post: MJS@mjs.us
09-11-2026, 09:49 PM
» Replies: 1
» Views: 302
Hook/callback to handle t...
Forum: IntraWeb General Discussion
Last Post: Lenfors
09-08-2026, 09:03 AM
» Replies: 0
» Views: 237
Reproducible IIS crash in...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
09-08-2026, 01:48 AM
» Replies: 0
» Views: 254
The packages IW16.xx inc...
Forum: IntraWeb General Discussion
Last Post: hsbelli
09-03-2026, 11:46 AM
» Replies: 2
» Views: 561
Redirection issues with F...
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 10:03 AM
» Replies: 0
» Views: 304
Source Code
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 08:11 AM
» Replies: 3
» Views: 726
TContenthandler requires ...
Forum: IntraWeb General Discussion
Last Post: valmeras
08-30-2026, 02:35 AM
» Replies: 0
» Views: 279
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
08-20-2026, 05:12 PM
» Replies: 8
» Views: 2,372
Change Language DataTable
Forum: IntraWeb General Discussion
Last Post: Rigoberto Mercedes
08-19-2026, 03:21 PM
» Replies: 1
» Views: 419
How to terminate HTTP Thr...
Forum: Indy
Last Post: rlebeau
08-14-2026, 08:01 AM
» Replies: 5
» Views: 1,076

 
  Http.sys and SSL
Posted by: max7575 - 09-30-2019, 03:07 PM - Forum: IntraWeb General Discussion - Replies (2)

Hi All,

I tried to configure a SA Application with Http.sys with SSL certificate. If I register the certificate by IIS everithing woks fine.

Is it possible use Http.sys application with SSL without IIS?

Thanks in advance

Print this item

  IW15.1.5 Button and JS onclick
Posted by: matija - 09-30-2019, 10:54 AM - Forum: IntraWeb General Discussion - Replies (2)

Button open/close accordion (section1, section2) .

IWButton property set Script Events -> onClick ->  $("#section1").collapse("hide"); $("#section2").collapse("show");  -> OK

IWButton Events OnAsyncClick set  
WebApplication.CallBackResponse.AddJavaScriptToExecute('$("#IWButton").click(function(e) { $("#section1").collapse("hide"); $("#section2").collapse("show");  '); -> NOT WORK

Print this item

  jsTree example using json and templates
Posted by: jeroen.rottink - 09-27-2019, 07:18 PM - Forum: IntraWeb General Discussion - Replies (1)

In the Telegram chat there was a question if jsTree could be used with Intraweb. Absolutely!

Because I used it in one of my programs I created an example showing the usage.

  • It uses jsTree. jsTree is jquery plugin, that provides interactive trees
  • The example uses IWBootstrap to serve JSON data for the tree
  • jsTree contextmenu plugin to download files from the tree
  • Async method to download a file from the server
  • All using templates
  • Using IW15.0.23 and D10.1 Berlin



Attached Files
.zip   jstree_example.zip (Size: 397.71 KB / Downloads: 27)
Print this item

  New DIV in IWGrid HTML code.
Posted by: brsoft - 09-26-2019, 09:37 PM - Forum: IntraWeb General Discussion - Replies (9)

Hi

A new DIV has been added to the IWGrid HTML code. The new DIV has no ID property.

This error caused more problems than we first thought.
In our own javascript we have prepared for the new DIV.
However, older IE browsers have an IW error: "IWBase.js (6.17889) - Cannot retrieve id property that has an undefined or null reference"


IW15.1.4:

Code:
<div CLASS="tblpanel tbllist" ID="MENUGRID" style="overflow-x: auto; overflow-y: auto; "><table cellpadding="0" cellspacing="0" id="TBLMENUGRID" style="">
<thead></thead>
<tbody>
<tr><td class="okmenuitem" style="white-space: nowrap; height: 24px; "> Menu1</td></tr>
<tr><td class="okmenuitem" style="white-space: nowrap; height: 24px; "> Menu2</td></tr>
<tr><td class="okmenuitem" style="white-space: nowrap; height: 24px; "> Menu3</td></tr>
<tr><td class="okmenuitem" style="white-space: nowrap; height: 24px; "> Menu4</td></tr></tbody></table></div>

IW15.1.5:
Code:
<div CLASS="tblpanel tbllist" ID="MENUGRID" style="overflow-x: auto; overflow-y: auto; "><div style=""><table cellpadding="0" cellspacing="0" id="TBLMENUGRID">
<thead></thead>
<tbody>
<tr><td class="okmenuitem" style="white-space: nowrap; height: 24px; "> Menu1</td></tr>
<tr><td class="okmenuitem" style="white-space: nowrap; height: 24px; "> Menu2</td></tr>
<tr><td class="okmenuitem" style="white-space: nowrap; height: 24px; "> Menu3</td></tr>
<tr><td class="okmenuitem" style="white-space: nowrap; height: 24px; "> Menu4</td></tr>
</tbody></table>
<script data-type="iw" nonce="ea3sd5wF7k7Ggc1Al/7JT/tOxgs" type="text/javascript">
var tbl = IW.$("TBLMENUGRID");
if (tbl) {
    tbl.style.cssText += tbl.style.cssText;
  }
</script></div></div>


TBLIWGRID's parentNode is not an IWGRID but an anonymous div.

The v15.1.4 and v15.1.5 HTML codes were generated from the same source code.
The script in v15.1.5 HTML code was not written by us.

Can somebody help me?

best regards
brsoft

Print this item

  IntraWeb 17 Update!
Posted by: kudzu - 09-26-2019, 06:07 PM - Forum: IntraWeb General Discussion - No Replies

https://www.atozed.com/2019/09/look-what...ing-in-17/

Print this item

  IWCombox item disabled
Posted by: matija - 09-25-2019, 10:08 AM - Forum: IntraWeb General Discussion - Replies (1)

Can I custom item in IWCombobox or IWListBox disabled/enabled define in Items? OnDrawItem...

Print this item

  New IW app all fail with GraphQL error
Posted by: Fulgan - 09-25-2019, 07:47 AM - Forum: IntraWeb General Discussion - Replies (3)

I thought it was a problem with the TMS components demo but it turns out I can't seem to get ANY new IW application to work.

Existing applications works fine but when I create a new app (standalone wheter using indy or HTTP.sys), all i get when I run it is an error in the browser:

"Cannot return null for non-nullable field Settings.canCollectData"

I'm using Delphi 10.2.3 Tokyo, IW 15.1.4

When I look into the debug console, I can see two POST requests to http://127.0.0.1:8888/graphql right after loading main.js.


Any idea what could be going wrong?

thanks, Stephane

Print this item

  Duplicate License Key found
Posted by: RedOctober - 09-24-2019, 04:03 PM - Forum: IntraWeb General Discussion - Replies (7)

I am migrating all development tools from an old computer to a new computer.  All tools are licensed legally.  On the new computer I have Delphi XE3 and XE7.  I have installed IntraWeb 12x on the XE3 and installed Intraweb 14x on the XE7, using two different licenses.  One license was for the 12 and a different license for the 14.  On the new machine I originally installed IntraWeb 14 on both the XE3 and XE7, but found I had to revert to IntraWeb 12 on the XE3 because of a subsequent CGDevTools component package install that only supported IntraWeb 12x.  I used the Uninstall feature from Windows Control Panel to do the uninstall of both IntraWeb 12 and 14, then I ran the Bundled Removal Tool just to ensure everything was cleaned up, then I re-installed IntraWeb 12 only for the XE3 (using the "ultimate" license for the 12) and reinstalled Intraweb 14x ("ultimate" license for the 14) for the XE7.  When I start Delphi XE7 I get the following error message when IntraWeb .bpl is being loaded:


IntraWeb 14.0.40
Loading Package dclIntraweb_14_DXE7.bpl

[Window Title]
Delphi XE7

[Content]
Duplicate License Key found. The same license key is used on 192.168.1.74. Please install a separate license

[OK]


How do I get the proper license key into my IntraWeb installs so that they work for both the IntraWeb 12 and 14?   I have legal licenses for everything, and once the new development environment is working, I will be decommissioning the old computer.  I will not be violating the license agreements.

Print this item

  IWBootStrap IWBSImage Access Violation
Posted by: Anto90 - 09-24-2019, 03:10 PM - Forum: IntraWeb General Discussion - Replies (1)

Hello,
I wanted to point out that in the IWBSImage component when the EmbededBase64 property is flagged I have an access violation when I start the application. I enclose an example project

Thanks
Andrea



Attached Files
.zip   ExampleBootstrap3-4-1.zip (Size: 940.16 KB / Downloads: 2)
Print this item

  Cannot see menu.
Posted by: tobenschain - 09-23-2019, 03:30 PM - Forum: IntraWeb General Discussion - Replies (1)

I have a TIWImageFile (Icons) below a TIWMenu. The icons are blocking the menu from being seen. What am I doing wrong?

Print this item