Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: navrsalemile
  • Content: Threads
  • Order by date
  1. navrsalemile

    Action not recognized when action set using javascript!?

    Javascript: function chgAction( action_name ) { if( action_name=="aaa" ) { document.forms[0].action = "/AAA"; } else if( action_name=="bbb" ) { document.forms[0].action = "/BBB"; } else if( action_name=="ccc" ) {...
  2. navrsalemile

    how to change form action value dynamically?

    hi, I have <html:form method="post" action="javascript:setAction();"> but it doesn't work. setAction() examine 3 radio buttons and is supposed to set action based on the value of the set radio button. What is the correct syntax? thanks,
  3. navrsalemile

    how to efficiently create string representation of multiple checkboxes

    Hi all, I have 10 strings representing checkboxes (states) from GUI like: String str1; ... String str10; I want to construct one string that represents selection of states out of these in such a way that if particular string is null or not "" then it should be concatenated into that string...
  4. navrsalemile

    how to populate from DynaValidatorForm using &lt;html:options&gt;?

    Hi all, I have following mockup JSP: ... <td colspan="2" height="28"> <font size="2"> <html:select property="sj"> <html:option value="allj">aaa,1,str1</html:option> </html:select> </font> </td> ... Struts action will...
  5. navrsalemile

    How to assign to String[] from StringBuffer in a loop?

    Hi all, public class Test { public String[] getSJ() { String[] jg; String[] jig; String[] result; StringBuffer buf = new StringBuffer(); int i; int j; int k = -1; jg = {"g1", "g2"}; for( i=0; i < jg.length; i++ )...
  6. navrsalemile

    Changing object layering not working?

    Help instructions: In the Paper layout view verify Confine mode is off (verified) Click the object you want to move (here when I click on the field outer frame is selected only) Choose one of the following items: Bring to front to move object in front of all other objects Send to back to...
  7. navrsalemile

    how to select a field under repeating frame?

    I am trying to select a field under a repeating frame in paper Layout by clicking on it, but every time only outer frame is selected. I tried Bring to Front etc. but no success. I selected it in Navigator but in Layout it is not selected!? I am able to select it in Paper Design but when I go...
  8. navrsalemile

    how to add field to repeating group in Reports 9i??

    Hi, I changed SQL query by adding additional database column in select list. I selected parent frame in report layout and created a new field for this new database column. The field was added with no problem, but in Navigator it was placed under Margin, not under Repeating Group which I...
  9. navrsalemile

    report in ASCII how?

    Hi all, I want to produce 9i report listing in ASCII but whatever I try no success. I tried both with builder and command line. What is the exact syntax to produce report as text with only one header and the rest being data? Also, how can I send this report listing to mail destination as...
  10. navrsalemile

    three boolean variables convert into string

    Hi all, I have three boolean variables: boolean flag1; boolean flag2; boolean flag3; I want to represent them as octal number and convert this octal number into integer represented as String, i.e. if flags are: flag1 is true flag2 is false flag3 is true then String should be "5" which is...
  11. navrsalemile

    boolean to char[] to String to integer, how?

    Hi all, I have three boolean variables: boolean flag1; boolean flag2; boolean flag3; I want to represent them as octal number and convert this octal number into integer represented as String, i.e. if flags are: flag1 is true flag2 is false flag3 is true then String should be "5" which is...
  12. navrsalemile

    Is this at all possible in Javascript?

    I have following Javascript function: function onRGLink(rGCode) { frmRG.com.abc.xyz.rGCode.value = rGCode; frmRG.submit(); } I do not know how to delimit parameter com.abc.xyz.rGCode inside the statement frmRG.com.abc.xyz.rGCode.value = rGCode; I tried both...
  13. navrsalemile

    Mistery dissapearance of a session

    I have a class which sets session parameters using session.putValue( "param1", "value1"); session.putValue("param2", "value2"); and then redirects to a JSP page: response.sendRedirect( "http://localhost:8889/app/somepage.jsp") somepage.jsp retrieves session params using this scriptlet: <%...
  14. navrsalemile

    Mistery dissapearance of a session!?

    I have a class which sets session parameters using session.putValue( "param1", "value1"); session.putValue("param2", "value2"); and then redirects to a JSP page: response.sendRedirect( "http://localhost:8889/app/somepage.jsp") somepage.jsp retrieves session params using this scriptlet: <%...
  15. navrsalemile

    Two web appl. jdev projects in one workspace, how?

    First web app. JDev project has context root /app1, and second one /app2. Which JDev files should be configured and how in order to enable dependency between these two web applications and test them together? e.g. app1 provides login page and after successful login it provides link...
  16. navrsalemile

    how to update list of tables using native dynamic sql?

    Hi all, Given is the list of tables that need to be updated. I try to use this syntax (and many others) but got errors: declare sql_string1 varchar2(2000); sql_string2 varchar2(2000); tab varchar2(50); begin sql_string1 := 'update '; sql_string2 := 'set...
  17. navrsalemile

    REP-1317 and REP-1213

    Hi all, I tried to add a field to existing report. I got error REP-1213 "Field F_1 references column HISTORY at a frequency below its group." When I tried to add bolierplate text I got error REP-1317 " Boilerplate B_4 references field with source HISTORY at wrong frequency". Help gives...
  18. navrsalemile

    sys_connect_by_path() not recognized by Reports 9i!?

    I created a object level program unit which opens a cursor with SQL query that contains SYS_CONNECT_BY_PATH FUNCTION(...,...). I get error: 'Identifier CONNECT_BY_PATH must be declared). In SQL*Plus query works no problem?
  19. navrsalemile

    how do i flip query result?

    Hi, I wonder if anybody can help me with this. I have a query which returns single column: cntr ===== 55555 44444 ... The numbers can be different depending on the WHERE condition, but the number of rows can be limited to 10. No I would like this result to be shown as: cntrs...
  20. navrsalemile

    How do I flip a query result onto its side?

    Hi, I wonder if anybody can help me with this. I have a query which returns single column: cntr ===== 55555 44444 ... The numbers can be different depending on the WHERE condition, but the number of rows can be limited to 10. No I would like this result to be shown as: cntrs...

Part and Inventory Search

Back
Top