| Welcome, Guest |
You have to register before you can post on our site.
|
| Online Users |
There are currently 713 online users. » 2 Member(s) | 707 Guest(s) Applebot, Bing, Google, Yandex, Ok9dev, qh88bestvn
|
| Latest Threads |
WebApplication.IP change ...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
09-09-2026, 03:02 AM
» Replies: 0
» Views: 80
|
Hook/callback to handle t...
Forum: IntraWeb General Discussion
Last Post: Lenfors
09-08-2026, 09:03 AM
» Replies: 0
» Views: 82
|
Reproducible IIS crash in...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
09-08-2026, 01:48 AM
» Replies: 0
» Views: 94
|
The packages IW16.xx inc...
Forum: IntraWeb General Discussion
Last Post: hsbelli
09-03-2026, 11:46 AM
» Replies: 2
» Views: 359
|
Redirection issues with F...
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 10:03 AM
» Replies: 0
» Views: 185
|
Source Code
Forum: IntraWeb General Discussion
Last Post: magosk
08-31-2026, 08:11 AM
» Replies: 3
» Views: 532
|
TContenthandler requires ...
Forum: IntraWeb General Discussion
Last Post: valmeras
08-30-2026, 02:35 AM
» Replies: 0
» Views: 173
|
TIWjQDBGrid erratic behav...
Forum: IntraWeb General Discussion
Last Post: alex.trejo@tttnet.com.mx
08-20-2026, 05:12 PM
» Replies: 8
» Views: 2,097
|
Change Language DataTable
Forum: IntraWeb General Discussion
Last Post: Rigoberto Mercedes
08-19-2026, 03:21 PM
» Replies: 1
» Views: 308
|
How to terminate HTTP Thr...
Forum: Indy
Last Post: rlebeau
08-14-2026, 08:01 AM
» Replies: 5
» Views: 888
|
|
|
| how to call js function from my customAjaxEvent |
|
Posted by: morhous - 09-21-2018, 06:37 AM - Forum: IntraWeb General Discussion
- Replies (2)
|
 |
Code: // this is my custom ajax event
procedure TdashboardForm.alertChecker(EventParams: TStringList);
var par:Variant;
today:TDate;
begin
par:=VarArrayOf([
EventParams.Values['noticeID'],
UserSession.UserID,
UserSession.UserName
]);
with UserSession do
begin
//p_reg_sel_NewNotice '201805170000001','9/21/2018'
//p_reg_upd_NoticeRead 201809210000005,201805170000001,'munkhdelger'
if AdoTool.RunProcedure('p_reg_upd_NoticeRead',par) = fmResult then
begin
today:=now;
par := VarArrayOf([
UserSession.UserID,
DateToStr(today)
]);
AdoTool.RunProcedure('p_reg_sel_NewNotice',par);
AlertHolder.Text := ExportDataSetToJson(AdoTool.DataResult,0);
//How to call my callme(); in js from here tjhi
WebApplication.ShowNotification('Амжилттай');
end
else
begin
WebApplication.ShowNotification('Амжилтгүй');
end;
end;
|
|
|
| Splitter |
|
Posted by: JuergenS - 09-20-2018, 02:05 PM - Forum: IntraWeb General Discussion
- No Replies
|
 |
Hi,
i would like to modify the color and the width of the splitter,
which can be activated in the TIWRegion class, but i don't know how to do that.
Any help would be appreciated.
Thanks
JuergenS
|
|
|
| Buttons Will Not Click in Bootstrap |
|
Posted by: LorenSzendre - 09-19-2018, 06:02 PM - Forum: IntraWeb General Discussion
- Replies (6)
|
 |
In my big app that I recently converted from IW 14 to 15, the Login button on my main page (using templates) stopped working altogether.
Now when I create a new page based on the new bootstrap (looks amazingly beautiful, btw) -- the TIWBSButtons on the form will not hook up to my click event. For TIWBSButton, there is no OnClick, just an AsyncClick (which I can't debug to and which does not work).
I tried putting on a regular TIWButton on the outer div that is set to be my body Bootstrap container -- and it won't click either.
In short -- all my clicks are not clicking.
Here is what I pull out of the Page Source:
<button class="btn btn-lg btn-success btn-block" id="BL" type="button">Login</button>
I tried setting it to various button types. I put it on forms and not on forms. No matter what I do -- clicking is not connecting to my Delphi events.
What am I missing?
Loren
PS: Here is the Page Source from a simple test app where it works:
<button class="btn btn-primary" id="BK" type="button">Klicken Sie mich!</button>
It's the same, so it must be in the jQuery suppression needed by the IW Bootstrap components...
|
|
|
| Intraweb Tab order problem |
|
Posted by: msgopala - 09-19-2018, 02:04 PM - Forum: IntraWeb General Discussion
- Replies (1)
|
 |
Seattle10
Intraweb 14.2.5
FastReports 5.0
TMS Intraweb PRO Components
Raize 6.2.1
I have several Regions, subregions, edits and buttons on a single form. The tab order messes up everytime. I tried using Gexperts but that did not work as
Main Region
-Reg 1
--edit 1
--edit2
-- subregion1
--- edit3
--- edit4
-Reg2
- edit5
- edit6
-Reg3
- subreg2
-- edit7
so on......
Thank you for your help in advance.
|
|
|
| Migrate from 14 to 15 -- Broken |
|
Posted by: LorenSzendre - 09-18-2018, 08:00 PM - Forum: IntraWeb General Discussion
- Replies (14)
|
 |
I just updated from IW 14 to 15.0.12, and after recompiling my big app and trying to run as SA -- I can't access the app at all. Clicking the Firefox button I get:
The page you are trying to view cannot be shown because it uses an invalid or unsupported form of compression.
Issue #2
When I deployed on my real server, my Logon button (from a template) stopped working altogether.
Any ideas?
Loren
|
|
|
|