Hide columns in JClient in function to BC4J Entity

Hi:
I need to hide some columns dynamically in my JClient Panel in base to conditional BC4J Entity object bussiness rule.
For example if i put my pseudocode in Oracle Forms based (i don't remeber the syntaxis well): "if my Deparment.idDepartment = 1000 then....Hide the Employee.Salary".
Now, in JDeveloper, in my 'DepartmentImpl.java' put the condition, but i know, i can't write code to hide the column in runtime mode here. I need to do that in JClient.
How can i do this, passing a parameter between BC4J and JClient?
Regards
Marco H.

Shailesh:
The code not works well for me. I try to explain my requieriment:
I have a field named "Capturahoras". If "Capturahoras" is equal to "S" then, enabled mHorastrabajados, otherwise, disabled mHorastrabajados.
My "Idconepto" is my PK and when i selected another value for my PK, my field "Capturahoras" should be changed to "S" or "N" (Yes or Not).
Sorry, but i'm not an expert for JDev and some months ago i have been programming in Oracle Forms.
I put my code here but not works well:
* the JbInit method
public void jbInit() throws Exception
// Layout definition for this panel
dataPanel.setLayout(panelLayout);
dataPanel.setMinimumSize(new Dimension(100, 100));
this.setLayout(borderLayout);
// Code support form attribute: Concepto
mIdconcepto.setDocument(JUTextFieldBinding.createAttributeBinding(panelBinding, mIdconcepto, "RhMovsincidendetalleView", null, "RhMovsincidendetalleViewIter", "Idconcepto"));
mIdconcepto.setColumns(3);
mIdconcepto.addActionListener(new ActionListener()
public void actionPerformed(ActionEvent e)
mIdconcepto_actionPerformed(e);
ComboConcepto.setModel(JUComboBoxBinding.createLovBinding(panelBinding, ComboConcepto, "RhMovsincidendetalleView", null, "RhMovsincidendetalleViewIter", new String[] {"Idconcepto"}, "RhConceptoView", new String[] {"Idconcepto"}, new String[] {"Nomcorto"}, null, null));
dataPanel.add(labelIdconcepto, new GridBagConstraints(0, 0, 1, 1, 0.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(0, 0, 0, 5), 1, 1));
dataPanel.add(mIdconcepto, new GridBagConstraints(1, 0, 1, 1, 0.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(0, 0, 0, 5), 1, 1));
labelIdconcepto.setLabelFor(mIdconcepto);
mIdconcepto.setColumns(3);
mIdconcepto.setToolTipText(panelBinding.getTooltip("RhMovsincidendetalleView", "Idconcepto", null));
labelIdconcepto.setText(panelBinding.getLabel("RhMovsincidendetalleView", "Idconcepto", null));
// Code support form attribute: Secuencia
mIdsecuencia.setDocument(JUTextFieldBinding.createAttributeBinding(panelBinding, mIdsecuencia, "RhMovsincidendetalleView", null, "RhMovsincidendetalleViewIter", "Idsecuencia"));
dataPanel.add(labelIdsecuencia, new GridBagConstraints(0, 1, 1, 1, 0.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(0, 0, 0, 5), 1, 1));
dataPanel.add(mIdsecuencia, new GridBagConstraints(1, 1, 1, 1, 0.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(0, 0, 0, 5), 1, 1));
labelIdsecuencia.setLabelFor(mIdsecuencia);
mIdsecuencia.setColumns(4);
mIdsecuencia.setToolTipText(panelBinding.getTooltip("RhMovsincidendetalleView", "Idsecuencia", null));
labelIdsecuencia.setText(panelBinding.getLabel("RhMovsincidendetalleView", "Idsecuencia", null));
// Code support form attribute: Dias trabajados
mDiastrabajados.setDocument(JUTextFieldBinding.createAttributeBinding(panelBinding, mDiastrabajados, "RhMovsincidendetalleView", null, "RhMovsincidendetalleViewIter", "Diastrabajados"));
dataPanel.add(labelDiastrabajados, new GridBagConstraints(0, 2, 1, 1, 0.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(0, 0, 0, 5), 1, 1));
dataPanel.add(mDiastrabajados, new GridBagConstraints(1, 2, 1, 1, 0.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(0, 0, 0, 5), 1, 1));
labelDiastrabajados.setLabelFor(mDiastrabajados);
mDiastrabajados.setColumns(7);
mDiastrabajados.setToolTipText(panelBinding.getTooltip("RhMovsincidendetalleView", "Diastrabajados", null));
labelDiastrabajados.setText(panelBinding.getLabel("RhMovsincidendetalleView", "Diastrabajados", null));
// Code support form attribute: Horas trabajadas
mHorastrabajados.setDocument(JUTextFieldBinding.createAttributeBinding(panelBinding, mHorastrabajados, "RhMovsincidendetalleView", null, "RhMovsincidendetalleViewIter", "Horastrabajados"));
dataPanel.add(labelHorastrabajados, new GridBagConstraints(0, 3, 1, 1, 0.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(0, 0, 0, 5), 1, 1));
dataPanel.add(mHorastrabajados, new GridBagConstraints(1, 3, 1, 1, 0.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(0, 0, 0, 5), 1, 1));
labelHorastrabajados.setLabelFor(mHorastrabajados);
mHorastrabajados.setColumns(5);
mHorastrabajados.setToolTipText(panelBinding.getTooltip("RhMovsincidendetalleView", "Horastrabajados", null));
labelHorastrabajados.setText(panelBinding.getLabel("RhMovsincidendetalleView", "Horastrabajados", null));
// Code support form attribute: Importe
mImporte.setDocument(JUTextFieldBinding.createAttributeBinding(panelBinding, mImporte, "RhMovsincidendetalleView", null, "RhMovsincidendetalleViewIter", "Importe"));
dataPanel.add(labelImporte, new GridBagConstraints(0, 4, 1, 1, 0.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(0, 0, 0, 5), 1, 1));
dataPanel.add(mImporte, new GridBagConstraints(1, 4, 1, 1, 0.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(0, 0, 0, 5), 1, 1));
labelImporte.setLabelFor(mImporte);
mImporte.setColumns(11);
mImporte.setToolTipText(panelBinding.getTooltip("RhMovsincidendetalleView", "Importe", null));
labelImporte.setText(panelBinding.getLabel("RhMovsincidendetalleView", "Importe", null));
// Code support form attribute: Turno
mTurno.setDocument(JUTextFieldBinding.createAttributeBinding(panelBinding, mTurno, "RhMovsincidendetalleView", null, "RhMovsincidendetalleViewIter", "Turno"));
dataPanel.add(labelTurno, new GridBagConstraints(0, 5, 1, 1, 0.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(0, 0, 0, 5), 1, 1));
dataPanel.add(mTurno, new GridBagConstraints(1, 5, 1, 1, 0.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(0, 0, 0, 5), 1, 1));
labelTurno.setLabelFor(mTurno);
mTurno.setColumns(2);
mTurno.setToolTipText(panelBinding.getTooltip("RhMovsincidendetalleView", "Turno", null));
labelTurno.setText(panelBinding.getLabel("RhMovsincidendetalleView", "Turno", null));
// Code support form attribute: Centro de costos
mCentrocostos.setDocument(JUTextFieldBinding.createAttributeBinding(panelBinding, mCentrocostos, "RhMovsincidendetalleView", null, "RhMovsincidendetalleViewIter", "Centrocostos"));
dataPanel.add(labelCentrocostos, new GridBagConstraints(0, 6, 1, 1, 0.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(0, 0, 0, 5), 1, 1));
dataPanel.add(mCentrocostos, new GridBagConstraints(1, 6, 1, 1, 0.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(0, 0, 0, 5), 1, 1));
dataPanel.add(ComboConcepto, new GridBagConstraints(2, 0, 1, 1, 0.0, 0.0, GridBagConstraints.WEST, GridBagConstraints.NONE, new Insets(0, 0, 0, 5), 1, 1));
labelCentrocostos.setLabelFor(mCentrocostos);
mCentrocostos.setColumns(20);
mCentrocostos.setToolTipText(panelBinding.getTooltip("RhMovsincidendetalleView", "Centrocostos", null));
// Add for Marco
panelBinding.findIterBinding("RhMovsincidendetalleViewIter").getRowSetIterator().addListener(new oracle.jbo.RowSetListener()
* Invoked when the range changes.
* @param event a description of the new ranges.
public void rangeRefreshed(oracle.jbo.RangeRefreshEvent event){}
* Invoked when the range is scrolled.
* @param event a description of the new range.
public void rangeScrolled(oracle.jbo.ScrollEvent event){}
* Invoked when a row has been inserted.
* @param event a description of the new Row object.
public void rowInserted(oracle.jbo.InsertEvent event){}
* Invoked when a row has been deleted.
* @param event a description of the deleted Row object.
public void rowDeleted(oracle.jbo.DeleteEvent event){}
* Invoked when an attribute of the row has been changed.
* @param event a description of the modified Row object.
public void rowUpdated(oracle.jbo.UpdateEvent event){}
* Invoked when the current-row designation changes.
* @param event a description of the new and previous current rows.
public void navigated(oracle.jbo.NavigationEvent event)
String str = null;
oracle.jbo.Row r = event.getRow();
if (r != null)
str = (String) r.getAttribute("Capturahoras");
if (str != null && str == "S")
mHorastrabajados.setEnabled(true);
labelHorastrabajados.setEnabled(true);
else
mHorastrabajados.setEnabled(false);
labelHorastrabajados.setEnabled(false);
Thanks
Marco

Similar Messages

  • Dynamically hidding columns

    Hi together,
    I developed an VC Model which is used within Guided Procedures. Within this model there is an editable table, which should hide some columns due to the current processors role.
    This is working fine, the only Problem is the following warning is shown on in the View and in each Subview (popups / prompts): "Functionality 'Hide Columns' for bound column visibility is only available in the portal when CCM personalization is activated".
    As I'm new to VC and Guided Procedure I don't know what is meant. Is it something I or the server administrator has to configure?
    Thx in advance,
    Kai

    Hi,
    thanks for the quick answers. To bad neither solution fits for my problem.
    @Dharmi: I've got the same problem, I have 2 differnet roles, with partly different view rights to the table. And all Data Fields are "black".
    @Priya: If I change the Control to hide, neither of the two roles is able to see the datafields.
    Best Regards,
    Kai

  • Hide column in the adress if it is null and print next line in XML publishe

    Hi,
    I'm converting oracle report to XML publisher report.
    I craeted template rtf with word. everything works fine.
    Except address prints null coumns if it is null.
    I used if condition in template. something like this...
    <?if:B_ADDRESS1!=''?><?B_ADDRESS1?><?end if?>
    But I see still it prints null columns.
    Any body have idea how can i fix this?
    Thanks
    pallavi

    Hi Guys,
    I have built a template for FSG reports. Currently the FSG Reports when run in XML does pull the Display Sets definition for the report. The Display Set is used to hide certain row and Column intersections from the FSG.
    So to accomplish this I have coded each column in the template to display data or hide data for a particular row by using the code
    <?if:(position()) !=1?><?fsg:RptCell[2]?><?end if?> ------ This means, show the column for all rows except row 1.
    Now there are some places I have to hide Column 1 for row 2 and row3 and display for row 1 and row 4.
    Can anyone please tell me how I can accomplish this.
    Thanks

  • How to hide column of DataGrid

    I am making a web part in which I am using System.Web.UI.WebControls.DataGrid control.
    It's AutoGenerateColumns property is set to TRUE.
    I am trying to hide a column at run time. I have written the following code on this controls ItemCreated event but it only works if I e.Item.Cells[0] and it doesn't work for any other value for e.g. e.Item.Cells[1] and e.Item.Cells[6].
    There are 9 columns in my DataGrid control.
    Code
    protected void grd1_ItemCreated(object sender, DataGridItemEventArgs e)
    { e.Item.Cells[0].Visible = false; //works fine
    e.Item.Cells[1].Visible = false; //gives error e.Item.Cells[2].Visible = false; //gives error
    Error
    Specified argument was out of the range of valid values.
    Parameter name: index
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    How to hide a particular column?

    Hi Frank,
    You can try something similar to the below in 'RowCreated' event Instead
    protected void gridView_RowCreated(object sender, GridViewRowEventArgs e)
    e.Row.Cells[1].visible =false;
    OR I would say hiding column is not something that is to be done at row level, so you can hide columns outside any of the grid view event after binding.
    e.g.
    gridview1.columns[1].visible=false;
    I am using DataGrid control in which there is no RowCreated event.
    I have tried second approach but it also doesn't work.

  • Expression to Hide Column

    Hello everyone...I am using web application.Can anybody tell me how to hide column if data is not present in it in RDLC table using nchar type of data.I have used expression for it but its not working As column is hided but  if I insert some
    value in that column then it should display value but it is not displaying,it hides column.

    Hi Sayali,
    Is the issue same as raised in below thread? Try out the fix provided by Wendy Fu and also other expressions provided in there.
    https://social.msdn.microsoft.com/Forums/sqlserver/en-US/76bba7ad-e6a0-4b7b-b17d-885494439446/column-visibility-issue-in-ssrs2012?forum=sqlreportingservices
    -Vaibhav Chaudhari

  • Purchase order history : hide column 'Amount'

    Hi,
    On purchase order history, i want hide column 'Amount'.
    This column must be always hide.
    Have you a solution for this ???
    Regards.

    Hi,
    Check User Role , and then remove the authorization for Activity "09" or open purchase order history and then hidden the price by using layout option anf then from manage layout ,set the layout as in "Default"
    User can able to change this layout ,then restrict all users with below mentioned authorization control.
    Object to control layout for specific user as follows
    Object-'S_ALV_LAYO' and 'ACTVT' -23.
    Hope this will resolve your query.
    Regards,
    Sandesh Sawant

  • Mixed bag  1.     I have a security app on my computer, Flashbrief.  I have it checked in the hide column but whenever I turn on the computer it appears in the top menu line.  2.     Whenever I turn on the computer, a new blank document window in MS Word

    mixed bag
    1.         I have a security app on my computer, Flashbrief. I have it checked in the hide column but whenever I turn on the computerit appears in the top menu line.
    2.         Whenever Iturn on the computer, a new blank document window in MS Word 2011 appears.  I do not have this listed in the login items.
    3.         I have a current model of Apple wireless mouse. It keeps getting stuck in text or e-mails and I have to somehowotherwise move the cursor to break it free.
    Help with any of these will be appreciated.
    BF

    1.         I have a security app on my computer, Flashbrief. I have it checked in the hide column but whenever I turn on the computerit appears in the top menu line.
    I've never heard of this software, and cannot find any reference to it online, which is a bit concerning.  What is it supposed to do?  There really isn't much need for security software on a Mac.
    2.         Whenever Iturn on the computer, a new blank document window in MS Word 2011 appears.  I do not have this listed in the login items.
    In Mac OS X 10.7, any applications left open when you shut down or restart are re-opened at startup, and any documents left open in an app when you quit are re-opened when you launch them again.  The former can be controlled by unchecking the box in the restart/shutdown alert:
    You will need to do this each time you shut down or restart, it won't remember that setting.
    The latter can be deactivated by unchecking the box in System Preferences -> General:
    3.         I have a current model of Apple wireless mouse. It keeps getting stuck in text or e-mails and I have to somehowotherwise move the cursor to break it free.
    That does not sound normal, but I don't use a mouse with my MBP, so I can't provide a solution, other than to try replacing the batteries in the mouse.

  • How to hide column in BEx Analyzer

    Hi gurus
    In my report I have to show 5 columns depending on a condition.
    Is it feasible?
    Regards

    Hi,
        You can use VBA Macro to execute Code to hide the columns based on the condition.
    This is in 3.5
    Sub SAPBEXonRefresh(queryID As String, resultArea As Range)
               'Check you condition
               If <condition> Then
                       'This will hide Column 3 on Sheet1 where the Query is.
                       ThisWorkbook.Sheets("Sheet1").Columns(3).Hidden = True
               End If              
    End Sub

  • ORA-24347: Warning of a NULL column in an aggregate function

    The following query works fine, normally.
    select max(ship_date) Ship_date,msn.attribute7 from
         mtl_serial_numbers msn,
         mtl_item_categories mic,
         mtl_categories mc
                   where      msn.inventory_item_id = mic.inventory_item_id and
                   mic.category_id=mc.category_id and
                   mic.category_set_id=1 and
              mc.segment1 in ('ILMI','ILM','ILMI-UNT')
              Group by msn.attribute7
    But when I include the same query inside a SQL report it gives me the Following error message
    ORA-24347: Warning of a NULL column in an aggregate function
    Help me out.

    I tried out with some Dummy Date, it worked fine.
    But the problem I am facing here is I cannot assume
    any Date for the corresponding column. Whether there
    is any other possibility to avoid this problem without
    giving any dummy date?
    thanks,
    chandru

  • Hide column in webreports (without table interface)

    Hi,
    I want to hide columns in my webreport only(!) with the context menu. The idea is to set a statement like "remove drill down" --> <SAP_BW_UR CMD='Expand' DATA_PROVIDER='View1'IOBJNM='0COUNTRY' >
    The problem is that I don't which InfoObject is selected, because I'm changing the standard template. Is there a chance to get that information by clicking to the menu?
    Hoping sb can help.
    Barbara

    Hi,
       i can forward you the documents regarding u r requirement.
       mail me at [email protected]
    regards,
    ravi

  • Hide column based on prompt

    Hi Gurus,
    Can i hide column based on Prompt value?
    My requirement is
    I have report is showing Daily/Weekly/Monthly data based on prompt value ( Prompt selected values are Daily/Weekly/Monthly)
    If user select daily then report will display data every day. if user select Weekly then report will display Every week data ( Week start from Monday).
    I have one more columns as Day name to display day of the week for daily report. its working fine.
    but i want hide day name column when i run report for weekly.
    How can i hide column based on Prompt value. is it possible in OBIEE 10.3
    really appreciated for your help

    Here's simpler approach. Use column selectors.
    1) The first column in your column selector will be where you put your Daily/Weekly/Monthly choices.
    2) In the second column, put your Day column. Add another column, doesn't matter what. I'll explain later. In the caption for this column, put in something like "Select to Hide Day column."
    3) Click "OK" and put your column selector in your Compound Layout.
    4) Now, select the other column in place of the Day column.
    5) Now go to the criteria tab. The "second choice" column should now be there in place of the original first column. Dummy out this column and click on the "Hide" checkbox in the column properties. Change the name to "No column."
    6) Now go back to Results. The user now has two choices for the Day column, either the original column (the Day column) or the "No column" choice. When the "No column" choice is selected, the column disappears from the report. Users can make the selection whenever they choose Weekly as their choice.

  • Hide column in Excel output?

    I have a .cfm file generating Excel output using CFContent.
    The client want to have certain data in a hidden column.
    I am already using XML to freeze the header and I tried
    hiding the column by using a <LeftColumnVisible> tag within
    the WorkSheetOptions (which is what Excel generates when you hide a
    column). But it doesn't come through in the CF output.
    Any suggestions?
    Ken

    Thanks. But "Exclude XML output" does not work dynamically. It cannot be set to "No" or "Yes" programmetically.
    What I would like is to provide my user a parameter "Show Column X? (Yes/No)". Based on user's choice, the Excel output should display or hide column X.
    Thanks for the response!

  • How to I hide column heading completely ?

    There is a similar post on 10g - How to I hide column heading completely ?
    The solution is - To achieve this, go to Edit Table View, open Table View Properties. Here you should see an option called 'Display table and column Headings'. Here set its value to 'No column or table headings'.
    I'm on 11.1.1.5 and when I go to Edit Table view -> Table View properties -> Display Folder & Column Headings , I see four values as below but there is no value 'No column or table headings'. The values are -
    -Only column headings
    -As separate rows
    -As Folder.column
    -As Folder.column (where needed)
    Is this 'No column or table headings' value no more available in 11.1.1.5 ? Is there any alternative method to achieve this?
    I'm able to hide the column header using various ways e.g. setting Display Heading option, but when I download the results it has either the header present or an empty row. In 10g the option 'No column or table headings' removed the header completely from the download file.
    Any suggestions please?

    Anybody has any thoughts on why 'No column or table headings' option is removed from 11g or is it just 11.1.1.5?
    Is this a bug or any other feature has been provided to achieve the same?

  • How to Hide Column

    Hello,
    How can I hide columns within an AdvancedTable programmatically? Ex. All columns shall be shown if the value of my dept is "Dept1" while only Column1 to 2 shall be shown if my dept is "Dept2"? Pls advise. thanks

    As Kumar rightly pointed out, you need to refer the Dev guide for this. Refer the section on Partial Page Rendering.
    To summarize you would have the Rendered Property on the columns like this
    ${oa.<VoName>.<VOAttributeName>}
    Based on the conditions you would set the attribute value(which is boolean) to true or false and accordingly either the column with show or hide. The VOName is the name of the Partial View Object you create for the purpose. Do let us know if you have difficulty in understanding PPR.
    Regards
    Sumit

  • EVDRE Column expansion: Auto hide column following expansion

    Hello All
    I have an EVDRE expansion question please. If i set my column to expand on BAS members of Entity,  and i have say 10 entities that are a part of my selected parent entity, i notice that the 11th column auto hides in excel. I assume this is caused by the fact that the page key range definition requires the colkeyrange to include a minimum of two columns.
    Does any one know how to stop this? Perhaps as one of the OptionsRange?
    The context of my question is that i have 4 EVDRE's in my sheet - if one of them results in a column being hidden, it hides results from the EVDRE results that appears below it.
    Naturally, the same applies to a Row expansion.
    Thanks for any assistance
    Glen

    Hi Glen,
    I cannot decipher the way your template looks like. As far as I understand your statement, you have a "DYANMIC" expansion in column in which you use BAS as your flag for column member set.
    This is how it works, if you're using flags (e.g. BAS, SELF, DEP) as your member set. It highly depends on your current view. Meaning, if the member in your current view has only 1 BAS level member, then the column next to it will automatically hide. Therefore, the case where you are in is not usual in BPC wherein the current view on that dimension has 10 BAS level members and the column next to it automatically hides.
    Possible cause/reason, I suppose is that you are using "HIDECOLKEYS" in your option range tagged as "Y" in your 2nd or 3rd or 4th EvDRE which is PROBABLY LOCATED under the ranges of EvDRE where you have 10 BAS level members.
    I hope my statements are easily comprehendable.
    Thanks! Hope this helps... _
    I'm sorry I forgot to highlight this: 
    Does any one know how to stop this? Perhaps as one of the OptionsRange?
    The context of my question is that i have 4 EVDRE's in my sheet - if one of them results in a column being hidden, it hides results from the EVDRE results that appears below it.
    Naturally, the same applies to a Row expansion.
    Thanks for any assistance
    Glen
    So what I want to suggest is that check all your column and row ranges if it overlaps each other in each EvDRE. It would be best to relocate other EvDREs OR remove the "Y" tags on your option range at "hidecolkeys" and/or "hiderowkeys" and just group the IDs manually through MS EXCEL.
    Thanks!
    Edited by: hitachi88 on Nov 3, 2010 4:41 PM

Maybe you are looking for

  • How do I split pages in a journal in iPhoto on the iPad?

    How do I split pages in a journal in iPhoto on the iPad?

  • DDL Generation not working

    Hi all, for some strange reason the DDL generation has stopped working. See below. The physical model is definitely selected and also all the objects in it. Any suggestions? Thanks and regards, Garry -- Generated by Oracle SQL Developer Data Modeler

  • Nokia 5320 - Gallery stuck on "Opening"

    Since yesterday the phone keeps getting stuck on "Opening" when I get in any of the galleries (Photos, Videos, Animations, etc.), and when I try to access any of the multimedia content via /Config/General/Personalization, and stuff like that. The onl

  • Regular Express in String.replaceFirst(..)

    I have the following string... "this ? is what ?." I am trying to replace the ? with an element. What is a regualr expression that would allow me to replace the just first ? with an item. I tried "?" but it say dangling reference... Ideas? The ?'s wi

  • Any eMail Signature software for Mac?

    Hello guys, I would like to customize my Yahoo eMail signature (not MacMail, just regular Yahoo mail), to add clickable social media icons, etc. There is a great software called WiseStamp, which allows to create very fancy signatures. But it does not