NetTalk Central

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Richard I

Pages: [1] 2 3 ... 26
1
Thanks for that useful Tip Bruce
Cheers
Richard

2
Web Server - Ask For Help / Re: Solved - Login window not centered
« on: April 17, 2024, 03:01:07 PM »
Thanks Bruce,

I solved the issue last night-
In my Custom.css file in the login-form-width I had cleverly included !Important
on one of the early lines
I removed that and recompiled  - solved  ! Now login form nicely centered

Cheers
Richard

3
Bruce,
I thought one supported the other so I have always deleted both.....
I will force a change and see which one deleted allows the change

4
Hello
Why do I need to delete the clw and the obj for some changes to take effect?

for example in a browse I had two columns which were Edit in Place
Although I deleted the checkbox tick for edit in place and recompiled, the fields were still EIP active,
and the changes did not take effect until the deletion of the CLW and OBJ and a  recompile.
I have the same issue when changing column  header names, and button renaming

Thanks
Richard
C 11.1.13855EE
NT 14.20


5
Thank you Jane- Works Perfectly

I left the code in the ServerSide Code in  a Button, but removed the report name from Onclick
Then I created a second button  "write Report" and included the Reportname in OnClick
Ran them both
Report has the Count !!!
Cheers
Richard

6
Hi
I have a report where I am totalling the number of records being displayed  using loc:Count+=1
A stop statement  into the Serverside code  returns a total number correctly both as loc:Count and as p_web.GSV('loc:Count')

My problem is getting the count value to display in the Header of the report.

Ive tried in WindowManager OpenReport Procedure after Parent Call SetTarget(report)
and in PrimeReportOptions when run in web mode...

loctotal     = p_web.GSV('loc:Count')
where loc:Total is a long N_4

But both return 0 in the report
What do I need to do , please?
Thanks
Richard
NT 14.20


7
Hi Bruce,
 the problem of freezing applied to On the browse line buttons
Simply removed them and just using the below browse change delete buttons which will hide with security applied.
Thanks
Richard

8
Web Server - Ask For Help / Re: Login window not centered
« on: March 29, 2024, 11:10:52 AM »
Two Screen shots Jeff

9
Web Server - Ask For Help / Re: Login window not centered
« on: March 28, 2024, 07:45:23 PM »
thanks
In the login Tab properties
All fields from Labels to Suppress are set as Default
is that correct?
I attach my Custom CSS in case.......

Cheers
Richard

10
Web Server - Ask For Help / Re: Login window not centered
« on: March 28, 2024, 07:26:22 PM »
Yes I do thanks....

11
Web Server - Ask For Help / Re: Login window not centered
« on: March 28, 2024, 01:26:48 PM »
Thanks Jeff,
No Joy with Control F5
I have replaced in the Form Div  ' nt-fix-center nt-width-300px'
 with
' nt-fix-center login-form-width'

and added my custom Css file into ThisWebServer Settings ->Styles ->Files as
'rji-custom.css'-Browser:All
Ran Gzipall

For completeness ,this is my custom CSS
.login-form-width{
   width: 300px; !important;
   line-height: 1.0em;
   margin: 0 auto;
}

On Running the login form spans the page as per attachment.....
Cheers
Richard

12
Web Server - Ask For Help / Freezing when applying security to buttons
« on: March 28, 2024, 01:23:10 AM »
Using NT 14.20
I want to hide the <delete> and <change>  buttons on Forms and Browses by User security level.
On  the Security Tab of the button , Im changing "default" to YES and adding 100 as the security level,
compile and run...
On the Browse for example scrolling by using "next" the Browse freezes and greys out.
Returning to "default" restores normal function.

Can you check this please Bruce?
Cheers
Richard

13
Web Server - Ask For Help / Re: Login window not centered
« on: March 21, 2024, 09:44:09 PM »
Hi
I anticipated that NT 14.20 might correct the centering issue but no, it appears not
So I followed the post by Jeff King and done this-

I have added to my rji-custom.css
.login-form-width{
   width: 300px;
   line-height: 1.0em;
   margin: 0 auto; !Important
}

Added my custom.css into This WebServer Settings Styles Files
into CSS Style Files
'rji-custom.css'-Browser: All

and ran Gzipall for good measure
I have in the Login FormAction CSSClasses

Form Div ' nt-fix-center nt-width-300px'   - the default
and in the Outer Div ' login-form-width'

No Change  - still left justified.
reverted to  ' nt-fix-center login-form-width'
From  ' nt-fix-center nt-width-300px'

no change in centering but with ' nt-fix-center login-form-width' the form spanned the entire page
 
Where to from here please?
Thanks
Richard

14
Thanks Rene,

Yes I didnt bother to include the detail of the LOOP , just wanted to impart the st, code used.
Thanks for replying
 Richard

15
I have a report of Product names
Using st.StartsWith Im trying to exclude from the report those names starting with a value set in a local variable(loc:Value) on the report window
So the local variable is Office
and the Product Name Im wanting to exclude is OfficeSupplies
The Code I am using does not allow me to apply the search to PRO:Name
I have included in the Server Side code
            Set(Product)
            loop
            st.SetValue(p_web.GSV(' loc:value'))
            IF  st.StartsWith(p_web.GSV('loc:value')) = True THEN CYCLE END

How to please?
Thanks
Richard
NT14.19


Pages: [1] 2 3 ... 26