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.
106
Web Server - Ask For Help / Concepts on hiding and unhiding objects/fields on forms
« on: August 01, 2010, 04:10:31 PM »
HI All,
Trying to understand the concepts of hiding / unhiding fields and objects - drop lists and Option boxes.
On Update form - some records allow an entry to be picked from an option box or a drop list and some do not. How do it hide / unhide option boxes and drop lists depending on the record being updated?
THanks,
Ron Jolda
Trying to understand the concepts of hiding / unhiding fields and objects - drop lists and Option boxes.
On Update form - some records allow an entry to be picked from an option box or a drop list and some do not. How do it hide / unhide option boxes and drop lists depending on the record being updated?
THanks,
Ron Jolda
107
Web Server - Ask For Help / Changing options in Option box in a form
« on: July 28, 2010, 04:58:20 PM »
Hi
I want to change the options ( usually 3 choices) in a box on a form when a record is selected for update -depending on the desired allowed choices for that record.
Option Items Text can change :
e.g. for option choices 1, 2 and 3
First Variation: 1. Comment, 2. Yes , 3. No
Another variation: 1. Comment, 2. Positive, 3. Negative
Another Variation: 1. Comment, 2. Negative, 3. Positive
Thanks,
Ron Jolda
I want to change the options ( usually 3 choices) in a box on a form when a record is selected for update -depending on the desired allowed choices for that record.
Option Items Text can change :
e.g. for option choices 1, 2 and 3
First Variation: 1. Comment, 2. Yes , 3. No
Another variation: 1. Comment, 2. Positive, 3. Negative
Another Variation: 1. Comment, 2. Negative, 3. Positive
Thanks,
Ron Jolda
108
Web Server - Ask For Help / conditionally coloring cells in a browse
« on: July 23, 2010, 11:39:42 AM »
Hi,
Trying to get my hands around the CSS and HTML and cell coloring.
I am trying to set the background to yellow on column one ( name ) if column 3 is > 0.
I defined some classes for column one and column 3 and I read the record before it is put into the browse and I set the class name for column1 and column3 depending on the value of column3.
e.g. If col3 > 0, col1 class name = 'c1Y'
If col3 = 0, then col1 class name = 'c1N'
I created a style sheet and added it to my NetWebServer styles and it is being used as I am setting other properties and this new style sheet is being used.
I created some new classes: .c1Y and c1N to set the background color for column1.
In Firebug, I see the class names assigned for the cells - i.e. c1Y or c1N but I don't see my classes .c1Y or c1N being loaded from the CSS style file for these.
Can anyone share their tricks for coloring different cells depending on a value of another field in the same line of the browse?
Are folks using "in line " HTML style to color cells?
Thanks,
Ron Jolda
Trying to get my hands around the CSS and HTML and cell coloring.
I am trying to set the background to yellow on column one ( name ) if column 3 is > 0.
I defined some classes for column one and column 3 and I read the record before it is put into the browse and I set the class name for column1 and column3 depending on the value of column3.
e.g. If col3 > 0, col1 class name = 'c1Y'
If col3 = 0, then col1 class name = 'c1N'
I created a style sheet and added it to my NetWebServer styles and it is being used as I am setting other properties and this new style sheet is being used.
I created some new classes: .c1Y and c1N to set the background color for column1.
In Firebug, I see the class names assigned for the cells - i.e. c1Y or c1N but I don't see my classes .c1Y or c1N being loaded from the CSS style file for these.
Can anyone share their tricks for coloring different cells depending on a value of another field in the same line of the browse?
Are folks using "in line " HTML style to color cells?
Thanks,
Ron Jolda
109
Web Server - Ask For Help / Browse line item Classes and Identifiers for Selectors
« on: June 29, 2010, 11:35:20 AM »
Hi,
How / where do we put in class names and or Identifiers in each line of the browse so that the css class or identifer selector will be able to see it and color it appropriately for each COLUMN???
Thanks,
Ron Jolda
How / where do we put in class names and or Identifiers in each line of the browse so that the css class or identifer selector will be able to see it and color it appropriately for each COLUMN???
Thanks,
Ron Jolda
110
Web Server - Ask For Help / Coloring fields in Browse based on value in record?
« on: June 07, 2010, 12:37:30 PM »
Hi,
What is the technique to color a field in a browse based on a field value.
i.e. if Yes - color field1 Green. If NO, color field 1 Red.
Is this getting into the CSS?
If it is, then what do I need to modify in the CSS and how do I call it for that browse field?
Thanks,
Ron Jolda
What is the technique to color a field in a browse based on a field value.
i.e. if Yes - color field1 Green. If NO, color field 1 Red.
Is this getting into the CSS?
If it is, then what do I need to modify in the CSS and how do I call it for that browse field?
Thanks,
Ron Jolda
111
Web Server - Ask For Help / Net:message and Net:popups
« on: June 05, 2010, 05:22:01 AM »
Hi,
I see these routines in the help but not sure how to use them. Are these used in any of the examples . If not, how are they used?
<!--Net:message-->
<!--Net:popup-->
Thanks,
Ron Jolda
I see these routines in the help but not sure how to use them. Are these used in any of the examples . If not, how are they used?
<!--Net:message-->
<!--Net:popup-->
Thanks,
Ron Jolda
112
Web Server - Ask For Help / Open message window.
« on: June 04, 2010, 12:12:38 PM »
Hi All,
I have a process ( in a browse) that takes about 5 - 10 seconds. I want to open a new window with a message that says" Build is completed" and a button to click OK to close this window.
I have tried various permutations but have not been able to achieve this.
What is the easiest and cleanest way to do this??
Thanks,
Ron Jolda
I have a process ( in a browse) that takes about 5 - 10 seconds. I want to open a new window with a message that says" Build is completed" and a button to click OK to close this window.
I have tried various permutations but have not been able to achieve this.
What is the easiest and cleanest way to do this??
Thanks,
Ron Jolda
113
Web Server - Ask For Help / setting up filter
« on: May 31, 2010, 04:17:25 PM »
Hi All,
Trying to set up a filter - three conditions:
1. JPS:Sdate > today() - 30
AND
2a. Prv:ihid =' &p_web.GSV('_providerID')
OR
2b Prv:alt_ihid =' &p_web.GSV('_altproviderID')
Have it set up as :
'JPS:Sdate > today() - 30 and ( & Prv:ihid =' &p_web.GSV('_providerID') & 'OR Prv:alt_ihid =' &p_web.GSV('_altproviderID') & ')'
Compiles OK but DOES NOT WORK!
Suggestions please!!!!!
Thanks,
Ron Jolda
Trying to set up a filter - three conditions:
1. JPS:Sdate > today() - 30
AND
2a. Prv:ihid =' &p_web.GSV('_providerID')
OR
2b Prv:alt_ihid =' &p_web.GSV('_altproviderID')
Have it set up as :
'JPS:Sdate > today() - 30 and ( & Prv:ihid =' &p_web.GSV('_providerID') & 'OR Prv:alt_ihid =' &p_web.GSV('_altproviderID') & ')'
Compiles OK but DOES NOT WORK!
Suggestions please!!!!!
Thanks,
Ron Jolda
114
Web Server - Ask For Help / open and display an HTML document from Menu item
« on: May 20, 2010, 01:14:37 PM »
Hi
I wrote an HTML help file for my app.
I put a menu item on the Main Menu called "help"
I want to open the HTML help file when they click on this menu item.
For the Menu item I put the title of the page 'WPSClinicHelp.html' in the URL for the menu item.
I put '_self' in the window.
I have my help file in the same directory as my app and the directory below.
IE tells me that it cannot find the document when I click on HELP.
Am I doing it correctly or is there a better way to display this HELP file.
Thanks,
Ron Jolda
I wrote an HTML help file for my app.
I put a menu item on the Main Menu called "help"
I want to open the HTML help file when they click on this menu item.
For the Menu item I put the title of the page 'WPSClinicHelp.html' in the URL for the menu item.
I put '_self' in the window.
I have my help file in the same directory as my app and the directory below.
IE tells me that it cannot find the document when I click on HELP.
Am I doing it correctly or is there a better way to display this HELP file.
Thanks,
Ron Jolda
115
Web Server - Ask For Help / Sending file after it is created
« on: May 11, 2010, 04:07:55 AM »
Hi ,
I am calling a procedure to build a large PDF file and returning the name of the file that was created.
If it was created successfully I want it to download to the client.
What are the steps to automagically send the built file to the client?
Thanks,
Ron Jolda
I am calling a procedure to build a large PDF file and returning the name of the file that was created.
If it was created successfully I want it to download to the client.
What are the steps to automagically send the built file to the client?
Thanks,
Ron Jolda
116
Web Server - Ask For Help / getting unique record ID on Insert and Change on FORM
« on: May 07, 2010, 02:15:21 PM »
Hi,
I am trying to get the Unique Record ID for the record that is AutoPrimed on Insert and for the record when being changed.
I am using the code
tir:ihid = p_web.formatsettings.recordid BEFORE the header....
(PrimeAutoInc is clicked on as well as PrimeAutoInc even if not needed is checked).
this does NOT work at the LookupRelated Records Embed - there is no value yet.
I see that the RecordID is passed to the form
Questions:
1. Is this the correct way to do it? ( it seems like it may not get the recordID for the current form if there are several forms open...)
2. Is there another way to get it BEFORE the LookupRelatedRecords embed?
Thanks,
Ron Jolda
I am trying to get the Unique Record ID for the record that is AutoPrimed on Insert and for the record when being changed.
I am using the code
tir:ihid = p_web.formatsettings.recordid BEFORE the header....
(PrimeAutoInc is clicked on as well as PrimeAutoInc even if not needed is checked).
this does NOT work at the LookupRelated Records Embed - there is no value yet.
I see that the RecordID is passed to the form
Questions:
1. Is this the correct way to do it? ( it seems like it may not get the recordID for the current form if there are several forms open...)
2. Is there another way to get it BEFORE the LookupRelatedRecords embed?
Thanks,
Ron Jolda
117
Web Server - Ask For Help / session variables queue
« on: May 06, 2010, 06:17:14 PM »
Hi,
How can I view the session variables for the server and the contents of the session variable queue - i.e. all of the entries in the Session Value queue and the current values for each entry?
Thanks,
Ron Jolda
How can I view the session variables for the server and the contents of the session variable queue - i.e. all of the entries in the Session Value queue and the current values for each entry?
Thanks,
Ron Jolda
118
Web Server - Ask For Help / Browse with different forms for insert and for change
« on: May 01, 2010, 11:11:53 AM »
Hi,
Can I have a different form for inserts and for changes and deletes?
Where would I get into the code for inserts and changes to call different forms?
thanks,
Ron Jolda
Can I have a different form for inserts and for changes and deletes?
Where would I get into the code for inserts and changes to call different forms?
thanks,
Ron Jolda
119
Web Server - Ask For Help / Browse souce be a queue
« on: May 01, 2010, 06:46:38 AM »
Hi All,
Can The browse and form template use a Queue as the source instead of a file?
The Queue of data would be specific for each user.
Thanks,
Ron Jolda
Can The browse and form template use a Queue as the source instead of a file?
The Queue of data would be specific for each user.
Thanks,
Ron Jolda
120
Web Server - Ask For Help / Form / Inserts
« on: April 28, 2010, 03:39:39 PM »
Hi,
I have a parent file Update form and there are fields from a child file on the form as well. I want to handle the child file in code.
Question:
1. on Insert of a record to the Parent File - Where can I snag the Primary file Unique ID number in code and what is the server variable that holds it. I can grab it when the INSERT of the parent record is done but I need it when the form opens to be able to get the child record???
2. On Change, I need to grab the child file before the form is created - again, where in code can I grab the Primary Unique ID number and which server variable holds it?
Thanks,
Ron Jolda
I have a parent file Update form and there are fields from a child file on the form as well. I want to handle the child file in code.
Question:
1. on Insert of a record to the Parent File - Where can I snag the Primary file Unique ID number in code and what is the server variable that holds it. I can grab it when the INSERT of the parent record is done but I need it when the form opens to be able to get the child record???
2. On Change, I need to grab the child file before the form is created - again, where in code can I grab the Primary Unique ID number and which server variable holds it?
Thanks,
Ron Jolda